-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.py
More file actions
21 lines (18 loc) · 751 Bytes
/
Copy pathsettings.py
File metadata and controls
21 lines (18 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
file_names = {
'business': 'data/business.json',
'checkin': 'data/checkin.json',
'photo': 'data/photo.json',
'review': 'data/review.json',
'tip': 'data/tip.json',
'user': 'data/user.json',
'toronto_businesses': 'Toronto_data/toronto_businesses.csv',
'toronto_reviews': 'Toronto_data/toronto_reviews.csv',
'toronto_reviews_without_text': 'Toronto_data/toronto_reviews_without_text.csv',
'toronto_users': 'Toronto_data/toronto_users.csv',
'community_partition': 'Toronto_data/communities/louvain.json'
}
split_dates = {
'train': {'begin': '2000-01-01', 'end': '2017-01-05'},
'validation': {'begin': '2017-01-05', 'end': '2017-11-29'},
'test': {'begin': '2017-11-29', 'end': '2050-01-01'}
}