Training in progress epoch 0
Browse files- README.md +6 -6
- config.json +13 -6
- tf_model.h5 +2 -2
- tokenizer_config.json +7 -0
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
license:
|
3 |
-
base_model:
|
4 |
tags:
|
5 |
- generated_from_keras_callback
|
6 |
model-index:
|
@@ -13,10 +13,10 @@ probably proofread and complete it, then remove this comment. -->
|
|
13 |
|
14 |
# codingfaf/paraSci
|
15 |
|
16 |
-
This model is a fine-tuned version of [
|
17 |
It achieves the following results on the evaluation set:
|
18 |
-
- Train Loss:
|
19 |
-
- Validation Loss: 2.
|
20 |
- Epoch: 0
|
21 |
|
22 |
## Model description
|
@@ -43,7 +43,7 @@ The following hyperparameters were used during training:
|
|
43 |
|
44 |
| Train Loss | Validation Loss | Epoch |
|
45 |
|:----------:|:---------------:|:-----:|
|
46 |
-
|
|
47 |
|
48 |
|
49 |
### Framework versions
|
|
|
1 |
---
|
2 |
+
license: openrail
|
3 |
+
base_model: humarin/chatgpt_paraphraser_on_T5_base
|
4 |
tags:
|
5 |
- generated_from_keras_callback
|
6 |
model-index:
|
|
|
13 |
|
14 |
# codingfaf/paraSci
|
15 |
|
16 |
+
This model is a fine-tuned version of [humarin/chatgpt_paraphraser_on_T5_base](https://huggingface.co/humarin/chatgpt_paraphraser_on_T5_base) on an unknown dataset.
|
17 |
It achieves the following results on the evaluation set:
|
18 |
+
- Train Loss: 2.8070
|
19 |
+
- Validation Loss: 2.2901
|
20 |
- Epoch: 0
|
21 |
|
22 |
## Model description
|
|
|
43 |
|
44 |
| Train Loss | Validation Loss | Epoch |
|
45 |
|:----------:|:---------------:|:-----:|
|
46 |
+
| 2.8070 | 2.2901 | 0 |
|
47 |
|
48 |
|
49 |
### Framework versions
|
config.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"architectures": [
|
4 |
"T5ForConditionalGeneration"
|
5 |
],
|
6 |
"classifier_dropout": 0.0,
|
7 |
-
"d_ff":
|
8 |
"d_kv": 64,
|
9 |
-
"d_model":
|
10 |
"decoder_start_token_id": 0,
|
11 |
"dense_act_fn": "relu",
|
12 |
"dropout_rate": 0.1,
|
@@ -18,14 +18,20 @@
|
|
18 |
"layer_norm_epsilon": 1e-06,
|
19 |
"model_type": "t5",
|
20 |
"n_positions": 512,
|
21 |
-
"num_decoder_layers":
|
22 |
-
"num_heads":
|
23 |
-
"num_layers":
|
24 |
"output_past": true,
|
25 |
"pad_token_id": 0,
|
26 |
"relative_attention_max_distance": 128,
|
27 |
"relative_attention_num_buckets": 32,
|
28 |
"task_specific_params": {
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
"summarization": {
|
30 |
"early_stopping": true,
|
31 |
"length_penalty": 2.0,
|
@@ -54,6 +60,7 @@
|
|
54 |
"prefix": "translate English to Romanian: "
|
55 |
}
|
56 |
},
|
|
|
57 |
"transformers_version": "4.35.2",
|
58 |
"use_cache": true,
|
59 |
"vocab_size": 32128
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "humarin/chatgpt_paraphraser_on_T5_base",
|
3 |
"architectures": [
|
4 |
"T5ForConditionalGeneration"
|
5 |
],
|
6 |
"classifier_dropout": 0.0,
|
7 |
+
"d_ff": 3072,
|
8 |
"d_kv": 64,
|
9 |
+
"d_model": 768,
|
10 |
"decoder_start_token_id": 0,
|
11 |
"dense_act_fn": "relu",
|
12 |
"dropout_rate": 0.1,
|
|
|
18 |
"layer_norm_epsilon": 1e-06,
|
19 |
"model_type": "t5",
|
20 |
"n_positions": 512,
|
21 |
+
"num_decoder_layers": 12,
|
22 |
+
"num_heads": 12,
|
23 |
+
"num_layers": 12,
|
24 |
"output_past": true,
|
25 |
"pad_token_id": 0,
|
26 |
"relative_attention_max_distance": 128,
|
27 |
"relative_attention_num_buckets": 32,
|
28 |
"task_specific_params": {
|
29 |
+
"paraphrase": {
|
30 |
+
"early_stopping": true,
|
31 |
+
"max_length": 128,
|
32 |
+
"num_beams": 5,
|
33 |
+
"prefix": "paraphrase: "
|
34 |
+
},
|
35 |
"summarization": {
|
36 |
"early_stopping": true,
|
37 |
"length_penalty": 2.0,
|
|
|
60 |
"prefix": "translate English to Romanian: "
|
61 |
}
|
62 |
},
|
63 |
+
"torch_dtype": "float32",
|
64 |
"transformers_version": "4.35.2",
|
65 |
"use_cache": true,
|
66 |
"vocab_size": 32128
|
tf_model.h5
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:da8606c5013994a4fa7718a152f73daaed5180a56a62a1a935dab830cb6749c3
|
3 |
+
size 1089544048
|
tokenizer_config.json
CHANGED
@@ -930,8 +930,15 @@
|
|
930 |
"clean_up_tokenization_spaces": true,
|
931 |
"eos_token": "</s>",
|
932 |
"extra_ids": 100,
|
|
|
933 |
"model_max_length": 512,
|
|
|
934 |
"pad_token": "<pad>",
|
|
|
|
|
|
|
935 |
"tokenizer_class": "T5Tokenizer",
|
|
|
|
|
936 |
"unk_token": "<unk>"
|
937 |
}
|
|
|
930 |
"clean_up_tokenization_spaces": true,
|
931 |
"eos_token": "</s>",
|
932 |
"extra_ids": 100,
|
933 |
+
"max_length": 128,
|
934 |
"model_max_length": 512,
|
935 |
+
"pad_to_multiple_of": null,
|
936 |
"pad_token": "<pad>",
|
937 |
+
"pad_token_type_id": 0,
|
938 |
+
"padding_side": "right",
|
939 |
+
"stride": 0,
|
940 |
"tokenizer_class": "T5Tokenizer",
|
941 |
+
"truncation_side": "right",
|
942 |
+
"truncation_strategy": "longest_first",
|
943 |
"unk_token": "<unk>"
|
944 |
}
|