nikravan commited on
Commit
f275cee
1 Parent(s): 5171ca7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -33,7 +33,7 @@ h1 {
33
  }
34
  """
35
 
36
- model=""
37
  tokenizer = AutoTokenizer.from_pretrained(MODEL_ID, trust_remote_code=True)
38
 
39
 
@@ -99,13 +99,15 @@ def mode_load(path):
99
  @spaces.GPU()
100
 
101
  def stream_chat(message, history: list, temperature: float, max_length: int, top_p: float, top_k: int, penalty: float):
102
- if model=="":
103
  model = AutoModelForCausalLM.from_pretrained(
104
  MODEL_ID,
105
  torch_dtype=torch.bfloat16,
106
  low_cpu_mem_usage=True,
107
  trust_remote_code=True
108
  )
 
 
109
 
110
 
111
 
 
33
  }
34
  """
35
 
36
+ flag=False
37
  tokenizer = AutoTokenizer.from_pretrained(MODEL_ID, trust_remote_code=True)
38
 
39
 
 
99
  @spaces.GPU()
100
 
101
  def stream_chat(message, history: list, temperature: float, max_length: int, top_p: float, top_k: int, penalty: float):
102
+ if flag==False:
103
  model = AutoModelForCausalLM.from_pretrained(
104
  MODEL_ID,
105
  torch_dtype=torch.bfloat16,
106
  low_cpu_mem_usage=True,
107
  trust_remote_code=True
108
  )
109
+ model.eval()
110
+ flag=True
111
 
112
 
113