初始化项目,由ModelHub XC社区提供模型

Model: YoAbriel/KodaLite-1.3B
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-01 07:39:36 +08:00
commit 9052cb9d67
8 changed files with 250643 additions and 0 deletions

13
tokenizer_config.json Normal file
View File

@@ -0,0 +1,13 @@
{
"add_prefix_space": false,
"backend": "tokenizers",
"bos_token": "<|endoftext|>",
"eos_token": "<|endoftext|>",
"errors": "replace",
"is_local": false,
"model_max_length": 1024,
"pad_token": "<|endoftext|>",
"tokenizer_class": "GPT2Tokenizer",
"unk_token": "<|endoftext|>",
"chat_template": "{% for m in messages %}{% if m['role'] == 'user' %}<|user|>\n{{ m['content'] }}\n<|assistant|>\n{% elif m['role'] == 'assistant' %}{{ m['content'] }}\n<|end|>{% endif %}{% endfor %}"
}