File size: 313 Bytes
211115d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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')
```