-
-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy path__init__.py
More file actions
23 lines (17 loc) · 701 Bytes
/
Copy path__init__.py
File metadata and controls
23 lines (17 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
The package of the partially-observed time-series anomaly detection model FiLM.
Refer to the paper
`Zhou, Tian, Ziqing Ma, Qingsong Wen, Liang Sun, Tao Yao, Wotao Yin, and Rong Jin.
"FiLM: Frequency improved legendre memory model for long-term time series forecasting."
In Advances in Neural Information Processing Systems 35 (2022): 12677-12690.
<https://proceedings.neurips.cc/paper_files/paper/2022/file/524ef58c2bd075775861234266e5e020-Paper-Conference.pdf>`_
Notes
-----
This implementation is inspired by the official one https://github.com/tianzhou2011/FiLM
"""
# Created by Yiyuan Yang <yyy1997sjz@gmail.com>
# License: BSD-3-Clause
from .model import FiLM
__all__ = [
"FiLM",
]