Commit
·
323cdbd
1
Parent(s):
3cb937a
Training in progress, epoch 1
Browse files- config.json +131 -0
- model.safetensors +3 -0
- runs/Dec01_00-32-54_8880bfad1c92/events.out.tfevents.1701390792.8880bfad1c92.598.0 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +55 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "bert-base-uncased",
|
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": "Algebra",
|
14 |
+
"1": "Arithmetic",
|
15 |
+
"2": "Astronomy",
|
16 |
+
"3": "Biology",
|
17 |
+
"4": "Business",
|
18 |
+
"5": "Chemistry",
|
19 |
+
"6": "Communication",
|
20 |
+
"7": "Computer Science",
|
21 |
+
"8": "Culture",
|
22 |
+
"9": "ESL/EFL",
|
23 |
+
"10": "Earth Science",
|
24 |
+
"11": "Ecology",
|
25 |
+
"12": "Economics",
|
26 |
+
"13": "Engineering",
|
27 |
+
"14": "Entrepreneurship",
|
28 |
+
"15": "Environmental Science",
|
29 |
+
"16": "Ethics",
|
30 |
+
"17": "Figurative Language",
|
31 |
+
"18": "Geometry",
|
32 |
+
"19": "Grammar",
|
33 |
+
"20": "Health",
|
34 |
+
"21": "History",
|
35 |
+
"22": "Language",
|
36 |
+
"23": "Language Arts",
|
37 |
+
"24": "Law",
|
38 |
+
"25": "Life Skills",
|
39 |
+
"26": "Literary Devices",
|
40 |
+
"27": "Literature",
|
41 |
+
"28": "Marketing",
|
42 |
+
"29": "Math",
|
43 |
+
"30": "Mental Health",
|
44 |
+
"31": "Nutrition",
|
45 |
+
"32": "Personal Health",
|
46 |
+
"33": "Philosophy and Theology",
|
47 |
+
"34": "Physics",
|
48 |
+
"35": "Problem Solving",
|
49 |
+
"36": "Psychology",
|
50 |
+
"37": "Relationship Skills",
|
51 |
+
"38": "Relationships",
|
52 |
+
"39": "Responsible Decision-making",
|
53 |
+
"40": "Science",
|
54 |
+
"41": "Scientific Method",
|
55 |
+
"42": "Self-awareness",
|
56 |
+
"43": "Self-management",
|
57 |
+
"44": "Social Awareness",
|
58 |
+
"45": "Social Studies",
|
59 |
+
"46": "Social-Emotional Learning",
|
60 |
+
"47": "Sociology",
|
61 |
+
"48": "The Arts",
|
62 |
+
"49": "Zoology"
|
63 |
+
},
|
64 |
+
"initializer_range": 0.02,
|
65 |
+
"intermediate_size": 3072,
|
66 |
+
"label2id": {
|
67 |
+
"Algebra": 0,
|
68 |
+
"Arithmetic": 1,
|
69 |
+
"Astronomy": 2,
|
70 |
+
"Biology": 3,
|
71 |
+
"Business": 4,
|
72 |
+
"Chemistry": 5,
|
73 |
+
"Communication": 6,
|
74 |
+
"Computer Science": 7,
|
75 |
+
"Culture": 8,
|
76 |
+
"ESL/EFL": 9,
|
77 |
+
"Earth Science": 10,
|
78 |
+
"Ecology": 11,
|
79 |
+
"Economics": 12,
|
80 |
+
"Engineering": 13,
|
81 |
+
"Entrepreneurship": 14,
|
82 |
+
"Environmental Science": 15,
|
83 |
+
"Ethics": 16,
|
84 |
+
"Figurative Language": 17,
|
85 |
+
"Geometry": 18,
|
86 |
+
"Grammar": 19,
|
87 |
+
"Health": 20,
|
88 |
+
"History": 21,
|
89 |
+
"Language": 22,
|
90 |
+
"Language Arts": 23,
|
91 |
+
"Law": 24,
|
92 |
+
"Life Skills": 25,
|
93 |
+
"Literary Devices": 26,
|
94 |
+
"Literature": 27,
|
95 |
+
"Marketing": 28,
|
96 |
+
"Math": 29,
|
97 |
+
"Mental Health": 30,
|
98 |
+
"Nutrition": 31,
|
99 |
+
"Personal Health": 32,
|
100 |
+
"Philosophy and Theology": 33,
|
101 |
+
"Physics": 34,
|
102 |
+
"Problem Solving": 35,
|
103 |
+
"Psychology": 36,
|
104 |
+
"Relationship Skills": 37,
|
105 |
+
"Relationships": 38,
|
106 |
+
"Responsible Decision-making": 39,
|
107 |
+
"Science": 40,
|
108 |
+
"Scientific Method": 41,
|
109 |
+
"Self-awareness": 42,
|
110 |
+
"Self-management": 43,
|
111 |
+
"Social Awareness": 44,
|
112 |
+
"Social Studies": 45,
|
113 |
+
"Social-Emotional Learning": 46,
|
114 |
+
"Sociology": 47,
|
115 |
+
"The Arts": 48,
|
116 |
+
"Zoology": 49
|
117 |
+
},
|
118 |
+
"layer_norm_eps": 1e-12,
|
119 |
+
"max_position_embeddings": 512,
|
120 |
+
"model_type": "bert",
|
121 |
+
"num_attention_heads": 12,
|
122 |
+
"num_hidden_layers": 12,
|
123 |
+
"pad_token_id": 0,
|
124 |
+
"position_embedding_type": "absolute",
|
125 |
+
"problem_type": "multi_label_classification",
|
126 |
+
"torch_dtype": "float32",
|
127 |
+
"transformers_version": "4.35.2",
|
128 |
+
"type_vocab_size": 2,
|
129 |
+
"use_cache": true,
|
130 |
+
"vocab_size": 30522
|
131 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04f1832114aabf31fb4374acd2e4bad79777bb851139bc3bb027678b46f446a0
|
3 |
+
size 438106296
|
runs/Dec01_00-32-54_8880bfad1c92/events.out.tfevents.1701390792.8880bfad1c92.598.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb2f21fbd2306a6f1e6bfe78fc6f9783a79daf08c509530e09b4991a90e95d81
|
3 |
+
size 7341
|
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,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "[PAD]",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"100": {
|
12 |
+
"content": "[UNK]",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"101": {
|
20 |
+
"content": "[CLS]",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"102": {
|
28 |
+
"content": "[SEP]",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"103": {
|
36 |
+
"content": "[MASK]",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
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,
|
52 |
+
"tokenize_chinese_chars": true,
|
53 |
+
"tokenizer_class": "BertTokenizer",
|
54 |
+
"unk_token": "[UNK]"
|
55 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dbcc9162d643ab48e807e54bb1be2c4d995b087364b1eb3a9916b88c44b80d7d
|
3 |
+
size 4600
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|