use gemma 3 1b
Browse files
app.py
CHANGED
@@ -2,10 +2,10 @@ import re
|
|
2 |
import gradio as gr
|
3 |
from llama_cpp import Llama
|
4 |
|
5 |
-
model = "
|
6 |
llm = Llama.from_pretrained(
|
7 |
repo_id=model,
|
8 |
-
filename="
|
9 |
verbose=True,
|
10 |
use_mmap=True,
|
11 |
use_mlock=True,
|
|
|
2 |
import gradio as gr
|
3 |
from llama_cpp import Llama
|
4 |
|
5 |
+
model = "ggml-org/gemma-3-1b-it-GGUF"
|
6 |
llm = Llama.from_pretrained(
|
7 |
repo_id=model,
|
8 |
+
filename="gemma-3-1b-it-Q8_0.gguf",
|
9 |
verbose=True,
|
10 |
use_mmap=True,
|
11 |
use_mlock=True,
|