koreadaeil commited on
Commit
38e31c9
1 Parent(s): 580fd1c

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,34 +1,37 @@
1
  {
2
- "_name_or_path": "gchhablani/fnet-base-finetuned-wnli",
 
3
  "architectures": [
4
- "FNetForSequenceClassification"
5
  ],
6
- "bos_token_id": 1,
7
- "eos_token_id": 2,
8
- "finetuning_task": "wnli",
9
- "hidden_act": "gelu_new",
10
- "hidden_dropout_prob": 0.1,
11
- "hidden_size": 768,
12
  "id2label": {
13
  "0": "negative",
14
- "1": "potitive"
 
 
15
  },
16
  "initializer_range": 0.02,
17
- "intermediate_size": 3072,
18
  "label2id": {
 
19
  "negative": 0,
 
20
  "positive": 1
21
  },
22
- "layer_norm_eps": 1e-12,
23
  "max_position_embeddings": 512,
24
- "model_type": "fnet",
25
- "num_hidden_layers": 12,
26
- "pad_token_id": 3,
 
27
  "problem_type": "single_label_classification",
 
 
 
 
28
  "torch_dtype": "float32",
29
- "tpu_short_seq_length": 512,
30
  "transformers_version": "4.30.2",
31
- "type_vocab_size": 4,
32
- "use_tpu_fourier_optimizations": false,
33
- "vocab_size": 32000
34
  }
 
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": "negative",
13
+ "1": "potitive",
14
+ "2": "neutral",
15
+ "3": "mixed"
16
  },
17
  "initializer_range": 0.02,
 
18
  "label2id": {
19
+ "mixed": 3,
20
  "negative": 0,
21
+ "neutral": 2,
22
  "positive": 1
23
  },
 
24
  "max_position_embeddings": 512,
25
+ "model_type": "distilbert",
26
+ "n_heads": 12,
27
+ "n_layers": 6,
28
+ "pad_token_id": 0,
29
  "problem_type": "single_label_classification",
30
+ "qa_dropout": 0.1,
31
+ "seq_classif_dropout": 0.2,
32
+ "sinusoidal_pos_embds": false,
33
+ "tie_weights_": true,
34
  "torch_dtype": "float32",
 
35
  "transformers_version": "4.30.2",
36
+ "vocab_size": 30522
 
 
37
  }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:08fa57d4422b32040a56251f2aac3b582faeffeb699b4b98f8e4094c07e19466
3
- size 331490685
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b04e070ef7ca437cb1e47cf6f331104e841f550182d1adb7e94ba1c094bdd7b6
3
+ size 267861677
runs/Jun24_13-03-25_783533aedfec/events.out.tfevents.1687611810.783533aedfec.3425.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ca717a1257398993ed188eaa663aac5adb8de0a108fdcee38b477dba3fecd82
3
+ size 4140
runs/Jun24_13-20-44_783533aedfec/events.out.tfevents.1687612846.783533aedfec.3425.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15ef9f0dd1239f2303277a88179681c53083bad5b5fda9de368ca549a675bd8f
3
+ size 4404
special_tokens_map.json CHANGED
@@ -1,13 +1,7 @@
1
  {
2
  "cls_token": "[CLS]",
3
- "mask_token": {
4
- "content": "[MASK]",
5
- "lstrip": true,
6
- "normalized": true,
7
- "rstrip": false,
8
- "single_word": false
9
- },
10
- "pad_token": "<pad>",
11
  "sep_token": "[SEP]",
12
- "unk_token": "<unk>"
13
  }
 
1
  {
2
  "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
 
 
 
 
 
 
5
  "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
  }
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -1,21 +1,13 @@
1
  {
2
  "clean_up_tokenization_spaces": true,
3
  "cls_token": "[CLS]",
4
- "do_lower_case": false,
5
- "keep_accents": true,
6
- "mask_token": {
7
- "__type": "AddedToken",
8
- "content": "[MASK]",
9
- "lstrip": false,
10
- "normalized": true,
11
- "rstrip": false,
12
- "single_word": false
13
- },
14
  "model_max_length": 512,
15
- "pad_token": "<pad>",
16
- "remove_space": true,
17
  "sep_token": "[SEP]",
18
- "sp_model_kwargs": {},
19
- "tokenizer_class": "FNetTokenizer",
20
- "unk_token": "<unk>"
 
21
  }
 
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
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c867e16fb4edf700edf53d4d5b5f744a2dd66e62ea022992a9a52da82c2649cb
3
  size 3963
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d85aee64ab09d67eda5cf4f1e13b1af9687490812fd2942b91216c296370f32
3
  size 3963