We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, in your readme.md file for data-generate, it mentions: bash run.sh YOUR_SAVEDIR Where is the run.sh located?
bash run.sh YOUR_SAVEDIR
The text was updated successfully, but these errors were encountered:
OUTPUT_SCENES_DIR=$1 mkdir $OUTPUT_SCENES_DIR for seed in `seq 1 1`; do python create_physics_scenes.py \ --output $OUTPUT_SCENES_DIR \ --seed $seed \ --default-fluid \ --default-box \ --default-viscosity \ --default-density \ --default-vel \ --obj2volume_scale 1.0 done dirs=`ls $OUTPUT_SCENES_DIR` for dir in $dirs; do mkdir $OUTPUT_SCENES_DIR/$dir/mesh python create_surface_meshes.py \ --input_glob "$OUTPUT_SCENES_DIR/$dir/output/fluid*.npz" \ --outdir $OUTPUT_SCENES_DIR/$dir/mesh/ done
Sorry, something went wrong.
FYI
Thanks!
No branches or pull requests
Hello, in your readme.md file for data-generate, it mentions:
bash run.sh YOUR_SAVEDIR
Where is the run.sh located?
The text was updated successfully, but these errors were encountered: