Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
edbeeching
commited on
Commit
•
5cb1426
1
Parent(s):
a095268
fixes mixup with 8bit eval and private
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ def is_model_on_hub(model_name, revision) -> bool:
|
|
115 |
|
116 |
|
117 |
|
118 |
-
def add_new_eval(model:str, base_model : str, revision:str,
|
119 |
# check the model actually exists before adding the eval
|
120 |
if revision == "":
|
121 |
revision = "main"
|
|
|
115 |
|
116 |
|
117 |
|
118 |
+
def add_new_eval(model:str, base_model : str, revision:str, is_8_bit_eval: bool, private:bool, is_delta_weight:bool):
|
119 |
# check the model actually exists before adding the eval
|
120 |
if revision == "":
|
121 |
revision = "main"
|