davanstrien HF staff commited on
Commit
8614aa9
·
1 Parent(s): 9d24b08

Refactor dataset migration tool for GitHub and Kaggle datasets

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -163,17 +163,19 @@ def push_kaggle_to_hf(
163
 
164
 
165
  html_text_app_description = """
166
- Whilst GitHub is great for hosting code the Hugging Face Datasets Hub is a better place to host datasets.
167
  Some of the benefits of hosting datasets on the Hugging Face Datasets Hub are:
168
  <br>
169
  <ul>
170
  <li>Hosting for large datasets</li>
171
  <li>An interactive preview of your dataset</li>
172
  <li>Access to the dataset via many tools and libraries including; datasets, pandas, polars, dask and DuckDB</li>
 
 
173
  </ul>
174
 
175
  <br>
176
- This app will help you migrate a dataset currently hosted on GitHub to the Hugging Face Datasets Hub.
177
  """
178
 
179
  with gr.Blocks(theme=gr.themes.Base()) as demo:
 
163
 
164
 
165
  html_text_app_description = """
166
+ While GitHub and Kaggle are great platforms, the Hugging Face Datasets Hub is a better place to host and share datasets.
167
  Some of the benefits of hosting datasets on the Hugging Face Datasets Hub are:
168
  <br>
169
  <ul>
170
  <li>Hosting for large datasets</li>
171
  <li>An interactive preview of your dataset</li>
172
  <li>Access to the dataset via many tools and libraries including; datasets, pandas, polars, dask and DuckDB</li>
173
+ <li>Seamless integration with machine learning workflows</li>
174
+ <li>Version control and dataset versioning</li>
175
  </ul>
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: