Commit
·
823b045
1
Parent(s):
8614aa9
Refactor dataset migration tool for GitHub and Kaggle datasets
Browse files
app.py
CHANGED
@@ -176,6 +176,11 @@ Some of the benefits of hosting datasets on the Hugging Face Datasets Hub are:
|
|
176 |
|
177 |
<br>
|
178 |
This app will help you migrate datasets currently hosted on GitHub or Kaggle to the Hugging Face Datasets Hub.
|
|
|
|
|
|
|
|
|
|
|
179 |
"""
|
180 |
|
181 |
with gr.Blocks(theme=gr.themes.Base()) as demo:
|
@@ -184,6 +189,8 @@ with gr.Blocks(theme=gr.themes.Base()) as demo:
|
|
184 |
<center><i> ✨ Migrate datasets to Hugging Face Hub in a few steps ✨</i></center>"""
|
185 |
)
|
186 |
|
|
|
|
|
187 |
with gr.Row():
|
188 |
gr.LoginButton(size="sm")
|
189 |
|
|
|
176 |
|
177 |
<br>
|
178 |
This app will help you migrate datasets currently hosted on GitHub or Kaggle to the Hugging Face Datasets Hub.
|
179 |
+
|
180 |
+
Make sure you consider the license of the dataset when migrating it to the Hugging Face Datasets Hub 🤗.
|
181 |
+
<br>
|
182 |
+
<br>
|
183 |
+
<i>Note: the Kaggle implementation is experimental and may not work for all datasets. Feel free to open a PR to improve it!</i>
|
184 |
"""
|
185 |
|
186 |
with gr.Blocks(theme=gr.themes.Base()) as demo:
|
|
|
189 |
<center><i> ✨ Migrate datasets to Hugging Face Hub in a few steps ✨</i></center>"""
|
190 |
)
|
191 |
|
192 |
+
gr.HTML(html_text_app_description)
|
193 |
+
|
194 |
with gr.Row():
|
195 |
gr.LoginButton(size="sm")
|
196 |
|