-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.py
More file actions
23 lines (19 loc) · 707 Bytes
/
config.py
File metadata and controls
23 lines (19 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
mt5_path = "./pretrained_weight/mt5-base"
# label paths
train_label_paths = {
"CSL_News": "./data/CSL_News_Labels.json",
"CSL_Daily": "./data/CSL_Daily/labels.train"
}
dev_label_paths = {
"CSL_News": "./data/CSL_News_Labels.json",
"CSL_Daily": "./data/CSL_Daily/labels.dev"
}
test_label_paths = {
"CSL_News": "./data/CSL_News_Labels.json",
"CSL_Daily": "./data/CSL_Daily/labels.test"
}
# pose paths
pose_dirs = {
"CSL_News": './data/cslnews/pose_format',
"CSL_Daily": '/data/csldaily'
}