ranahanocka / MeshCNN

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

Is a validation dataset created from train data? #71

Open claell opened 4 years ago

claell commented 4 years ago

Does this approach use validation data for the test accuracy during training or is that based on the actual test data? That would probably introduce some bias when those results are used to adjust hyperparameters.

ranahanocka commented 4 years ago

You can place a validation split in the "test" folder -- and only run inference on the real test as often as desired

claell commented 4 years ago

Alright, thanks. So out of the box there is no validation split, but it can be used as you described.