Your working directory
$ tree
.
├── data
│ ├── X_test.parquet
│ ├── X_train.parquet
│ └── y_train.parquet
├── main.py
├── requirements.txt
└── resources
3 directories, 5 filesLast updated
Once you run the setup commands, the crunch package will download the data and create a folder named after your username on the platform. Here is a snapshot of your working directory folder.
$ tree
.
├── data
│ ├── X_test.parquet
│ ├── X_train.parquet
│ └── y_train.parquet
├── main.py
├── requirements.txt
└── resources
3 directories, 5 filesIf you need to save some files to run your code on the CrunchDAO's servers, like the weights of your model, the tree structure... etc., you have to save them under the resources folder.
Last updated