README
Browse files
README.md
CHANGED
@@ -14,4 +14,15 @@ base_model:
|
|
14 |
- meta-llama/Meta-Llama-3-8B
|
15 |
---
|
16 |
## Model Introduction
|
17 |
-
These models are based on the audio training of Theresa from Arknights
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
- meta-llama/Meta-Llama-3-8B
|
15 |
---
|
16 |
## Model Introduction
|
17 |
+
These models are based on the audio training of Theresa from Arknights
|
18 |
+
## Chat
|
19 |
+
```python
|
20 |
+
import transformers
|
21 |
+
import torch
|
22 |
+
|
23 |
+
ver = "ver0.2"
|
24 |
+
model_id = "None1145/Llama-3-8B-Theresa/{ver}"
|
25 |
+
|
26 |
+
pipeline = transformers.pipeline(
|
27 |
+
pipeline("你好")
|
28 |
+
```
|