nishparadox
commited on
Commit
•
ced4d34
1
Parent(s):
ce115fd
Upload 4 files
Browse filesAdd alpha-1.3 checkpoint
- config.json +50 -0
- model.safetensors +3 -0
- model_architecture.txt +44 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "nasa-impact/nasa-smd-ibm-v0.1",
|
3 |
+
"architectures": [
|
4 |
+
"RobertaForSequenceClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"eos_token_id": 2,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 768,
|
13 |
+
"id2label": {
|
14 |
+
"0": "Not EJ",
|
15 |
+
"1": "Climate Change",
|
16 |
+
"2": "Disasters",
|
17 |
+
"3": "Extreme Heat",
|
18 |
+
"4": "Food Availability",
|
19 |
+
"5": "Health & Air Quality",
|
20 |
+
"6": "Human Dimensions",
|
21 |
+
"7": "Urban Flooding",
|
22 |
+
"8": "Water Availability"
|
23 |
+
},
|
24 |
+
"initializer_range": 0.02,
|
25 |
+
"intermediate_size": 3072,
|
26 |
+
"label2id": {
|
27 |
+
"Climate Change": 1,
|
28 |
+
"Disasters": 2,
|
29 |
+
"Extreme Heat": 3,
|
30 |
+
"Food Availability": 4,
|
31 |
+
"Health & Air Quality": 5,
|
32 |
+
"Human Dimensions": 6,
|
33 |
+
"Not EJ": 0,
|
34 |
+
"Urban Flooding": 7,
|
35 |
+
"Water Availability": 8
|
36 |
+
},
|
37 |
+
"layer_norm_eps": 1e-05,
|
38 |
+
"max_position_embeddings": 514,
|
39 |
+
"model_type": "roberta",
|
40 |
+
"num_attention_heads": 12,
|
41 |
+
"num_hidden_layers": 12,
|
42 |
+
"pad_token_id": 1,
|
43 |
+
"position_embedding_type": "absolute",
|
44 |
+
"problem_type": "multi_label_classification",
|
45 |
+
"torch_dtype": "float32",
|
46 |
+
"transformers_version": "4.41.0",
|
47 |
+
"type_vocab_size": 1,
|
48 |
+
"use_cache": true,
|
49 |
+
"vocab_size": 50265
|
50 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:67ffc578151644944e37b2641142c0c45711cee95de9108b86fdc5d412a3bdd2
|
3 |
+
size 498634356
|
model_architecture.txt
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
RobertaForSequenceClassification(
|
2 |
+
(roberta): RobertaModel(
|
3 |
+
(embeddings): RobertaEmbeddings(
|
4 |
+
(word_embeddings): Embedding(50265, 768, padding_idx=1)
|
5 |
+
(position_embeddings): Embedding(514, 768, padding_idx=1)
|
6 |
+
(token_type_embeddings): Embedding(1, 768)
|
7 |
+
(LayerNorm): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
|
8 |
+
(dropout): Dropout(p=0.1, inplace=False)
|
9 |
+
)
|
10 |
+
(encoder): RobertaEncoder(
|
11 |
+
(layer): ModuleList(
|
12 |
+
(0-11): 12 x RobertaLayer(
|
13 |
+
(attention): RobertaAttention(
|
14 |
+
(self): RobertaSelfAttention(
|
15 |
+
(query): Linear(in_features=768, out_features=768, bias=True)
|
16 |
+
(key): Linear(in_features=768, out_features=768, bias=True)
|
17 |
+
(value): Linear(in_features=768, out_features=768, bias=True)
|
18 |
+
(dropout): Dropout(p=0.1, inplace=False)
|
19 |
+
)
|
20 |
+
(output): RobertaSelfOutput(
|
21 |
+
(dense): Linear(in_features=768, out_features=768, bias=True)
|
22 |
+
(LayerNorm): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
|
23 |
+
(dropout): Dropout(p=0.1, inplace=False)
|
24 |
+
)
|
25 |
+
)
|
26 |
+
(intermediate): RobertaIntermediate(
|
27 |
+
(dense): Linear(in_features=768, out_features=3072, bias=True)
|
28 |
+
(intermediate_act_fn): GELUActivation()
|
29 |
+
)
|
30 |
+
(output): RobertaOutput(
|
31 |
+
(dense): Linear(in_features=3072, out_features=768, bias=True)
|
32 |
+
(LayerNorm): LayerNorm((768,), eps=1e-05, elementwise_affine=True)
|
33 |
+
(dropout): Dropout(p=0.1, inplace=False)
|
34 |
+
)
|
35 |
+
)
|
36 |
+
)
|
37 |
+
)
|
38 |
+
)
|
39 |
+
(classifier): RobertaClassificationHead(
|
40 |
+
(dense): Linear(in_features=768, out_features=768, bias=True)
|
41 |
+
(dropout): Dropout(p=0.1, inplace=False)
|
42 |
+
(out_proj): Linear(in_features=768, out_features=9, bias=True)
|
43 |
+
)
|
44 |
+
)
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5fd8d8b127e64af7bad385a385c9b40e188eba65055d9c9498cd467ef2e6d13d
|
3 |
+
size 5048
|