vinitharaj commited on
Commit
a940331
1 Parent(s): ba04883

Training in progress epoch 0

Browse files
README.md CHANGED
@@ -14,9 +14,9 @@ probably proofread and complete it, then remove this comment. -->
14
 
15
  This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
16
  It achieves the following results on the evaluation set:
17
- - Train Loss: 5.1722
18
- - Validation Loss: 0.0
19
- - Epoch: 1
20
 
21
  ## Model description
22
 
@@ -42,13 +42,12 @@ The following hyperparameters were used during training:
42
 
43
  | Train Loss | Validation Loss | Epoch |
44
  |:----------:|:---------------:|:-----:|
45
- | 5.9918 | 0.0 | 0 |
46
- | 5.1722 | 0.0 | 1 |
47
 
48
 
49
  ### Framework versions
50
 
51
- - Transformers 4.15.0
52
  - TensorFlow 2.8.2
53
- - Datasets 2.3.2
54
- - Tokenizers 0.10.3
 
14
 
15
  This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset.
16
  It achieves the following results on the evaluation set:
17
+ - Train Loss: 5.7158
18
+ - Validation Loss: 5.0214
19
+ - Epoch: 0
20
 
21
  ## Model description
22
 
 
42
 
43
  | Train Loss | Validation Loss | Epoch |
44
  |:----------:|:---------------:|:-----:|
45
+ | 5.7158 | 5.0214 | 0 |
 
46
 
47
 
48
  ### Framework versions
49
 
50
+ - Transformers 4.21.0
51
  - TensorFlow 2.8.2
52
+ - Datasets 2.4.0
53
+ - Tokenizers 0.12.1
config.json CHANGED
@@ -18,6 +18,6 @@
18
  "seq_classif_dropout": 0.2,
19
  "sinusoidal_pos_embds": false,
20
  "tie_weights_": true,
21
- "transformers_version": "4.15.0",
22
  "vocab_size": 30522
23
  }
 
18
  "seq_classif_dropout": 0.2,
19
  "sinusoidal_pos_embds": false,
20
  "tie_weights_": true,
21
+ "transformers_version": "4.21.0",
22
  "vocab_size": 30522
23
  }
logs/train/events.out.tfevents.1658930508.eeb9f88a7144.70.0.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e95f7a477f43a8e5d7c12ec7b2226a81fda753907254a25968d23734f7fa5fc
3
+ size 181
logs/validation/events.out.tfevents.1658930514.eeb9f88a7144.70.1.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14fc40099e78e0c3d901fb00ec38bef3c385add2d0bcd7bec96572ea8bacf90b
3
+ size 193
special_tokens_map.json CHANGED
@@ -1 +1,7 @@
1
- {"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tf_model.h5 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:75b3b09b246bee43f1ce4afd83963dd95389c7b84ec7bc3f60f5a79b4d7e394b
3
- size 265583656
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c504d0326f6b01a99a6963236cf3c21c130ef77a4e7971b36e61fb56b8cd4083
3
+ size 265583688
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1 +1,14 @@
1
- {"do_lower_case": true, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "distilbert-base-uncased", "tokenizer_class": "DistilBertTokenizer"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "distilbert-base-uncased",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }