End of training
Browse files- .gitignore +1 -0
- config.json +28 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +17 -0
- tokenizer.json +0 -0
- tokenizer_config.json +7 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"RetNetModelWithLMHead"
|
4 |
+
],
|
5 |
+
"chunk_size": 512,
|
6 |
+
"eos_token_id": 11,
|
7 |
+
"ffn_proj_size": 256,
|
8 |
+
"forward_impl": "parallel",
|
9 |
+
"hidden_size": 128,
|
10 |
+
"initializer_range": 0.02,
|
11 |
+
"is_decoder": true,
|
12 |
+
"model_type": "retnet",
|
13 |
+
"num_heads": 4,
|
14 |
+
"num_layers": 8,
|
15 |
+
"output_retentions": false,
|
16 |
+
"pad_token_id": 11,
|
17 |
+
"qk_dim": 128,
|
18 |
+
"torch_dtype": "float32",
|
19 |
+
"transformers_version": "4.31.0",
|
20 |
+
"unk_token_id": 11,
|
21 |
+
"use_bias_in_mlp": true,
|
22 |
+
"use_bias_in_msr": false,
|
23 |
+
"use_bias_in_msr_out": false,
|
24 |
+
"use_cache": true,
|
25 |
+
"use_default_gamma": false,
|
26 |
+
"v_dim": 256,
|
27 |
+
"vocab_size": 65024
|
28 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1351004897498a9e2b8e58541767d6d33de0502ac4582593d467ec8e31868d77
|
3 |
+
size 39647857
|
special_tokens_map.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
">>TITLE<<",
|
4 |
+
">>ABSTRACT<<",
|
5 |
+
">>INTRODUCTION<<",
|
6 |
+
">>SUMMARY<<",
|
7 |
+
">>COMMENT<<",
|
8 |
+
">>ANSWER<<",
|
9 |
+
">>QUESTION<<",
|
10 |
+
">>DOMAIN<<",
|
11 |
+
">>PREFIX<<",
|
12 |
+
">>SUFFIX<<",
|
13 |
+
">>MIDDLE<<"
|
14 |
+
],
|
15 |
+
"eos_token": "<|endoftext|>",
|
16 |
+
"pad_token": "<|endoftext|>"
|
17 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"clean_up_tokenization_spaces": true,
|
4 |
+
"eos_token": "<|endoftext|>",
|
5 |
+
"model_max_length": 2048,
|
6 |
+
"tokenizer_class": "PreTrainedTokenizerFast"
|
7 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7632d00339ab0dff50122233e40a212bc5c4f14f7e6d252e6267de81f253820a
|
3 |
+
size 3963
|