|
--- |
|
license: llama3 |
|
datasets: |
|
- None1145/Theresa |
|
library_name: transformers |
|
tags: |
|
- Theresa |
|
- Arknights |
|
- 特蕾西娅 |
|
- 魔王 |
|
- Llama3 |
|
- Llama |
|
- 明日方舟 |
|
base_model: |
|
- meta-llama/Meta-Llama-3-8B |
|
pipeline_tag: text-generation |
|
--- |
|
## Model Introduction |
|
These models are based on the text training of Theresa from Arknights |
|
## Chat |
|
```python |
|
import transformers |
|
import torch |
|
|
|
ver = "ver0.2" |
|
model_id = "None1145/Llama-3-8B-Theresa/{ver}" |
|
|
|
pipeline = transformers.pipeline( |
|
"text-generation", model=model_id, model_kwargs={"torch_dtype": torch.bfloat16}, device_map="auto" |
|
) |
|
pipeline("你好") |
|
``` |