Create config.json
Browse filesBy adding this, it will simplify the usage of this model in ctransformers:
```py
from ctransformers import AutoModelForCausalLM
llm = AutoModelForCausalLM.from_pretrained("TheBloke/LLaMa-13B-GGML")
```
- config.json +3 -0
config.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "llama"
|
3 |
+
}
|