pradanaadn commited on
Commit
fd0185e
·
verified ·
1 Parent(s): ca794d4

Training in progress, step 1000

Browse files
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "pradanaadn/sucidal-text-classification-distillbert",
3
  "activation": "gelu",
4
  "architectures": [
5
  "DistilBertForSequenceClassification"
@@ -7,32 +7,12 @@
7
  "attention_dropout": 0.1,
8
  "dim": 768,
9
  "dropout": 0.1,
10
- "finetuning_task": "sst-2",
11
  "hidden_dim": 3072,
12
- "id2label": {
13
- "0": "LABEL_0",
14
- "1": "LABEL_1",
15
- "2": "LABEL_2",
16
- "3": "LABEL_3",
17
- "4": "LABEL_4",
18
- "5": "LABEL_5",
19
- "6": "LABEL_6"
20
- },
21
  "initializer_range": 0.02,
22
- "label2id": {
23
- "LABEL_0": 0,
24
- "LABEL_1": 1,
25
- "LABEL_2": 2,
26
- "LABEL_3": 3,
27
- "LABEL_4": 4,
28
- "LABEL_5": 5,
29
- "LABEL_6": 6
30
- },
31
  "max_position_embeddings": 512,
32
  "model_type": "distilbert",
33
  "n_heads": 12,
34
  "n_layers": 6,
35
- "output_past": true,
36
  "pad_token_id": 0,
37
  "problem_type": "single_label_classification",
38
  "qa_dropout": 0.1,
 
1
  {
2
+ "_name_or_path": "distilbert/distilbert-base-uncased",
3
  "activation": "gelu",
4
  "architectures": [
5
  "DistilBertForSequenceClassification"
 
7
  "attention_dropout": 0.1,
8
  "dim": 768,
9
  "dropout": 0.1,
 
10
  "hidden_dim": 3072,
 
 
 
 
 
 
 
 
 
11
  "initializer_range": 0.02,
 
 
 
 
 
 
 
 
 
12
  "max_position_embeddings": 512,
13
  "model_type": "distilbert",
14
  "n_heads": 12,
15
  "n_layers": 6,
 
16
  "pad_token_id": 0,
17
  "problem_type": "single_label_classification",
18
  "qa_dropout": 0.1,
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0541f2032351b41e025e90120b2ef5dbfa5ff3be35e9c3260a984ca333d655b9
3
- size 267847948
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebff8a3153ee174cac9b51cbb53ed1b0dd2793f49c63456fceb45948e24f97aa
3
+ size 267832560
runs/Jul17_07-36-14_ec5a69c5e9f8/events.out.tfevents.1721201782.ec5a69c5e9f8.3075.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:018ce95fb36f9238b1ef9ad46ed031acf7713c6e8be9a58c9475e9d5feb988b5
3
+ size 4778
runs/Jul17_07-36-30_ec5a69c5e9f8/events.out.tfevents.1721201981.ec5a69c5e9f8.3075.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e58f3256751d33cfd5ecf1a9466163f2ea7517f91c49bda137f00d7a817ecfd7
3
+ size 389
runs/Jul17_07-45-05_ec5a69c5e9f8/events.out.tfevents.1721202312.ec5a69c5e9f8.3075.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8eee4b4761013e2601a586418b0eb3c204db5040a362ed1381bfae05c4f0aa97
3
+ size 5407
special_tokens_map.json CHANGED
@@ -1,37 +1,7 @@
1
  {
2
- "cls_token": {
3
- "content": "[CLS]",
4
- "lstrip": false,
5
- "normalized": false,
6
- "rstrip": false,
7
- "single_word": false
8
- },
9
- "mask_token": {
10
- "content": "[MASK]",
11
- "lstrip": false,
12
- "normalized": false,
13
- "rstrip": false,
14
- "single_word": false
15
- },
16
- "pad_token": {
17
- "content": "[PAD]",
18
- "lstrip": false,
19
- "normalized": false,
20
- "rstrip": false,
21
- "single_word": false
22
- },
23
- "sep_token": {
24
- "content": "[SEP]",
25
- "lstrip": false,
26
- "normalized": false,
27
- "rstrip": false,
28
- "single_word": false
29
- },
30
- "unk_token": {
31
- "content": "[UNK]",
32
- "lstrip": false,
33
- "normalized": false,
34
- "rstrip": false,
35
- "single_word": false
36
- }
37
  }
 
1
  {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
tokenizer_config.json CHANGED
@@ -43,11 +43,9 @@
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
- "do_basic_tokenize": true,
47
  "do_lower_case": true,
48
  "mask_token": "[MASK]",
49
  "model_max_length": 512,
50
- "never_split": null,
51
  "pad_token": "[PAD]",
52
  "sep_token": "[SEP]",
53
  "strip_accents": null,
 
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,
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0f04b296659adc8c116ad785d2d71040b5c695fbf06ef3498adf9d6ac2681ae0
3
  size 5112
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d20ae5e25746be0e3a15998afcfe034eca50a40de0ab7a1549c8983aa8430908
3
  size 5112