initial commit
Browse files- args.json +74 -0
- checkpoints/checkpoint_0.pt +3 -0
- checkpoints/checkpoint_1.pt +3 -0
- checkpoints/checkpoint_2.pt +3 -0
- checkpoints/checkpoint_3.pt +3 -0
- checkpoints/checkpoint_4.pt +3 -0
- checkpoints/checkpoint_5.pt +3 -0
- checkpoints/checkpoint_6.pt +3 -0
- checkpoints/checkpoint_7.pt +3 -0
- checkpoints/checkpoint_8.pt +3 -0
- tag_vocab.pkl +3 -0
- tensorboard/Loss_test_loss/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.3 +3 -0
- tensorboard/Loss_train_loss/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.1 +3 -0
- tensorboard/Loss_val_loss/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.2 +3 -0
- tensorboard/Metrics_test_micro_f1/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.7 +3 -0
- tensorboard/Metrics_test_precision/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.8 +3 -0
- tensorboard/Metrics_test_recall/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.9 +3 -0
- tensorboard/Metrics_val_micro_f1/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.4 +3 -0
- tensorboard/Metrics_val_precision/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.5 +3 -0
- tensorboard/Metrics_val_recall/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.6 +3 -0
- tensorboard/events.out.tfevents.1678566273.clnt01-x2f14aaa794.3572669.0 +3 -0
- train.log +0 -0
args.json
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"output_path": "/var/home/mkhalilia/results/arabicner/sharedtask2023/seed1_nested_lr0.00001_clip_no",
|
3 |
+
"train_path": "/var/home/mkhalilia/data/wojood/seed1/nested/train1.txt",
|
4 |
+
"val_path": "/var/home/mkhalilia/data/wojood/seed1/nested/valid1.txt",
|
5 |
+
"test_path": "/var/home/mkhalilia/data/wojood/seed1/nested/test1.txt",
|
6 |
+
"bert_model": "aubmindlab/bert-base-arabertv2",
|
7 |
+
"gpus": [
|
8 |
+
0
|
9 |
+
],
|
10 |
+
"log_interval": 100,
|
11 |
+
"batch_size": 16,
|
12 |
+
"num_workers": 8,
|
13 |
+
"data_config": {
|
14 |
+
"fn": "arabiner.data.datasets.NestedTagsDataset",
|
15 |
+
"kwargs": {
|
16 |
+
"max_seq_len": 512
|
17 |
+
}
|
18 |
+
},
|
19 |
+
"trainer_config": {
|
20 |
+
"fn": "arabiner.trainers.BertNestedTrainer",
|
21 |
+
"kwargs": {
|
22 |
+
"max_epochs": 50
|
23 |
+
}
|
24 |
+
},
|
25 |
+
"network_config": {
|
26 |
+
"fn": "arabiner.nn.BertNestedTagger",
|
27 |
+
"kwargs": {
|
28 |
+
"dropout": 0.1,
|
29 |
+
"bert_model": "aubmindlab/bert-base-arabertv2",
|
30 |
+
"num_labels": [
|
31 |
+
4,
|
32 |
+
4,
|
33 |
+
4,
|
34 |
+
4,
|
35 |
+
4,
|
36 |
+
4,
|
37 |
+
4,
|
38 |
+
4,
|
39 |
+
4,
|
40 |
+
4,
|
41 |
+
4,
|
42 |
+
4,
|
43 |
+
4,
|
44 |
+
4,
|
45 |
+
4,
|
46 |
+
4,
|
47 |
+
4,
|
48 |
+
4,
|
49 |
+
4,
|
50 |
+
4,
|
51 |
+
4,
|
52 |
+
4
|
53 |
+
]
|
54 |
+
}
|
55 |
+
},
|
56 |
+
"optimizer": {
|
57 |
+
"fn": "torch.optim.AdamW",
|
58 |
+
"kwargs": {
|
59 |
+
"lr": 1e-05
|
60 |
+
}
|
61 |
+
},
|
62 |
+
"lr_scheduler": {
|
63 |
+
"fn": "torch.optim.lr_scheduler.ExponentialLR",
|
64 |
+
"kwargs": {
|
65 |
+
"gamma": 1
|
66 |
+
}
|
67 |
+
},
|
68 |
+
"loss": {
|
69 |
+
"fn": "torch.nn.CrossEntropyLoss",
|
70 |
+
"kwargs": {}
|
71 |
+
},
|
72 |
+
"overwrite": true,
|
73 |
+
"seed": 1
|
74 |
+
}
|
checkpoints/checkpoint_0.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:52cb934c608d8174f23f65f3bc2312d95c220a284b1b2f639a61ca64d260f907
|
3 |
+
size 1618716896
|
checkpoints/checkpoint_1.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:46ff10b86b54d57419a0fbf107b5fd6efa41b28b42709e0bdee340d7dfdca20e
|
3 |
+
size 1618716896
|
checkpoints/checkpoint_2.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d77748aaa5e44763192a26fa543a2f4c634fb47e0a3b504e7aab8c1e60ebf94
|
3 |
+
size 1618716896
|
checkpoints/checkpoint_3.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cf7853029b225ee0b8cf000487e599d5f46e8b9071dd1ef6933dc67042535682
|
3 |
+
size 1618716896
|
checkpoints/checkpoint_4.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:487c160a5ddb8045fa1e968eac6d80dd7d429bd0dfa67f5b1f318a1910405f7f
|
3 |
+
size 1618716896
|
checkpoints/checkpoint_5.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:efff129f6ddb83a724d7e209b74adca6a826c17f1975b0f20dffae3190ecfb8f
|
3 |
+
size 1618716896
|
checkpoints/checkpoint_6.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eaccc6025df731178363fdcc4f4c1744a20237349491eeac8ef9de39bd0c1534
|
3 |
+
size 1618716896
|
checkpoints/checkpoint_7.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d6d93bacdebe715affa76e48fcce2236755ac0eb47f3391f0272ce19d7ec884d
|
3 |
+
size 1618716896
|
checkpoints/checkpoint_8.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5c3a610e419b04941ef6d596f03131b019196496dc2518f6eec4c11c22d6ffd3
|
3 |
+
size 1618716896
|
tag_vocab.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bf81f5ad80dcd45c92e6e844af2eabe4c69a486c520971e494462f5cb81d66c9
|
3 |
+
size 3948
|
tensorboard/Loss_test_loss/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:486d63904b49b65c5c6da5625b4a5c5975504b64e19fd9d85205dd57cc2804f1
|
3 |
+
size 427
|
tensorboard/Loss_train_loss/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2eb3892029bf8eebf989d00769865b091d9255670e9473320997ecfe8440d4b5
|
3 |
+
size 601
|
tensorboard/Loss_val_loss/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7731f820c6a58aab87a4a3069e97237a50a660a0c9b4e1aedd707fdf5a66002d
|
3 |
+
size 601
|
tensorboard/Metrics_test_micro_f1/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d33f099c3891a33c914cc9579c61fde06f2e36831186b3cc85bf400167488cc7
|
3 |
+
size 454
|
tensorboard/Metrics_test_precision/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f5a46e5c8c5595a778e0e790427d7c78dd8996cef6f319de8f4f444251ad9f24
|
3 |
+
size 454
|
tensorboard/Metrics_test_recall/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e980eaa79ce276d5a8b36f8e8ade688e21a4402e634dd79680aa96db5037960b
|
3 |
+
size 454
|
tensorboard/Metrics_val_micro_f1/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca48439f99fcbdfde93e16a5a87f0fad32cf06457251786422b2e4335b29e93e
|
3 |
+
size 640
|
tensorboard/Metrics_val_precision/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:36ef29c2818b33aa8b0eee17b7786426dc878165ad7ee1d8da99e1835b971d51
|
3 |
+
size 640
|
tensorboard/Metrics_val_recall/events.out.tfevents.1678566895.clnt01-x2f14aaa794.3572669.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db8abc597e150c7b27910d94c42ce1d8d5eaeaaa56d7d8592ccc6f9701aa375d
|
3 |
+
size 640
|
tensorboard/events.out.tfevents.1678566273.clnt01-x2f14aaa794.3572669.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:60b219bb9ab0b349bed85d6a1e1747fc6264ce85fbbd1e7298b6e36675aab8b0
|
3 |
+
size 40
|
train.log
ADDED
The diff for this file is too large to render.
See raw diff
|
|