Commit
·
4b3754b
1
Parent(s):
1990ffe
fix file name
Browse files
app.py
CHANGED
|
@@ -26,6 +26,7 @@ class MyModel:
|
|
| 26 |
if model != self.current_model or self.current_model is None:
|
| 27 |
client = Llama.from_pretrained(
|
| 28 |
repo_id="lab2-as/lora_model_gguf",
|
|
|
|
| 29 |
n_ctx=2048, # n_ctx should be increased to accommodate the image embedding
|
| 30 |
)
|
| 31 |
|
|
|
|
| 26 |
if model != self.current_model or self.current_model is None:
|
| 27 |
client = Llama.from_pretrained(
|
| 28 |
repo_id="lab2-as/lora_model_gguf",
|
| 29 |
+
filename='*Q4_K_M.gguf',
|
| 30 |
n_ctx=2048, # n_ctx should be increased to accommodate the image embedding
|
| 31 |
)
|
| 32 |
|