Upload README.md
Browse files
README.md
CHANGED
@@ -176,7 +176,7 @@ CT_METAL=1 pip install ctransformers>=0.2.24 --no-binary ctransformers
|
|
176 |
from ctransformers import AutoModelForCausalLM
|
177 |
|
178 |
# Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
|
179 |
-
llm = AutoModelForCausalLM.from_pretrained("TheBloke/Chronohermes-Grad-L2-13B-
|
180 |
|
181 |
print(llm("AI is going to"))
|
182 |
```
|
|
|
176 |
from ctransformers import AutoModelForCausalLM
|
177 |
|
178 |
# Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system.
|
179 |
+
llm = AutoModelForCausalLM.from_pretrained("TheBloke/Chronohermes-Grad-L2-13B-GGUF", model_file="chronohermes-grad-l2-13b.q4_K_M.gguf", model_type="llama", gpu_layers=50)
|
180 |
|
181 |
print(llm("AI is going to"))
|
182 |
```
|