davanstrien HF staff commited on
Commit
30396d6
1 Parent(s): 235f6a0

update label studio tab message

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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 in Label Studio format. You can then import this into Label Studio to label your images.""")
 
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")