balrogbob commited on
Commit
04d2671
·
verified ·
1 Parent(s): 5478452

End of training

Browse files
Files changed (25) hide show
  1. README.md +50 -0
  2. config.json +27 -0
  3. generation_config.json +7 -0
  4. merges.txt +0 -0
  5. model.safetensors +3 -0
  6. runs/Jan27_00-39-09_9d1471f48333/events.out.tfevents.1706315954.9d1471f48333.183.1 +3 -0
  7. runs/Jan27_00-53-20_9d1471f48333/events.out.tfevents.1706316802.9d1471f48333.11933.0 +3 -0
  8. runs/Jan27_00-54-14_9d1471f48333/events.out.tfevents.1706316857.9d1471f48333.11933.1 +3 -0
  9. runs/Jan27_00-54-33_9d1471f48333/events.out.tfevents.1706316878.9d1471f48333.11933.2 +3 -0
  10. runs/Jan27_00-54-52_9d1471f48333/events.out.tfevents.1706316895.9d1471f48333.11933.3 +3 -0
  11. runs/Jan27_00-55-07_9d1471f48333/events.out.tfevents.1706316909.9d1471f48333.11933.4 +3 -0
  12. runs/Jan27_00-55-26_9d1471f48333/events.out.tfevents.1706316928.9d1471f48333.11933.5 +3 -0
  13. runs/Jan27_01-08-43_9d1471f48333/events.out.tfevents.1706317728.9d1471f48333.15812.0 +3 -0
  14. runs/Jan27_01-48-18_9d1471f48333/events.out.tfevents.1706320100.9d1471f48333.23178.0 +3 -0
  15. runs/Jan27_01-48-52_9d1471f48333/events.out.tfevents.1706320137.9d1471f48333.23178.1 +3 -0
  16. runs/Jan27_01-50-16_9d1471f48333/events.out.tfevents.1706320229.9d1471f48333.29274.0 +3 -0
  17. runs/Jan27_01-51-54_9d1471f48333/events.out.tfevents.1706320319.9d1471f48333.29776.0 +3 -0
  18. runs/Jan27_01-54-08_9d1471f48333/events.out.tfevents.1706320451.9d1471f48333.30392.0 +3 -0
  19. runs/Jan27_01-55-35_9d1471f48333/events.out.tfevents.1706320541.9d1471f48333.30865.0 +3 -0
  20. runs/Jan27_01-58-51_9d1471f48333/events.out.tfevents.1706320737.9d1471f48333.31705.0 +3 -0
  21. special_tokens_map.json +6 -0
  22. tokenizer.json +0 -0
  23. tokenizer_config.json +20 -0
  24. training_args.bin +3 -0
  25. vocab.json +0 -0
