datht commited on
Commit
971bda7
1 Parent(s): 4b0f243

Training in progress, epoch 3

Browse files
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c03e07eb7a22c8639d2c219ce73e97cd70c1830781593152055e945cd9fe081d
3
  size 267835644
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27aa565934269c809398d14d7a3f915bebf66f39ee9dda8bc14a41613e6ba84e
3
  size 267835644
run-0/checkpoint-441/config.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "LABEL_0",
13
+ "1": "LABEL_1",
14
+ "2": "LABEL_2"
15
+ },
16
+ "initializer_range": 0.02,
17
+ "label2id": {
18
+ "LABEL_0": 0,
19
+ "LABEL_1": 1,
20
+ "LABEL_2": 2
21
+ },
22
+ "max_position_embeddings": 512,
23
+ "model_type": "distilbert",
24
+ "n_heads": 12,
25
+ "n_layers": 6,
26
+ "pad_token_id": 0,
27
+ "problem_type": "single_label_classification",
28
+ "qa_dropout": 0.1,
29
+ "seq_classif_dropout": 0.2,
30
+ "sinusoidal_pos_embds": false,
31
+ "tie_weights_": true,
32
+ "torch_dtype": "float32",
33
+ "transformers_version": "4.38.1",
34
+ "vocab_size": 30522
35
+ }
run-0/checkpoint-441/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27aa565934269c809398d14d7a3f915bebf66f39ee9dda8bc14a41613e6ba84e
3
+ size 267835644
run-0/checkpoint-441/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d20039a67ea8527151e46b47616f03043dbaf32ad7f3b6675aca36e22cf7859
3
+ size 535733434
run-0/checkpoint-441/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70dcca85b3837dd37f92728cc07b8191b8fbc2b738089228554a4cc6d271cc8b
3
+ size 14244
run-0/checkpoint-441/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9833a0aeba5bb73858bb5b36f642c34c505b5e314ac07504df9f268afcdca2c
3
+ size 1064
run-0/checkpoint-441/special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
run-0/checkpoint-441/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
run-0/checkpoint-441/tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "DistilBertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
run-0/checkpoint-441/trainer_state.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 0.7962328767123288,
3
+ "best_model_checkpoint": "distilbert-base-uncased-finetuned-SA/run-0/checkpoint-441",
4
+ "epoch": 3.0,
5
+ "eval_steps": 500,
6
+ "global_step": 441,
7
+ "is_hyper_param_search": true,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 1.0,
13
+ "eval_accuracy": 0.7688356164383562,
14
+ "eval_loss": 0.5073187947273254,
15
+ "eval_runtime": 3.5613,
16
+ "eval_samples_per_second": 163.984,
17
+ "eval_steps_per_second": 10.389,
18
+ "step": 147
19
+ },
20
+ {
21
+ "epoch": 2.0,
22
+ "eval_accuracy": 0.7825342465753424,
23
+ "eval_loss": 0.5155062675476074,
24
+ "eval_runtime": 3.5634,
25
+ "eval_samples_per_second": 163.888,
26
+ "eval_steps_per_second": 10.383,
27
+ "step": 294
28
+ },
29
+ {
30
+ "epoch": 3.0,
31
+ "eval_accuracy": 0.7962328767123288,
32
+ "eval_loss": 0.6085470914840698,
33
+ "eval_runtime": 3.5765,
34
+ "eval_samples_per_second": 163.288,
35
+ "eval_steps_per_second": 10.345,
36
+ "step": 441
37
+ }
38
+ ],
39
+ "logging_steps": 500,
40
+ "max_steps": 735,
41
+ "num_input_tokens_seen": 0,
42
+ "num_train_epochs": 5,
43
+ "save_steps": 500,
44
+ "total_flos": 0,
45
+ "train_batch_size": 32,
46
+ "trial_name": null,
47
+ "trial_params": {
48
+ "learning_rate": 8.745243169419031e-05,
49
+ "num_train_epochs": 5,
50
+ "per_device_train_batch_size": 32,
51
+ "seed": 6
52
+ }
53
+ }
run-0/checkpoint-441/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da9af0f97bb745edd8810ff01baa7a946d32695a46eb9392d72614a6bff5844a
3
+ size 4984
run-0/checkpoint-441/vocab.txt ADDED
The diff for this file is too large to render. See raw diff
 
runs/Apr01_13-09-37_c7a746a4e968/events.out.tfevents.1711978294.c7a746a4e968.35.3 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:658f7858dc9eeeb5f24bfaba55ed3a846c3bbea916adaf1827f1203845d56152
3
- size 5336
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45a728809923e4aad44ea026712c83147c60992133490d085d98d8575788faf6
3
+ size 5659