upload 3 files
Browse files- generation_config.json +9 -0
- special_tokens_map.json +6 -0
- tokenizer_config.json +6 -0
generation_config.json
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"max_new_tokens": 512,
|
3 |
+
"temperature": 0.7,
|
4 |
+
"top_p": 0.9,
|
5 |
+
"top_k": 50,
|
6 |
+
"do_sample": true,
|
7 |
+
"eos_token_id": 2,
|
8 |
+
"pad_token_id": 0
|
9 |
+
}
|
special_tokens_map.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"eos_token": "</s>",
|
4 |
+
"unk_token": "<unk>",
|
5 |
+
"pad_token": "<pad>"
|
6 |
+
}
|
tokenizer_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_max_length": 8192,
|
3 |
+
"tokenizer_class": "GemmaTokenizer",
|
4 |
+
"padding_side": "right",
|
5 |
+
"truncation_side": "right"
|
6 |
+
}
|