Skip to content

Commit

Permalink
Fix start date
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanzvonkov committed Dec 17, 2024
1 parent 0731600 commit e29a62d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions data/datasets.dvc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
outs:
- md5: ebe078dafe84bf33fd0b6244a5d96976.dir
size: 750599973
nfiles: 63
- md5: 255771180339afd476bb65d11d0406e5.dir
size: 745188620
nfiles: 62
path: datasets
hash: md5
2 changes: 1 addition & 1 deletion datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ def load_labels(self) -> pd.DataFrame:
"email": join_unique,
}
)
df[START], df[END] = date(2019, 1, 1), date(2020, 12, 31)
df[START], df[END] = date(2020, 1, 1), date(2021, 12, 31)
df[SUBSET] = train_val_test_split(df.index, 0.3, 0.3)
return df

Expand Down

0 comments on commit e29a62d

Please sign in to comment.