epsil commited on
Commit
2ddb85b
·
verified ·
1 Parent(s): 213aa15

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
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
+ ```