cduncanja commited on
Commit
db03736
·
1 Parent(s): acccfd3

End of training

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/MiniLM-L12-H384-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 384,
11
+ "id2label": {
12
+ "0": "sadness",
13
+ "1": "joy",
14
+ "2": "love",
15
+ "3": "anger",
16
+ "4": "fear",
17
+ "5": "surprise"
18
+ },
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 1536,
21
+ "label2id": {
22
+ "anger": 3,
23
+ "fear": 4,
24
+ "joy": 1,
25
+ "love": 2,
26
+ "sadness": 0,
27
+ "surprise": 5
28
+ },
29
+ "layer_norm_eps": 1e-12,
30
+ "max_position_embeddings": 512,
31
+ "model_type": "bert",
32
+ "num_attention_heads": 12,
33
+ "num_hidden_layers": 12,
34
+ "pad_token_id": 0,
35
+ "position_embedding_type": "absolute",
36
+ "problem_type": "single_label_classification",
37
+ "torch_dtype": "float32",
38
+ "transformers_version": "4.22.2",
39
+ "type_vocab_size": 2,
40
+ "use_cache": true,
41
+ "vocab_size": 30522
42
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f5695d3f89a1f8fc0e4f80b31915b10cd7550d10fc94c660122b269d5f2c5f3
3
+ size 133517421
runs/Oct09_16-30-46_Carls-MacBook-Pro-5.local/1665351052.244669/events.out.tfevents.1665351052.Carls-MacBook-Pro-5.local.11320.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a428265e852024a1e2ab37a6cd04f71c34cd2a0ca13242fc830c962a97a74321
3
+ size 5499
runs/Oct09_16-30-46_Carls-MacBook-Pro-5.local/events.out.tfevents.1665351052.Carls-MacBook-Pro-5.local.11320.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dec976414a65c683ece9b0a1557f59fd88f249f36852ee6dc44a8d9191b3c16f
3
+ size 6545
runs/Oct09_16-32-22_Carls-MacBook-Pro-5.local/1665351145.881563/events.out.tfevents.1665351145.Carls-MacBook-Pro-5.local.11406.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2ea802135d33fc8e18a3d50cdb837b603a7bfabd2287f7f252fa31ba8ff9a6c
3
+ size 5499
runs/Oct09_16-32-22_Carls-MacBook-Pro-5.local/events.out.tfevents.1665351145.Carls-MacBook-Pro-5.local.11406.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76f49b22a6fe1768c9e5bc6fb5400184936d6a4db061dab10a081f78c28bb9f1
3
+ size 6545
runs/Oct09_16-32-22_Carls-MacBook-Pro-5.local/events.out.tfevents.1665351158.Carls-MacBook-Pro-5.local.11406.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4ddf044a42ca7095ba741abf4b64f3e4d31fc586591bdf0a48ee923fc928ceb
3
+ size 351
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_basic_tokenize": true,
4
+ "do_lower_case": true,
5
+ "mask_token": "[MASK]",
6
+ "name_or_path": "microsoft/MiniLM-L12-H384-uncased",
7
+ "never_split": null,
8
+ "pad_token": "[PAD]",
9
+ "sep_token": "[SEP]",
10
+ "special_tokens_map_file": "/Users/carlduncan/.cache/huggingface/hub/models--microsoft--MiniLM-L12-H384-uncased/snapshots/44acabbec0ef496f6dbc93adadea57f376b7c0ec/special_tokens_map.json",
11
+ "strip_accents": null,
12
+ "tokenize_chinese_chars": true,
13
+ "tokenizer_class": "BertTokenizer",
14
+ "unk_token": "[UNK]"
15
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ed4534f5de094b691aaa50628162e460e3b82349a8a1ee173d60098f0dfe42f
3
+ size 3375
vocab.txt ADDED
The diff for this file is too large to render. See raw diff