-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json
More file actions
23 lines (23 loc) · 887 Bytes
/
config.json
File metadata and controls
23 lines (23 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"model_name_or_path": "xlm-roberta-large",
"fp16": true,
"labels": "labels_files/ontonotes_joined_labels.txt",
"train_data_path": "/shared/celinel/LDC2013T19/conll-formatted-ontonotes-5.0/conll-formatted-ontonotes-5.0/data/train",
"dev_data_path": "/shared/celinel/LDC2013T19/conll-formatted-ontonotes-5.0/conll-formatted-ontonotes-5.0/data/development",
"test_data_path": "/shared/celinel/LDC2013T19/conll-formatted-ontonotes-5.0/conll-formatted-ontonotes-5.0/data/test",
"embedding_dropout": 0.1,
"hidden_size": 1024,
"output_dir": "xlmr-large-ontoeng-joinedlabels-cleaned",
"max_seq_length": 128,
"num_train_epochs": 1,
"per_device_train_batch_size": 32,
"save_steps": 1700,
"seed": 1,
"weight_decay": 0.01,
"learning_rate": 2e-5,
"do_train": true,
"do_eval": true,
"do_predict": true,
"overwrite_output_dir": true,
"cache_dir": "/shared/.cache/transformers"
}