Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- tinyllama
|
4 |
+
---
|
5 |
+
|
6 |
+
|
7 |
+
To run the model run the following code :
|
8 |
+
```
|
9 |
+
!pip install ctransformers[cuda]
|
10 |
+
from ctransformers import AutoModelForCausalLM
|
11 |
+
|
12 |
+
llm = AutoModelForCausalLM.from_pretrained("epsil/Tinyllama-1b-v1.0-gguf", model_file="Tinyllama-1b-v1.0.gguf")
|
13 |
+
|
14 |
+
print(llm("AI is going to"))
|
15 |
+
|
16 |
+
```
|