Spaces:
Runtime error
Runtime error
zetavg
commited on
Commit
•
1e27707
1
Parent(s):
cff173a
fix some js errors
Browse files
llama_lora/ui/finetune/script.js
CHANGED
@@ -197,4 +197,6 @@ function finetune_ui_blocks_js() {
|
|
197 |
handle_training_indicator_change();
|
198 |
}, 500);
|
199 |
}, 0);
|
|
|
|
|
200 |
}
|
|
|
197 |
handle_training_indicator_change();
|
198 |
}, 500);
|
199 |
}, 0);
|
200 |
+
|
201 |
+
return [];
|
202 |
}
|
llama_lora/ui/inference_ui.py
CHANGED
@@ -896,5 +896,7 @@ def inference_ui():
|
|
896 |
attributeFilter: ['rows'],
|
897 |
});
|
898 |
}, 100);
|
|
|
|
|
899 |
}
|
900 |
""")
|
|
|
896 |
attributeFilter: ['rows'],
|
897 |
});
|
898 |
}, 100);
|
899 |
+
|
900 |
+
return [];
|
901 |
}
|
902 |
""")
|
llama_lora/ui/main_page.py
CHANGED
@@ -161,6 +161,7 @@ def main_page():
|
|
161 |
}
|
162 |
}, 3200);
|
163 |
""" + """
|
|
|
164 |
}
|
165 |
""")
|
166 |
|
|
|
161 |
}
|
162 |
}, 3200);
|
163 |
""" + """
|
164 |
+
return [];
|
165 |
}
|
166 |
""")
|
167 |
|
llama_lora/ui/tokenizer_ui.py
CHANGED
@@ -84,6 +84,7 @@ def tokenizer_ui():
|
|
84 |
|
85 |
tokenizer_ui_blocks.load(_js="""
|
86 |
function tokenizer_ui_blocks_js() {
|
|
|
87 |
}
|
88 |
""")
|
89 |
|
|
|
84 |
|
85 |
tokenizer_ui_blocks.load(_js="""
|
86 |
function tokenizer_ui_blocks_js() {
|
87 |
+
return [];
|
88 |
}
|
89 |
""")
|
90 |
|