ranahanocka / MeshCNN

Convolutional Neural Network for 3D meshes in PyTorch
MIT License
1.61k stars 320 forks source link

run the project under windows #101

Closed Eisorak closed 4 years ago

Eisorak commented 4 years ago

Hi @ranahanocka

I wanted to run your project on a linux virtual machine but I can't because it doesn't recognize my graphic card, so I want to run it on windows but the execution codes are in shell (train.sh, test.sh,...).

Can you offer me a solution please?

thanks

ranahanocka commented 4 years ago

Hi @Eisorak ,

I think Docker is better than a VM.

In any case, the .sh files is just a single python command to run the train/test. So running the python command directly should work in any platform.

Eisorak commented 4 years ago

Hi @ranahanocka

what do you mean by direct execution of the python command, because when I execute the train.py it asks me for the --dataroot,..... can you give me an example of the command to execute on windows please?

Eisorak commented 4 years ago

I managed to solve the problem, it was enough to execute the python command train.py with all the arguments of train.sh on the same line.

thanks