mrizalf7 commited on
Commit
a9b7b87
1 Parent(s): e212343

Training in progress, epoch 1

Browse files
Files changed (28) hide show
  1. .gitattributes +1 -0
  2. .gitignore +1 -0
  3. config.json +28 -0
  4. pytorch_model.bin +3 -0
  5. runs/Jun07_16-04-03_5d30dd55bd73/1686153883.1123028/events.out.tfevents.1686153883.5d30dd55bd73.268.1 +3 -0
  6. runs/Jun07_16-04-03_5d30dd55bd73/events.out.tfevents.1686153883.5d30dd55bd73.268.0 +3 -0
  7. runs/Jun07_16-04-57_5d30dd55bd73/1686153911.5581396/events.out.tfevents.1686153911.5d30dd55bd73.268.3 +3 -0
  8. runs/Jun07_16-04-57_5d30dd55bd73/1686153913.942542/events.out.tfevents.1686153913.5d30dd55bd73.268.4 +3 -0
  9. runs/Jun07_16-04-57_5d30dd55bd73/1686153915.8642085/events.out.tfevents.1686153915.5d30dd55bd73.268.5 +3 -0
  10. runs/Jun07_16-04-57_5d30dd55bd73/1686153917.2200754/events.out.tfevents.1686153917.5d30dd55bd73.268.6 +3 -0
  11. runs/Jun07_16-04-57_5d30dd55bd73/1686153918.7679458/events.out.tfevents.1686153918.5d30dd55bd73.268.7 +3 -0
  12. runs/Jun07_16-04-57_5d30dd55bd73/events.out.tfevents.1686153911.5d30dd55bd73.268.2 +3 -0
  13. runs/Jun07_16-05-27_5d30dd55bd73/1686153936.2403226/events.out.tfevents.1686153936.5d30dd55bd73.268.9 +3 -0
  14. runs/Jun07_16-05-27_5d30dd55bd73/1686153937.9618936/events.out.tfevents.1686153937.5d30dd55bd73.268.10 +3 -0
  15. runs/Jun07_16-05-27_5d30dd55bd73/1686153939.9406836/events.out.tfevents.1686153939.5d30dd55bd73.268.11 +3 -0
  16. runs/Jun07_16-05-27_5d30dd55bd73/1686153941.203799/events.out.tfevents.1686153941.5d30dd55bd73.268.12 +3 -0
  17. runs/Jun07_16-05-27_5d30dd55bd73/1686153942.4680247/events.out.tfevents.1686153942.5d30dd55bd73.268.13 +3 -0
  18. runs/Jun07_16-05-27_5d30dd55bd73/1686153944.034656/events.out.tfevents.1686153944.5d30dd55bd73.268.14 +3 -0
  19. runs/Jun07_16-05-27_5d30dd55bd73/1686153945.333183/events.out.tfevents.1686153945.5d30dd55bd73.268.15 +3 -0
  20. runs/Jun07_16-05-27_5d30dd55bd73/1686153957.4727871/events.out.tfevents.1686153957.5d30dd55bd73.268.16 +3 -0
  21. runs/Jun07_16-05-27_5d30dd55bd73/events.out.tfevents.1686153936.5d30dd55bd73.268.8 +3 -0
  22. runs/Jun07_16-05-52_5d30dd55bd73/1686153962.3754735/events.out.tfevents.1686153962.5d30dd55bd73.268.18 +3 -0
  23. runs/Jun07_16-05-52_5d30dd55bd73/1686153965.1685085/events.out.tfevents.1686153965.5d30dd55bd73.268.19 +3 -0
  24. runs/Jun07_16-05-52_5d30dd55bd73/events.out.tfevents.1686153962.5d30dd55bd73.268.17 +3 -0
  25. special_tokens_map.json +15 -0
  26. tokenizer.json +3 -0
  27. tokenizer_config.json +19 -0
  28. training_args.bin +3 -0
