Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
---
|
|
|
|
|
2 |
library_name: transformers
|
3 |
tags:
|
4 |
- 4-bit
|
@@ -6,10 +8,33 @@ tags:
|
|
6 |
- text-generation
|
7 |
- autotrain_compatible
|
8 |
- endpoints_compatible
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
pipeline_tag: text-generation
|
10 |
inference: false
|
11 |
quantized_by: Suparious
|
12 |
---
|
13 |
-
#
|
14 |
|
15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
library_name: transformers
|
5 |
tags:
|
6 |
- 4-bit
|
|
|
8 |
- text-generation
|
9 |
- autotrain_compatible
|
10 |
- endpoints_compatible
|
11 |
+
- facebook
|
12 |
+
- meta
|
13 |
+
- pytorch
|
14 |
+
- llama
|
15 |
+
- llama-3
|
16 |
+
license: llama2
|
17 |
pipeline_tag: text-generation
|
18 |
inference: false
|
19 |
quantized_by: Suparious
|
20 |
---
|
21 |
+
# senseable/Trillama-8B AWQ
|
22 |
|
23 |
+
- Model creator: [senseable](https://huggingface.co/senseable)
|
24 |
+
- Original model: [Trillama-8B](https://huggingface.co/senseable/Trillama-8B)
|
25 |
+
|
26 |
+
## Model Summary
|
27 |
+
|
28 |
+
Trillama-8B is a 8B LLM that builds upon the foundation of Llama-3-8B, the lastest model from Meta. It's a fine-tune focused on improving the model's already strong logic and reasoning.
|
29 |
+
|
30 |
+
```
|
31 |
+
import transformers
|
32 |
+
import torch
|
33 |
+
|
34 |
+
model_id = "senseable/Trillama-8B"
|
35 |
+
|
36 |
+
pipeline = transformers.pipeline(
|
37 |
+
"text-generation", model=model_id, model_kwargs={"torch_dtype": torch.bfloat16}, device_map="auto"
|
38 |
+
)
|
39 |
+
pipeline("Explain the meaning of life.")
|
40 |
+
```
|