TirkNork commited on
Commit
ee5ef23
·
1 Parent(s): e5a24c3

Training in progress epoch 0

Browse files
Files changed (5) hide show
  1. README.md +5 -18
  2. special_tokens_map.json +5 -18
  3. tf_model.h5 +1 -1
  4. tokenizer.json +0 -0
  5. tokenizer_config.json +10 -22
README.md CHANGED
@@ -14,10 +14,10 @@ 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: 0.2014
18
- - Validation Loss: 0.1349
19
- - Train Accuracy: 0.95
20
- - Epoch: 13
21
 
22
  ## Model description
23
 
@@ -43,20 +43,7 @@ The following hyperparameters were used during training:
43
 
44
  | Train Loss | Validation Loss | Train Accuracy | Epoch |
45
  |:----------:|:---------------:|:--------------:|:-----:|
46
- | 0.0019 | 0.4504 | 0.85 | 0 |
47
- | 0.0017 | 0.4712 | 0.85 | 1 |
48
- | 0.0016 | 0.4817 | 0.85 | 2 |
49
- | 0.0016 | 0.4854 | 0.85 | 3 |
50
- | 0.0015 | 0.4889 | 0.85 | 4 |
51
- | 0.0014 | 0.4960 | 0.85 | 5 |
52
- | 0.0014 | 0.4971 | 0.85 | 6 |
53
- | 0.0013 | 0.4970 | 0.85 | 7 |
54
- | 0.0013 | 0.4994 | 0.85 | 8 |
55
- | 0.0012 | 0.5083 | 0.85 | 9 |
56
- | 0.0011 | 0.5147 | 0.85 | 10 |
57
- | 0.0722 | 0.6652 | 0.825 | 11 |
58
- | 0.0971 | 0.8475 | 0.8 | 12 |
59
- | 0.2014 | 0.1349 | 0.95 | 13 |
60
 
61
 
62
  ### Framework versions
 
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: 0.6634
18
+ - Validation Loss: 0.6379
19
+ - Train Accuracy: 0.625
20
+ - Epoch: 0
21
 
22
  ## Model description
23
 
 
43
 
44
  | Train Loss | Validation Loss | Train Accuracy | Epoch |
45
  |:----------:|:---------------:|:--------------:|:-----:|
46
+ | 0.6634 | 0.6379 | 0.625 | 0 |
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
 
49
  ### Framework versions
special_tokens_map.json CHANGED
@@ -1,20 +1,7 @@
1
  {
2
- "additional_special_tokens": [
3
- "<s>NOTUSED",
4
- "</s>NOTUSED",
5
- "<_>"
6
- ],
7
- "bos_token": "<s>",
8
- "cls_token": "<s>",
9
- "eos_token": "</s>",
10
- "mask_token": {
11
- "content": "<mask>",
12
- "lstrip": true,
13
- "normalized": true,
14
- "rstrip": false,
15
- "single_word": false
16
- },
17
- "pad_token": "<pad>",
18
- "sep_token": "</s>",
19
- "unk_token": "<unk>"
20
  }
 
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:97089274e4ff858a78d1b9173e574dd68f2be5b77e8be019d6174fe64564e220
3
  size 267955144
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0a3679a3067180ebecfcb831ef6bbb4e7133ebe06f63125657bb02f254d6908
3
  size 267955144
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,25 +1,13 @@
1
  {
2
- "additional_special_tokens": [
3
- "<s>NOTUSED",
4
- "</s>NOTUSED",
5
- "<_>"
6
- ],
7
- "bos_token": "<s>",
8
  "clean_up_tokenization_spaces": true,
9
- "cls_token": "<s>",
10
- "eos_token": "</s>",
11
- "mask_token": {
12
- "__type": "AddedToken",
13
- "content": "<mask>",
14
- "lstrip": true,
15
- "normalized": true,
16
- "rstrip": false,
17
- "single_word": false
18
- },
19
- "model_max_length": 416,
20
- "pad_token": "<pad>",
21
- "sep_token": "</s>",
22
- "sp_model_kwargs": {},
23
- "tokenizer_class": "CamembertTokenizer",
24
- "unk_token": "<unk>"
25
  }
 
1
  {
 
 
 
 
 
 
2
  "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
+ "unk_token": "[UNK]"
 
 
 
 
 
 
13
  }