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

Model: acharkq/MoLlama
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-24 10:29:16 +08:00
commit b84ff92028
8 changed files with 3363 additions and 0 deletions

8
README.md Normal file
View File

@@ -0,0 +1,8 @@
Load the model and the tokenizer with the following script:
```python
llm = LlamaForCausalLM.from_pretrained('acharkq/MoLlama')
tokenizer = AutoTokenizer.from_pretrained('acharkq/MoLlama')
tokenizer.add_bos_token = True
tokenizer.add_eos_token = True
```