alex2awesome
commited on
Commit
•
34c5514
1
Parent(s):
c01610c
Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +45 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "roberta-base",
|
3 |
+
"architectures": [
|
4 |
+
"SentenceClassificationModel"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"classification_head": {
|
9 |
+
"num_labels": 9,
|
10 |
+
"pooling_method": "attention"
|
11 |
+
},
|
12 |
+
"classifier_dropout": null,
|
13 |
+
"context_layer": "transformer",
|
14 |
+
"eos_token_id": 2,
|
15 |
+
"frozen_layers": [
|
16 |
+
0,
|
17 |
+
1,
|
18 |
+
2,
|
19 |
+
3,
|
20 |
+
4,
|
21 |
+
5,
|
22 |
+
6,
|
23 |
+
7,
|
24 |
+
8,
|
25 |
+
9,
|
26 |
+
10
|
27 |
+
],
|
28 |
+
"hidden_act": "gelu",
|
29 |
+
"hidden_dropout_prob": 0.1,
|
30 |
+
"hidden_size": 768,
|
31 |
+
"initializer_range": 0.02,
|
32 |
+
"intermediate_size": 3072,
|
33 |
+
"layer_norm_eps": 1e-05,
|
34 |
+
"max_position_embeddings": 120,
|
35 |
+
"model_type": "roberta",
|
36 |
+
"num_attention_heads": 2,
|
37 |
+
"num_hidden_layers": 2,
|
38 |
+
"pad_token_id": 1,
|
39 |
+
"position_embedding_type": "absolute",
|
40 |
+
"torch_dtype": "float32",
|
41 |
+
"transformers_version": "4.30.2",
|
42 |
+
"type_vocab_size": 1,
|
43 |
+
"use_cache": true,
|
44 |
+
"vocab_size": 50265
|
45 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:768559439aef36996feef1037911c0b63d7bd224a3b2e8ccda98167c5126933f
|
3 |
+
size 714922721
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05cac2e19cd703682d88f40490d5bfab9b71233723bd56b1e58f1b42219b575f
|
3 |
+
size 3899
|