Update app.py
Browse files
app.py
CHANGED
@@ -6,17 +6,12 @@ import torch
|
|
6 |
# Load the model and tokenizer with 4-bit quantization
|
7 |
@st.cache_resource
|
8 |
def load_model():
|
9 |
-
tokenizer = AutoTokenizer.from_pretrained("Qwen/
|
10 |
model = AutoModelForCausalLM.from_pretrained(
|
11 |
-
"Qwen/
|
12 |
load_in_4bit=True,
|
13 |
device_map="auto",
|
14 |
-
|
15 |
-
load_in_4bit=True,
|
16 |
-
bnb_4bit_use_double_quant=True,
|
17 |
-
bnb_4bit_quant_type="nf4",
|
18 |
-
bnb_4bit_compute_dtype=torch.float16
|
19 |
-
)
|
20 |
)
|
21 |
return tokenizer, model
|
22 |
|
|
|
6 |
# Load the model and tokenizer with 4-bit quantization
|
7 |
@st.cache_resource
|
8 |
def load_model():
|
9 |
+
tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen-7B", trust_remote_code=True)
|
10 |
model = AutoModelForCausalLM.from_pretrained(
|
11 |
+
"Qwen/Qwen-7B",
|
12 |
load_in_4bit=True,
|
13 |
device_map="auto",
|
14 |
+
trust_remote_code=True # Allows custom code execution
|
|
|
|
|
|
|
|
|
|
|
15 |
)
|
16 |
return tokenizer, model
|
17 |
|