Spaces:
Runtime error
Runtime error
Commit
·
2afc358
1
Parent(s):
eb2fcc1
Correct misspelling 2
Browse files
app.py
CHANGED
|
@@ -430,7 +430,7 @@ with gr.Blocks(title="Preuve de concept", theme=my_theme) as demo:
|
|
| 430 |
with gr.Tab("Distribution"):
|
| 431 |
gr.Markdown("## Distribution des classes Cityscapes")
|
| 432 |
gr.Markdown(
|
| 433 |
-
"###
|
| 434 |
)
|
| 435 |
eda_image_input = gr.Dropdown(
|
| 436 |
choices=image_list,
|
|
@@ -452,7 +452,7 @@ with gr.Blocks(title="Preuve de concept", theme=my_theme) as demo:
|
|
| 452 |
)
|
| 453 |
|
| 454 |
with gr.Tab("Data Augmentation"):
|
| 455 |
-
gr.Markdown("## Visualisation de l'augmentation
|
| 456 |
gr.Markdown(
|
| 457 |
"### Sélectionnez une ou plusieurs augmentations pour l'appliquer à l'image."
|
| 458 |
)
|
|
@@ -494,9 +494,9 @@ with gr.Blocks(title="Preuve de concept", theme=my_theme) as demo:
|
|
| 494 |
)
|
| 495 |
|
| 496 |
with gr.Tab("Prédictions"):
|
| 497 |
-
gr.Markdown("## Comparaison de
|
| 498 |
gr.Markdown(
|
| 499 |
-
"### Sélectionnez une image pour voir la comparaison entre le masque réel, la prédiction FPN (pré-enregistré) et la prédiction
|
| 500 |
)
|
| 501 |
|
| 502 |
image_input = gr.Dropdown(choices=image_list, label="Sélectionnez une image")
|
|
|
|
| 430 |
with gr.Tab("Distribution"):
|
| 431 |
gr.Markdown("## Distribution des classes Cityscapes")
|
| 432 |
gr.Markdown(
|
| 433 |
+
"### Visualisation de la distribution de chaque classe selon l'image choisie."
|
| 434 |
)
|
| 435 |
eda_image_input = gr.Dropdown(
|
| 436 |
choices=image_list,
|
|
|
|
| 452 |
)
|
| 453 |
|
| 454 |
with gr.Tab("Data Augmentation"):
|
| 455 |
+
gr.Markdown("## Visualisation de l'augmentation des données")
|
| 456 |
gr.Markdown(
|
| 457 |
"### Sélectionnez une ou plusieurs augmentations pour l'appliquer à l'image."
|
| 458 |
)
|
|
|
|
| 494 |
)
|
| 495 |
|
| 496 |
with gr.Tab("Prédictions"):
|
| 497 |
+
gr.Markdown("## Comparaison de segmentations d'images Cityscapes")
|
| 498 |
gr.Markdown(
|
| 499 |
+
"### Sélectionnez une image pour voir la comparaison entre le masque réel, la prédiction FPN (pré-enregistré) et la prédiction du modèle SegFormer."
|
| 500 |
)
|
| 501 |
|
| 502 |
image_input = gr.Dropdown(choices=image_list, label="Sélectionnez une image")
|