duydatnguyen
commited on
Commit
•
5b086bf
1
Parent(s):
1357013
Training in progress, step 500
Browse files- config.json +56 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- special_tokens_map.json +30 -0
- tokenizer.json +0 -0
- tokenizer_config.json +30 -0
- training_args.bin +3 -0
- vocab.json +0 -0
config.json
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "NlpHUST/gpt-neo-vi-small",
|
3 |
+
"activation_function": "gelu_new",
|
4 |
+
"architectures": [
|
5 |
+
"GPTNeoForCausalLM"
|
6 |
+
],
|
7 |
+
"attention_dropout": 0.15,
|
8 |
+
"attention_layers": [
|
9 |
+
"global",
|
10 |
+
"global",
|
11 |
+
"global",
|
12 |
+
"global",
|
13 |
+
"global",
|
14 |
+
"global",
|
15 |
+
"global",
|
16 |
+
"global",
|
17 |
+
"global",
|
18 |
+
"global",
|
19 |
+
"global",
|
20 |
+
"global"
|
21 |
+
],
|
22 |
+
"attention_types": [
|
23 |
+
[
|
24 |
+
[
|
25 |
+
"global"
|
26 |
+
],
|
27 |
+
12
|
28 |
+
]
|
29 |
+
],
|
30 |
+
"bos_token_id": 0,
|
31 |
+
"classifier_dropout": 0.1,
|
32 |
+
"embed_dropout": 0,
|
33 |
+
"eos_token_id": 0,
|
34 |
+
"gradient_checkpointing": false,
|
35 |
+
"hidden_dropout": 0.15,
|
36 |
+
"hidden_size": 768,
|
37 |
+
"initializer_range": 0.02,
|
38 |
+
"intermediate_size": null,
|
39 |
+
"layer_norm_epsilon": 1e-05,
|
40 |
+
"max_position_embeddings": 1024,
|
41 |
+
"model_type": "gpt_neo",
|
42 |
+
"num_heads": 12,
|
43 |
+
"num_layers": 12,
|
44 |
+
"pad_token_id": 1,
|
45 |
+
"resid_dropout": 0,
|
46 |
+
"summary_activation": null,
|
47 |
+
"summary_first_dropout": 0.1,
|
48 |
+
"summary_proj_to_labels": true,
|
49 |
+
"summary_type": "cls_index",
|
50 |
+
"summary_use_proj": true,
|
51 |
+
"torch_dtype": "float32",
|
52 |
+
"transformers_version": "4.40.0",
|
53 |
+
"use_cache": true,
|
54 |
+
"vocab_size": 62000,
|
55 |
+
"window_size": 256
|
56 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa2156c35b7fcdbe0c5c71c6ea7341fcd6d8e1f30923bf10c15faa1be1b036f8
|
3 |
+
size 533740104
|
special_tokens_map.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<|endoftext|>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": true,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "<|endoftext|>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": true,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": {
|
17 |
+
"content": "<|padding|>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": true,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"unk_token": {
|
24 |
+
"content": "<|endoftext|>",
|
25 |
+
"lstrip": false,
|
26 |
+
"normalized": true,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
}
|
30 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_prefix_space": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"0": {
|
6 |
+
"content": "<|endoftext|>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": true,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<|padding|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": true,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
}
|
21 |
+
},
|
22 |
+
"bos_token": "<|endoftext|>",
|
23 |
+
"clean_up_tokenization_spaces": true,
|
24 |
+
"eos_token": "<|endoftext|>",
|
25 |
+
"errors": "replace",
|
26 |
+
"model_max_length": 1024,
|
27 |
+
"pad_token": "<|padding|>",
|
28 |
+
"tokenizer_class": "GPT2Tokenizer",
|
29 |
+
"unk_token": "<|endoftext|>"
|
30 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ddeb86c2e607a19ed06cc612004e18b627893d5a003b75fd82084dc33e187883
|
3 |
+
size 4984
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|