Update README.md
Browse files
README.md
CHANGED
@@ -10,9 +10,10 @@ tags:
|
|
10 |
license: apache-2.0
|
11 |
language:
|
12 |
- en
|
|
|
13 |
---
|
14 |
|
15 |
-
#
|
16 |
|
17 |
- **Developed by:** safe049
|
18 |
- **License:** apache-2.0
|
@@ -21,3 +22,48 @@ language:
|
|
21 |
This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
22 |
|
23 |
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
license: apache-2.0
|
11 |
language:
|
12 |
- en
|
13 |
+
- zh
|
14 |
---
|
15 |
|
16 |
+
# TigerStheno
|
17 |
|
18 |
- **Developed by:** safe049
|
19 |
- **License:** apache-2.0
|
|
|
22 |
This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
|
23 |
|
24 |
[<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
|
25 |
+
|
26 |
+
### Model Details
|
27 |
+
**Model Name:** TigerStheno-8B-V3.2
|
28 |
+
**Permalink:** [TigerStheno-8B-V3.2](https://huggingface.co/TigerResearch/TigerStheno-8B-V3.2)
|
29 |
+
**Model Description:**
|
30 |
+
TigerStheno-8B-V3.2 is an AI model based on the Sao10K/L3-8B-Stheno-v3.2 architecture, fine-tuned using the TigerBot dataset. This model is designed to enhance language understanding and generation capabilities, particularly in multi-language and multi-task role-playing scenarios.
|
31 |
+
|
32 |
+
- **Developed by:** safe049
|
33 |
+
- **Shared by:** safe049
|
34 |
+
- **Model type:** Large Language Model
|
35 |
+
- **Language(s) (NLP):** Multi-language support
|
36 |
+
- **License:** Apache 2.0
|
37 |
+
- **Finetuned from model:** Sao10K/L3-8B-Stheno-v3.2
|
38 |
+
|
39 |
+
### Uses
|
40 |
+
**Direct Use:**
|
41 |
+
The model can be directly used for various natural language processing tasks such as role-playing, text generation, summarization, translation, and dialogue systems.
|
42 |
+
|
43 |
+
|
44 |
+
### Bias, Risks
|
45 |
+
- **Bias:** TigerStheno-8B-V3.2 is uncensored and may give any response including illegal,in-moral content.
|
46 |
+
- **Risks:** May generate illegal and in-moral content
|
47 |
+
|
48 |
+
### Using it
|
49 |
+
**GGUF:**
|
50 |
+
Download the gguf file in the repo, and use it in any of these apps and etc:
|
51 |
+
- KoboldCPP
|
52 |
+
- Ollama
|
53 |
+
- LlamaCPP
|
54 |
+
etc.
|
55 |
+
|
56 |
+
**Transformer**
|
57 |
+
Here is a example code snippet to use it with transformer:
|
58 |
+
```python
|
59 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
60 |
+
|
61 |
+
model_name = "TigerResearch/TigerStheno-8B-V3.2"
|
62 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
63 |
+
model = AutoModelForCausalLM.from_pretrained(model_name)
|
64 |
+
|
65 |
+
# Example input
|
66 |
+
inputs = tokenizer("Hello, how are you?", return_tensors="pt")
|
67 |
+
outputs = model.generate(**inputs)
|
68 |
+
print(tokenizer.decode(outputs[0]))
|
69 |
+
```
|