iman37 commited on
Commit
cc7c86a
·
verified ·
1 Parent(s): 88e8a85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,9 +6,9 @@ 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/Qwen-7B")
10
  model = AutoModelForCausalLM.from_pretrained(
11
- "Qwen/Qwen-7B",
12
  load_in_4bit=True,
13
  device_map="auto",
14
  quantization_config=bnb.QuantizationConfig(
 
6
  # Load the model and tokenizer with 4-bit quantization
7
  @st.cache_resource
8
  def load_model():
9
+ tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2-7B")
10
  model = AutoModelForCausalLM.from_pretrained(
11
+ "Qwen/Qwen2-7B",
12
  load_in_4bit=True,
13
  device_map="auto",
14
  quantization_config=bnb.QuantizationConfig(