Olament / DeepMushroom-docker

Docker container of DeepMushroom
5 stars 1 forks source link

Document Model Training #1

Open SubjectiveScientist opened 4 years ago

SubjectiveScientist commented 4 years ago

How is the PyTorch model trained? What parameters are used (especially regularization)?

The README suggests that the DeepMushroom repo is used, however that is fast.ai- rather than pytorch-based, and the export to file is not clear from the other repo.

Olament commented 4 years ago

Sorry for the confusion. I have not pushed my actual PyTorch model to the Github yet. I am still experimenting with new parameters and thats why the model is not there. I will upload the code once I finished experiment but I do not have an ETA for that.

For regularization techniques, I have dropout (with p=0.5) at my FC layer, which I think is bascially the default setting for fully connected layer. Except that, I do not use other regularization techniques. From my personal experience, it is hard to overfit DCNNs and my model is sightly underfitting.