hannahisrael03 commited on
Commit
e035c15
1 Parent(s): f16099b

Training in progress, epoch 1

Browse files
config.json CHANGED
@@ -1,13 +1,14 @@
1
  {
2
- "_name_or_path": "lxyuan/distilbert-base-multilingual-cased-sentiments-student",
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",
@@ -15,24 +16,24 @@
15
  "3": "LABEL_3"
16
  },
17
  "initializer_range": 0.02,
 
18
  "label2id": {
19
  "LABEL_0": 0,
20
  "LABEL_1": 1,
21
  "LABEL_2": 2,
22
  "LABEL_3": 3
23
  },
 
24
  "max_position_embeddings": 512,
25
- "model_type": "distilbert",
26
- "n_heads": 12,
27
- "n_layers": 6,
28
- "output_past": true,
29
  "pad_token_id": 0,
 
30
  "problem_type": "single_label_classification",
31
- "qa_dropout": 0.1,
32
- "seq_classif_dropout": 0.2,
33
- "sinusoidal_pos_embds": false,
34
- "tie_weights_": true,
35
  "torch_dtype": "float32",
36
  "transformers_version": "4.40.1",
37
- "vocab_size": 119547
 
 
38
  }
 
1
  {
2
+ "_name_or_path": "fabriceyhc/bert-base-uncased-amazon_polarity",
 
3
  "architectures": [
4
+ "BertForSequenceClassification"
5
  ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
  "id2label": {
13
  "0": "LABEL_0",
14
  "1": "LABEL_1",
 
16
  "3": "LABEL_3"
17
  },
18
  "initializer_range": 0.02,
19
+ "intermediate_size": 3072,
20
  "label2id": {
21
  "LABEL_0": 0,
22
  "LABEL_1": 1,
23
  "LABEL_2": 2,
24
  "LABEL_3": 3
25
  },
26
+ "layer_norm_eps": 1e-12,
27
  "max_position_embeddings": 512,
28
+ "model_type": "bert",
29
+ "num_attention_heads": 12,
30
+ "num_hidden_layers": 12,
 
31
  "pad_token_id": 0,
32
+ "position_embedding_type": "absolute",
33
  "problem_type": "single_label_classification",
 
 
 
 
34
  "torch_dtype": "float32",
35
  "transformers_version": "4.40.1",
36
+ "type_vocab_size": 2,
37
+ "use_cache": true,
38
+ "vocab_size": 30522
39
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f3c30b30af4612172d4f29d5967dc07ff6d736980bdf93f2aa75d417d4e091df
3
- size 541323528
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:973376800baa251512eb3f757e91080d535c7949a9a8d37e10f1e7466e4789f3
3
+ size 437964800
runs/Apr30_15-23-08_969217bf108a/events.out.tfevents.1714490592.969217bf108a.144.13 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9dbfe341bc6b0c09fcc953283b7b466dd6c5c1dc700983a618c7e51df64537f3
3
+ size 4845
runs/Apr30_15-44-12_969217bf108a/events.out.tfevents.1714491857.969217bf108a.144.14 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c7a3aed4bba886e52f57632a9eda928bca61a9444d19206b858f018659a27cf
3
+ size 9672
runs/Apr30_15-46-14_969217bf108a/events.out.tfevents.1714491977.969217bf108a.144.15 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10ebb47e88334475a1d676e33afd761c8a5cf716efa1fe00d1e9f1790747b495
3
+ size 5314
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json CHANGED
@@ -43,12 +43,10 @@
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
- "do_basic_tokenize": true,
47
- "do_lower_case": false,
48
  "mask_token": "[MASK]",
49
- "max_length": 512,
50
  "model_max_length": 512,
51
- "never_split": null,
52
  "pad_to_multiple_of": null,
53
  "pad_token": "[PAD]",
54
  "pad_token_type_id": 0,
@@ -57,7 +55,7 @@
57
  "stride": 0,
58
  "strip_accents": null,
59
  "tokenize_chinese_chars": true,
60
- "tokenizer_class": "DistilBertTokenizer",
61
  "truncation_side": "right",
62
  "truncation_strategy": "longest_first",
63
  "unk_token": "[UNK]"
 
43
  },
44
  "clean_up_tokenization_spaces": true,
45
  "cls_token": "[CLS]",
46
+ "do_lower_case": true,
 
47
  "mask_token": "[MASK]",
48
+ "max_length": 250,
49
  "model_max_length": 512,
 
50
  "pad_to_multiple_of": null,
51
  "pad_token": "[PAD]",
52
  "pad_token_type_id": 0,
 
55
  "stride": 0,
56
  "strip_accents": null,
57
  "tokenize_chinese_chars": true,
58
+ "tokenizer_class": "BertTokenizer",
59
  "truncation_side": "right",
60
  "truncation_strategy": "longest_first",
61
  "unk_token": "[UNK]"
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c37ac1d3275cb0ef5106a8cc8d027576fc318cae47bff0914e835b64f6cd6556
3
- size 4920
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f08670c00c9cd5415cfc6856d405d3bd2cb5293490459a4042d7ef3ee2db9dac
3
+ size 4984
vocab.txt CHANGED
The diff for this file is too large to render. See raw diff