Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,7 +39,8 @@ def main():
|
|
39 |
gr.Markdown("# Instruction Tuning with Unsloth")
|
40 |
|
41 |
##### Model Inputs #####
|
42 |
-
|
|
|
43 |
# Select Model
|
44 |
modelnames = conf['model']['choices']
|
45 |
model_name = gr.Dropdown(label="Supported Models",
|
@@ -67,6 +68,7 @@ def main():
|
|
67 |
dataset_choice,
|
68 |
dataset_upload)
|
69 |
|
|
|
70 |
# Parameters
|
71 |
max_seq_length = gr.Textbox(label="Maximum sequence length",
|
72 |
value=conf['model']['general']["max_seq_length"])
|
@@ -96,6 +98,7 @@ def main():
|
|
96 |
|
97 |
# Setup button
|
98 |
tune_btn = gr.Button("Start Fine Tuning")
|
|
|
99 |
# Text output (for now)
|
100 |
output = gr.Textbox(label="Output")
|
101 |
# Execute button
|
|
|
39 |
gr.Markdown("# Instruction Tuning with Unsloth")
|
40 |
|
41 |
##### Model Inputs #####
|
42 |
+
gr.Markdown("### Model Inputs")
|
43 |
+
|
44 |
# Select Model
|
45 |
modelnames = conf['model']['choices']
|
46 |
model_name = gr.Dropdown(label="Supported Models",
|
|
|
68 |
dataset_choice,
|
69 |
dataset_upload)
|
70 |
|
71 |
+
gr.Markdown("### Model Parameter Selection")
|
72 |
# Parameters
|
73 |
max_seq_length = gr.Textbox(label="Maximum sequence length",
|
74 |
value=conf['model']['general']["max_seq_length"])
|
|
|
98 |
|
99 |
# Setup button
|
100 |
tune_btn = gr.Button("Start Fine Tuning")
|
101 |
+
gr.Markdown("### Model Progress")
|
102 |
# Text output (for now)
|
103 |
output = gr.Textbox(label="Output")
|
104 |
# Execute button
|