dask_test / README.md
asoria's picture
asoria HF staff
Create README.md
211115d verified
|
raw
history blame contribute delete
No virus
313 Bytes
This is a test on how to upload a dataset using dask:
```python
import dask.dataframe as dd
# First read from another repo or create your dataframe
df = dd.read_parquet("hf://datasets/asoria/columns_test@~parquet/**/*.parquet")
# And finally, push to HF repo
df.to_parquet('hf://datasets/asoria/dask_test')
```