README.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ model-index:
5
+ - name: MiniBOB
6
+ results: []
7
+ ---
8
+
9
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
10
+ should probably proofread and complete it, then remove this comment. -->
11
+
12
+ # MiniBOB
13
+
14
+ This model is a fine-tuned version of [](https://huggingface.co/) on an unknown dataset.
15
+
16
+ ## Model description
17
+
18
+ More information needed
19
+
20
+ ## Intended uses & limitations
21
+
22
+ More information needed
23
+
24
+ ## Training and evaluation data
25
+
26
+ More information needed
27
+
28
+ ## Training procedure
29
+
30
+ ### Training hyperparameters
31
+
32
+ The following hyperparameters were used during training:
33
+ - learning_rate: 2e-05
34
+ - train_batch_size: 1
35
+ - eval_batch_size: 1
36
+ - seed: 42
37
+ - gradient_accumulation_steps: 8
38
+ - total_train_batch_size: 8
39
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
40
+ - lr_scheduler_type: cosine
41
+ - lr_scheduler_warmup_steps: 1000
42
+ - num_epochs: 1
43
+ - mixed_precision_training: Native AMP
44
+
45
+ ### Framework versions
46
+
47
+ - Transformers 4.35.2
48
+ - Pytorch 2.1.0+cu121
49
+ - Datasets 2.16.1
50
+ - Tokenizers 0.15.1
config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "RobertaForCausalLM"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "bos_token_id": 0,
7
+ "classifier_dropout": null,
8
+ "eos_token_id": 2,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "is_decoder": true,
15
+ "layer_norm_eps": 1e-12,
16
+ "max_position_embeddings": 2048,
17
+ "model_type": "roberta",
18
+ "num_attention_heads": 24,
19
+ "num_hidden_layers": 24,
20
+ "pad_token_id": 1,
21
+ "position_embedding_type": "absolute",
22
+ "torch_dtype": "float32",
23
+ "transformers_version": "4.35.2",
24
+ "type_vocab_size": 1,
25
+ "use_cache": true,
26
+ "vocab_size": 512000
27
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "eos_token_id": 2,
5
+ "pad_token_id": 1,
6
+ "transformers_version": "4.35.2"
7
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d25d7c5f5394cdc86e32ed5e8c6b711d716e89522d94e08a4b8ea5f0e104e2ed
3
+ size 2264065256
runs/Jan27_00-39-09_9d1471f48333/events.out.tfevents.1706315954.9d1471f48333.183.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58ebe884f8d06e7f8c0655453757f2dc0a003cf145c3e1c16669d3f19df22193
3
+ size 4184
runs/Jan27_00-53-20_9d1471f48333/events.out.tfevents.1706316802.9d1471f48333.11933.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13ef22ceec600a097375e0a9f69d53800ffb69594dacbfdbda402b4ca202f1af
3
+ size 4125
runs/Jan27_00-54-14_9d1471f48333/events.out.tfevents.1706316857.9d1471f48333.11933.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52e1ab9560df525a296ba010b41fa71a8933d040a6fb18e8a9797b4837ab9bd5
3
+ size 4184
runs/Jan27_00-54-33_9d1471f48333/events.out.tfevents.1706316878.9d1471f48333.11933.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c53b5bd016fc48592d2d812ae06c4bf23e52ef6c586e575ed04375bbfee546d7
3
+ size 88
runs/Jan27_00-54-52_9d1471f48333/events.out.tfevents.1706316895.9d1471f48333.11933.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf9fb1213bf64c50d068bcef16b091356b92b6ca495cb1204e3b2cbe11e3593f
3
+ size 88
runs/Jan27_00-55-07_9d1471f48333/events.out.tfevents.1706316909.9d1471f48333.11933.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53cc95b3f1c2377a296ca3ef6d6a00370cd6be52a6f2ba63f0a5aead44e1aabf
3
+ size 4184
runs/Jan27_00-55-26_9d1471f48333/events.out.tfevents.1706316928.9d1471f48333.11933.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02f4aa99b0b9b8bbb46840f6c0507058d3047c016fc19d24e3c10a20ab20675c
3
+ size 4184
runs/Jan27_01-08-43_9d1471f48333/events.out.tfevents.1706317728.9d1471f48333.15812.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6e54ccb315fc5d93735e4335788231b119daa6ac32a7b784673ade4790472e8
3
+ size 88
runs/Jan27_01-48-18_9d1471f48333/events.out.tfevents.1706320100.9d1471f48333.23178.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64918f7165b06ace0bbe1b2923cb420d356334d9ad117d314ed4f80f943ece70
3
+ size 88
runs/Jan27_01-48-52_9d1471f48333/events.out.tfevents.1706320137.9d1471f48333.23178.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec95926655d3a9d3a2587f7e02281da7c06db6cd5c645f71ab2cac35ed6dfb7d
3
+ size 88
runs/Jan27_01-50-16_9d1471f48333/events.out.tfevents.1706320229.9d1471f48333.29274.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb818a6a0970cf214d4aca202e7b6e6e2c5e5883b3cdab9351113b95fdfc1014
3
+ size 88
runs/Jan27_01-51-54_9d1471f48333/events.out.tfevents.1706320319.9d1471f48333.29776.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95f378fe6ea97e3f4cc26688a95b0fc60dd5113330218f6236dcb3059e89c92d
3
+ size 88
runs/Jan27_01-54-08_9d1471f48333/events.out.tfevents.1706320451.9d1471f48333.30392.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba9ad1392e9e9bb9714d624d34ab3d1bafc3448713e7289aa5410ec3462d7623
3
+ size 88
runs/Jan27_01-55-35_9d1471f48333/events.out.tfevents.1706320541.9d1471f48333.30865.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6938d578801bedf3677ba04c5613c300ba915a7380f0a3883fc95195dc612572
3
+ size 88
runs/Jan27_01-58-51_9d1471f48333/events.out.tfevents.1706320737.9d1471f48333.31705.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:addb7fcd0a93e96e41e4ad67bb19751813c7ef4bcc13b3ec9c26b1c605bd143c
3
+ size 4123
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|endoftext|>",
3
+ "eos_token": "<|endoftext|>",
4
+ "pad_token": "<|endoftext|>",
5
+ "unk_token": "<|endoftext|>"
6
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ }
12
+ },
13
+ "bos_token": "<|endoftext|>",
14
+ "clean_up_tokenization_spaces": true,
15
+ "eos_token": "<|endoftext|>",
16
+ "model_max_length": 1024,
17
+ "pad_token": "<|endoftext|>",
18
+ "tokenizer_class": "GPT2Tokenizer",
19
+ "unk_token": "<|endoftext|>"
20
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5125a8649900bea45754480762da0d3e9ef743fe90757a4b8962e935ae70ccd0
3
+ size 4536
vocab.json ADDED
The diff for this file is too large to render. See raw diff