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

Model: hongzoh/Yi-6B_Open-Platypus-v2
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-12 20:41:22 +08:00
commit 63513360ae
14 changed files with 174922 additions and 0 deletions

28
README.md Normal file
View File

@@ -0,0 +1,28 @@
---
license: apache-2.0
datasets:
- garage-bAInd/Open-Platypus
language:
- en
---
## Base Model
- 01-ai/Yi-6B
## Train Dataset
- garage-bAInd/Open-Platypus
- format
```
"<s>[INST]" + "instruction" + " [/INST] " + 'output' + " </s>"
```
## Usage
```
from transformers import AutoConfig, AutoModel, AutoTokenizer
model_name = 'hongzoh/Yi-6B_Open-Platypus-v2'
config = AutoConfig.from_pretrained("model_name")
model = AutoModel.from_pretrained("model_name")
tokenizer = AutoTokenizer.from_pretrained("model_name")
```