-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2cfe32
commit 1595274
Showing
13 changed files
with
10 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# TFTS examples | ||
|
||
[time series prediction](./run_prediction_simple.py) | ||
|
||
## kaggle datasets | ||
- [web traffic prediction]() | ||
- [ventilator]() | ||
|
||
|
||
## more time series examples | ||
- [classification]() | ||
- [anomaly detection]() | ||
- [uncertainty]() | ||
|
||
- [time series anomaly detection](./run_anomaly.py) |
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# @author: Longxing Tan, [email protected] | ||
"""Layer for :py:class:`~tfts.models.autoformer`""" | ||
|
||
import math | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# @author: Longxing Tan, [email protected] | ||
"""Layer for :py:class:`~tfts.models.wavenet`""" | ||
|
||
from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# @author: Longxing Tan, [email protected] | ||
"""Layer for :py:class:`~tfts.models.deepar`""" | ||
|
||
from typing import Any, Callable, Dict, Optional, Tuple, Type, Union | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# @author: Longxing Tan, [email protected] | ||
"""Layer for :py:class:`~tfts.models.wavenet` :py:class:`~tfts.models.transformer`""" | ||
|
||
from typing import Any, Callable, Dict, Optional, Tuple, Type, Union | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# @author: Longxing Tan, [email protected] | ||
"""Layer for :py:class:`~tfts.models.transformer`""" | ||
|
||
from typing import Any, Callable, Dict, Optional, Tuple, Type, Union | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# @author: Longxing Tan, [email protected] | ||
"""Layer for :py:class:`~tfts.models.transformer`""" | ||
|
||
from typing import Any, Callable, Dict, Optional, Tuple, Type, Union | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# @author: Longxing Tan, [email protected] | ||
"""Layer for :py:class:`~tfts.models.nbeats`""" | ||
|
||
from typing import Any, Callable, Dict, Optional, Tuple, Type, Union | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
# @author: Longxing Tan, [email protected] | ||
"""Layer for :py:class:`~tfts.models.unet`""" | ||
|
||
from typing import Any, Callable, Dict, Optional, Tuple, Type, Union | ||
|