Spaces:
Build error
Build error
File size: 584 Bytes
e206fc8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# debug training
accelerate launch --config_file acc_configs/gpu1.yaml main.py big --workspace workspace_debug
# training (should use slurm)
accelerate launch --config_file acc_configs/gpu8.yaml main.py big --workspace workspace
# test
python infer.py big --workspace workspace_test --resume workspace/model.safetensors --test_path data_test
# gradio app
python app.py big --resume workspace/model.safetensors
# local gui
python gui.py big --output_size 800 --test_path workspace_test/anya_rgba.ply
# mesh conversion
python convert.py big --test_path workspace_test/anya_rgba.ply |