Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ h1 {
|
|
33 |
}
|
34 |
"""
|
35 |
|
36 |
-
|
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
|
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 |
|