Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
•
30396d6
1
Parent(s):
235f6a0
update label studio tab message
Browse files
app.py
CHANGED
@@ -175,7 +175,8 @@ with gr.Blocks() as demo:
|
|
175 |
with gr.Tab("Export to Label Studio format"):
|
176 |
gr.Markdown("""
|
177 |
## Export to Label Studio format
|
178 |
-
This will export the current dataset to a csv file
|
|
|
179 |
dataset2 = copy.deepcopy(dataset)
|
180 |
dataset2 = dataset2.remove_columns('image')
|
181 |
dataset2 = dataset2.rename_column("url", "image")
|
|
|
175 |
with gr.Tab("Export to Label Studio format"):
|
176 |
gr.Markdown("""
|
177 |
## Export to Label Studio format
|
178 |
+
This will export the current dataset to a csv file which can be imported into [Label Studio](https://labelstud.io/). You can then import this into Label Studio to label your images by hand.
|
179 |
+
You can run Label Studio using Hugging Face Spaces using this [Spaces template](https://huggingface.co/new-space?template=LabelStudio/LabelStudio)""")
|
180 |
dataset2 = copy.deepcopy(dataset)
|
181 |
dataset2 = dataset2.remove_columns('image')
|
182 |
dataset2 = dataset2.rename_column("url", "image")
|