pypots/classification/raindrop/__init__.py
"""
The package of the partially-observed time-series classification model Raindrop.
Refer to the paper
`Xiang Zhang, Marko Zeman, Theodoros Tsiligkaridis, and Marinka Zitnik.
Graph-guided network for irregularly sampled multivariate time series.
In ICLR, 2022.
<https://openreview.net/forum?id=Kwm8I7dU-l5>`_
Notes
-----
This implementation is inspired by the official one the official implementation https://github.com/mims-harvard/Raindrop
"""
# Created by Wenjie Du <wenjay.du@gmail.com>
# License: BSD-3-Clause
from .model import Raindrop
__all__ = [
"Raindrop",
]