Spaces:
Paused
Paused
Update finetune.py
Browse files- finetune.py +13 -15
finetune.py
CHANGED
|
@@ -180,21 +180,19 @@ def train(input_text):
|
|
| 180 |
repo.push_to_hub(OUTPUT_DIR, commit_message="Ft model")
|
| 181 |
|
| 182 |
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
| 191 |
-
|
| 192 |
-
|
| 193 |
-
|
| 194 |
-
|
| 195 |
-
|
| 196 |
-
# iface.launch(share=True)
|
| 197 |
-
train("Oi")
|
| 198 |
|
| 199 |
|
| 200 |
|
|
|
|
| 180 |
repo.push_to_hub(OUTPUT_DIR, commit_message="Ft model")
|
| 181 |
|
| 182 |
|
| 183 |
+
iface = gr.Interface(
|
| 184 |
+
fn=train,
|
| 185 |
+
inputs=gr.inputs.Textbox(label="Input text"),
|
| 186 |
+
outputs=gr.outputs.Textbox(label="Output length"),
|
| 187 |
+
title="Training Interface",
|
| 188 |
+
description="Enter some text and click the button to start training.",
|
| 189 |
+
theme="default",
|
| 190 |
+
layout="vertical",
|
| 191 |
+
allow_flagging=False,
|
| 192 |
+
allow_screenshot=False
|
| 193 |
+
)
|
| 194 |
+
iface.launch(share=True)
|
| 195 |
+
|
|
|
|
|
|
|
| 196 |
|
| 197 |
|
| 198 |
|