Skip to content

Commit

Permalink
Add default_path instead of uri from branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Wierciak committed Oct 19, 2022
1 parent b38edf5 commit 13bc38d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions darts/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ def _to_multi_series(self, series: pd.DataFrame) -> List[TimeSeries]:
class ILINetDataset(DatasetLoaderCSV):
"""
ILI describes the ratio of patients seen with influenzalike illness and the number of patients. It includes
weekly data from the Centers for Disease Control and Prevention of the United States from 2002 to 2022
weekly data from the Centers for Disease Control and Prevention of the United States from 1997 to 2022
Field Descriptions:
DATE: The recorded date
Expand All @@ -680,7 +680,7 @@ def __init__(self):
super().__init__(
metadata=DatasetLoaderMetadata(
"ILINet.csv",
uri="https://raw.githubusercontent.com/unit8co/darts/Improvement/Add_new_datasets_617/datasets/ILINet.csv",
uri=_DEFAULT_PATH + "/ILINet.csv",
hash="c9cbd6cc0a92b21cd95bec2706212d8d",
header_time="DATE",
format_time="%Y-%m-%d",
Expand Down

0 comments on commit 13bc38d

Please sign in to comment.