File size: 682 Bytes
6659b40 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# #!/bin/bash
# git clone https://github.com/davanstrien/awesome-synthetic-datasets
# # Check if /data directory is accessible
# if [ -d "/data" ]; then
# echo "/data directory is available."
# # Copying notebooks to /data directory
# # Ensure that the source path is correctly specified where your Jupyter notebooks are located
# cp -r awesome-synthetic-datasets/* /data/
# # Alternatively, if you want to move the notebooks uncomment the following line and comment out the cp line above
# # mv /path/to/notebooks/* /data/
# echo "Notebooks have been successfully copied to /data."
# else
# echo "Error: /data directory does not exist."
# fi |