Training in progress, epoch 1
Browse files- README.md +12 -11
- config.json +5 -5
- model.safetensors +2 -2
- training_args.bin +1 -1
README.md
CHANGED
@@ -1,25 +1,25 @@
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
license: mit
|
4 |
-
base_model: roberta-
|
5 |
tags:
|
6 |
- generated_from_trainer
|
7 |
model-index:
|
8 |
-
- name:
|
9 |
results: []
|
10 |
---
|
11 |
|
12 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
13 |
should probably proofread and complete it, then remove this comment. -->
|
14 |
|
15 |
-
#
|
16 |
|
17 |
-
This model is a fine-tuned version of [roberta-
|
18 |
It achieves the following results on the evaluation set:
|
19 |
-
- Loss: 0.
|
20 |
-
- Rmse: 0.
|
21 |
-
- Mae: 0.
|
22 |
-
- Corr: 0.
|
23 |
|
24 |
## Model description
|
25 |
|
@@ -44,14 +44,15 @@ The following hyperparameters were used during training:
|
|
44 |
- seed: 42
|
45 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
46 |
- lr_scheduler_type: linear
|
47 |
-
- num_epochs:
|
48 |
|
49 |
### Training results
|
50 |
|
51 |
| Training Loss | Epoch | Step | Validation Loss | Rmse | Mae | Corr |
|
52 |
|:-------------:|:-----:|:----:|:---------------:|:------:|:------:|:------:|
|
53 |
-
| No log | 1.0 | 268 | 0.
|
54 |
-
| 0.
|
|
|
55 |
|
56 |
|
57 |
### Framework versions
|
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
license: mit
|
4 |
+
base_model: roberta-base
|
5 |
tags:
|
6 |
- generated_from_trainer
|
7 |
model-index:
|
8 |
+
- name: Imagination_continuous
|
9 |
results: []
|
10 |
---
|
11 |
|
12 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
13 |
should probably proofread and complete it, then remove this comment. -->
|
14 |
|
15 |
+
# Imagination_continuous
|
16 |
|
17 |
+
This model is a fine-tuned version of [roberta-base](https://huggingface.co/roberta-base) on the None dataset.
|
18 |
It achieves the following results on the evaluation set:
|
19 |
+
- Loss: 0.0494
|
20 |
+
- Rmse: 0.2222
|
21 |
+
- Mae: 0.1787
|
22 |
+
- Corr: 0.2370
|
23 |
|
24 |
## Model description
|
25 |
|
|
|
44 |
- seed: 42
|
45 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
46 |
- lr_scheduler_type: linear
|
47 |
+
- num_epochs: 3
|
48 |
|
49 |
### Training results
|
50 |
|
51 |
| Training Loss | Epoch | Step | Validation Loss | Rmse | Mae | Corr |
|
52 |
|:-------------:|:-----:|:----:|:---------------:|:------:|:------:|:------:|
|
53 |
+
| No log | 1.0 | 268 | 0.0493 | 0.2220 | 0.1798 | 0.2245 |
|
54 |
+
| 0.0573 | 2.0 | 536 | 0.0496 | 0.2226 | 0.1807 | 0.2233 |
|
55 |
+
| 0.0573 | 3.0 | 804 | 0.0494 | 0.2222 | 0.1787 | 0.2370 |
|
56 |
|
57 |
|
58 |
### Framework versions
|
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "roberta-
|
3 |
"architectures": [
|
4 |
"RobertaForSequenceClassification"
|
5 |
],
|
@@ -9,20 +9,20 @@
|
|
9 |
"eos_token_id": 2,
|
10 |
"hidden_act": "gelu",
|
11 |
"hidden_dropout_prob": 0.1,
|
12 |
-
"hidden_size":
|
13 |
"id2label": {
|
14 |
"0": "LABEL_0"
|
15 |
},
|
16 |
"initializer_range": 0.02,
|
17 |
-
"intermediate_size":
|
18 |
"label2id": {
|
19 |
"LABEL_0": 0
|
20 |
},
|
21 |
"layer_norm_eps": 1e-05,
|
22 |
"max_position_embeddings": 514,
|
23 |
"model_type": "roberta",
|
24 |
-
"num_attention_heads":
|
25 |
-
"num_hidden_layers":
|
26 |
"pad_token_id": 1,
|
27 |
"position_embedding_type": "absolute",
|
28 |
"problem_type": "regression",
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "roberta-base",
|
3 |
"architectures": [
|
4 |
"RobertaForSequenceClassification"
|
5 |
],
|
|
|
9 |
"eos_token_id": 2,
|
10 |
"hidden_act": "gelu",
|
11 |
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 768,
|
13 |
"id2label": {
|
14 |
"0": "LABEL_0"
|
15 |
},
|
16 |
"initializer_range": 0.02,
|
17 |
+
"intermediate_size": 3072,
|
18 |
"label2id": {
|
19 |
"LABEL_0": 0
|
20 |
},
|
21 |
"layer_norm_eps": 1e-05,
|
22 |
"max_position_embeddings": 514,
|
23 |
"model_type": "roberta",
|
24 |
+
"num_attention_heads": 12,
|
25 |
+
"num_hidden_layers": 12,
|
26 |
"pad_token_id": 1,
|
27 |
"position_embedding_type": "absolute",
|
28 |
"problem_type": "regression",
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5cd74102a62a98e4c932866d356ba829b222bff963ed1a07f172a9a7cfaef76f
|
3 |
+
size 498609748
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4783
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:084852647ff5066697183ca0ae31d460e431179ff83c65cba8752544e84d1c2b
|
3 |
size 4783
|