Googlenet on jetson nano

How can I decrese overfitting like Weight Decay ,Early Stopping and Dropout?

Hi,

This is a training stage issue.

Usually, we don’t apply training on the Jetson platform due to some hardware design limitation.
It’s recommended to apply training on our desktop GPU instead.

To solve the over-fitting issue, you can try GooglenetV2 which introduces a batch normalization layer.
Thanks.

I use this web(jetson-inference/pytorch-collect.md at master · dusty-nv/jetson-inference · GitHub) to train googlenet. Sorry, I am not clear to say this problem.Can I adjust googlenet’s program function on train ? Or does this web(jetson-inference/pytorch-collect.md at master · dusty-nv/jetson-inference · GitHub) have the googlenet’s program to adjust googlenet’s program function on train ? I say program function like this.擷取

Hi,

Sorry for the late update.

The tutorial is based on pyTorch frameworks so you can set the training parameter as pyTorch manner.

Ex.

python3 train.py ... --epochs 100 ...

Thanks.