.gitattributes CHANGED
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
35
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "xlm-roberta-base",
3
+ "architectures": [
4
+ "XLMRobertaForQuestionAnswering"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 3072,
15
+ "layer_norm_eps": 1e-05,
16
+ "max_position_embeddings": 514,
17
+ "model_type": "xlm-roberta",
18
+ "num_attention_heads": 12,
19
+ "num_hidden_layers": 12,
20
+ "output_past": true,
21
+ "pad_token_id": 1,
22
+ "position_embedding_type": "absolute",
23
+ "torch_dtype": "float32",
24
+ "transformers_version": "4.28.0",
25
+ "type_vocab_size": 1,
26
+ "use_cache": true,
27
+ "vocab_size": 250002
28
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c6360506c417a6cfcd2ddf60cc02fbd4d5dee8c43ad99c9f5c145035668798e
3
+ size 1109891117
runs/Jun07_16-04-03_5d30dd55bd73/1686153883.1123028/events.out.tfevents.1686153883.5d30dd55bd73.268.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1c6e35892f5e1acbf0f0c2ed7205707a414fbea8a3ed1b7078ac23b8c07b75b
3
+ size 5979
runs/Jun07_16-04-03_5d30dd55bd73/events.out.tfevents.1686153883.5d30dd55bd73.268.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7d7f54cd3c2b341c9952f5c964a24941de85387e9fa2feebd5090b83659b4de
3
+ size 4136
runs/Jun07_16-04-57_5d30dd55bd73/1686153911.5581396/events.out.tfevents.1686153911.5d30dd55bd73.268.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19cffa16061dd4dabb096f820213975b8d12beeb0886b707ee61313b221667a3
3
+ size 5979
runs/Jun07_16-04-57_5d30dd55bd73/1686153913.942542/events.out.tfevents.1686153913.5d30dd55bd73.268.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28d5fb3c5de3e7ad42c827df6bccc661fc8c50e4fc66db2f6854865ae3d28587
3
+ size 5979
runs/Jun07_16-04-57_5d30dd55bd73/1686153915.8642085/events.out.tfevents.1686153915.5d30dd55bd73.268.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d030d5e58e63951b20e131985c8ea311b87cf78427153aff47aa8f087e3d8382
3
+ size 5979
runs/Jun07_16-04-57_5d30dd55bd73/1686153917.2200754/events.out.tfevents.1686153917.5d30dd55bd73.268.6 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2cdd533eb4af605cfcade7ee474a9fdcd5f44d39b13e76457bff13b7d5425fa
3
+ size 5979
runs/Jun07_16-04-57_5d30dd55bd73/1686153918.7679458/events.out.tfevents.1686153918.5d30dd55bd73.268.7 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f419032f88be548333494fdc8a65c499b72cc73933f174a7cff951d57e6b62a9
3
+ size 5979
runs/Jun07_16-04-57_5d30dd55bd73/events.out.tfevents.1686153911.5d30dd55bd73.268.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be882d268acecdb4199bede7a6bea5e7cc7aaf2b9b9e043d68a44a8634e123ee
3
+ size 20328
runs/Jun07_16-05-27_5d30dd55bd73/1686153936.2403226/events.out.tfevents.1686153936.5d30dd55bd73.268.9 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:139877f2442c74888a316806ad9508fd6e6131ca3f01f7b1f07b029066d86c53
3
+ size 5979
runs/Jun07_16-05-27_5d30dd55bd73/1686153937.9618936/events.out.tfevents.1686153937.5d30dd55bd73.268.10 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3c5d786e22d208b95481ae65a4ecdf4e5795a13458deb4dff69ed1dddef4b76
3
+ size 5979
runs/Jun07_16-05-27_5d30dd55bd73/1686153939.9406836/events.out.tfevents.1686153939.5d30dd55bd73.268.11 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:705c4cc12feb97d075b4b7f0b86b569cfefac6358b424082de78cf88b193a646
3
+ size 5979
runs/Jun07_16-05-27_5d30dd55bd73/1686153941.203799/events.out.tfevents.1686153941.5d30dd55bd73.268.12 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:661e1cc935763b709e60abe88a1770e019b8dc9d90610c9da95114964b76a14c
3
+ size 5979
runs/Jun07_16-05-27_5d30dd55bd73/1686153942.4680247/events.out.tfevents.1686153942.5d30dd55bd73.268.13 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b782b2df7093a17199a435d11c0e22ab314e430962a74233d686091f55920564
3
+ size 5979
runs/Jun07_16-05-27_5d30dd55bd73/1686153944.034656/events.out.tfevents.1686153944.5d30dd55bd73.268.14 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4175491b4745430bff85689334a7ca5fd28e20a14deee8dda7f4a71fd443a9b5
3
+ size 5979
runs/Jun07_16-05-27_5d30dd55bd73/1686153945.333183/events.out.tfevents.1686153945.5d30dd55bd73.268.15 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad2acd33542af4bbb567d103a329d1f12cf072fe483645fc2c3c3b868c8b47ea
3
+ size 5979
runs/Jun07_16-05-27_5d30dd55bd73/1686153957.4727871/events.out.tfevents.1686153957.5d30dd55bd73.268.16 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbb071f6ea9257d30d7d23640c24eedcefced3170753154fce9ca428642296ea
3
+ size 5979
runs/Jun07_16-05-27_5d30dd55bd73/events.out.tfevents.1686153936.5d30dd55bd73.268.8 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bb92816ce703c7b0a02be15806a6e6a0d17fcad4eed88091a0c5ee3bf2116f1
3
+ size 32480
runs/Jun07_16-05-52_5d30dd55bd73/1686153962.3754735/events.out.tfevents.1686153962.5d30dd55bd73.268.18 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dded710b0d5a6a4483f786855a5b3aed9fdf087033245fd60774e18a89a35cdb
3
+ size 5979
runs/Jun07_16-05-52_5d30dd55bd73/1686153965.1685085/events.out.tfevents.1686153965.5d30dd55bd73.268.19 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6190b7571ce8e0f153c038c3a4d11a3a5c1c6c1eb4b1bbc8260cc352b0533214
3
+ size 5979
runs/Jun07_16-05-52_5d30dd55bd73/events.out.tfevents.1686153962.5d30dd55bd73.268.17 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeec3d4dbbc2f85f23a056b8b50d69c6621e6643aa2ed90790d2741b1a9e80cb
3
+ size 9242
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "content": "<mask>",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "unk_token": "<unk>"
15
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62c24cdc13d4c9952d63718d6c9fa4c287974249e16b7ade6d5a85e7bbb75626
3
+ size 17082660
tokenizer_config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "clean_up_tokenization_spaces": true,
4
+ "cls_token": "<s>",
5
+ "eos_token": "</s>",
6
+ "mask_token": {
7
+ "__type": "AddedToken",
8
+ "content": "<mask>",
9
+ "lstrip": true,
10
+ "normalized": true,
11
+ "rstrip": false,
12
+ "single_word": false
13
+ },
14
+ "model_max_length": 512,
15
+ "pad_token": "<pad>",
16
+ "sep_token": "</s>",
17
+ "tokenizer_class": "XLMRobertaTokenizer",
18
+ "unk_token": "<unk>"
19
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3b0175bb714e0a734ecb49188aef9d583c34608b4bea24f423bf508235fe1f2
3
+ size 3643