Spaces:
Runtime error
Runtime error
Leire Aguirre
commited on
Commit
Β·
a2e3605
1
Parent(s):
fd2f716
update button variants
Browse files
src/synthetic_dataset_generator/apps/eval.py
CHANGED
|
@@ -667,7 +667,7 @@ with gr.Blocks() as app:
|
|
| 667 |
outputs=[eval_type],
|
| 668 |
)
|
| 669 |
btn_apply_to_sample_dataset = gr.Button(
|
| 670 |
-
"Refresh dataset", variant="
|
| 671 |
)
|
| 672 |
with gr.Column(scale=3):
|
| 673 |
dataframe = gr.Dataframe(
|
|
|
|
| 667 |
outputs=[eval_type],
|
| 668 |
)
|
| 669 |
btn_apply_to_sample_dataset = gr.Button(
|
| 670 |
+
"Refresh dataset", variant="primary"
|
| 671 |
)
|
| 672 |
with gr.Column(scale=3):
|
| 673 |
dataframe = gr.Dataframe(
|
src/synthetic_dataset_generator/apps/sft.py
CHANGED
|
@@ -404,7 +404,7 @@ with gr.Blocks() as app:
|
|
| 404 |
info="Choose between 1 (single turn with 'instruction-response' columns) and 2-4 (multi-turn conversation with a 'messages' column).",
|
| 405 |
)
|
| 406 |
btn_apply_to_sample_dataset = gr.Button(
|
| 407 |
-
"Refresh dataset", variant="
|
| 408 |
)
|
| 409 |
with gr.Column(scale=3):
|
| 410 |
dataframe = gr.Dataframe(
|
|
|
|
| 404 |
info="Choose between 1 (single turn with 'instruction-response' columns) and 2-4 (multi-turn conversation with a 'messages' column).",
|
| 405 |
)
|
| 406 |
btn_apply_to_sample_dataset = gr.Button(
|
| 407 |
+
"Refresh dataset", variant="primary"
|
| 408 |
)
|
| 409 |
with gr.Column(scale=3):
|
| 410 |
dataframe = gr.Dataframe(
|
src/synthetic_dataset_generator/apps/textcat.py
CHANGED
|
@@ -416,7 +416,7 @@ with gr.Blocks() as app:
|
|
| 416 |
interactive=True,
|
| 417 |
)
|
| 418 |
btn_apply_to_sample_dataset = gr.Button(
|
| 419 |
-
"Refresh dataset", variant="
|
| 420 |
)
|
| 421 |
with gr.Column(scale=3):
|
| 422 |
dataframe = gr.Dataframe(
|
|
|
|
| 416 |
interactive=True,
|
| 417 |
)
|
| 418 |
btn_apply_to_sample_dataset = gr.Button(
|
| 419 |
+
"Refresh dataset", variant="primary"
|
| 420 |
)
|
| 421 |
with gr.Column(scale=3):
|
| 422 |
dataframe = gr.Dataframe(
|