This version upgrades the unit icosphere resolution from 10,242 vertices to 655,362 vertices.

You will need to use `datagen_multi_proc` to train the dataset in a reasonable time period.
- Run make; you can add -Ofast if you like but I didn't because it's a one time process and I wanted it to be the best quality possible, probably makes no difference and the speed benefit of -Ofast is probably worth the trade-off.
- Once compiled run `process.sh` and wait for all the threads to end
- If no "WARNING_FLAGGED_ERROR.TXT" file was generated, you can now run `cat.sh` to produce the final dataset file.
- If a "WARNING_FLAGGED_ERROR.TXT" file was generated you need to delete the xp and yp folders and start again.

TODO: Improve process.sh with:
for ((i=0; i < "$nproc"; i++)); do for ((x = i; x < ${#files[@]}; x = x + "$nproc")); do
done & done  