-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The hyperparameter for xception on voc data set #7
Comments
@liricky |
----------------------------------------Written by Yude Wang----------------------------------------import torch config_dict = {
} config_dict['ROOT_DIR'] = os.path.abspath(os.path.join(os.path.dirname("file"),'..','..')) sys.path.insert(0, os.path.join(config_dict['ROOT_DIR'], 'lib')) This is the config.py file, I have not modified your structure yet. But I have already modified your dataloader to my local data path, and it works well on my resnet101 backbone network. So what should I do to the config.py file or what should I do to your network part to use the xception as backbone and train it well. THX |
@liricky |
Thanks for releasing your code, which has provided great help to me.
However, I meet so error when I am training the model with xception as its backbone. I replace the backbone in your config.py file as xception when I was training. But the the loss of the network does not change after the second epoch and the miou of val data set remains the same in the following epoches.
So what I should do to the hyperparameter when I want to training the network with xception as its backbone. If you can provide much detail steps, I will be really grateful to your help.
The text was updated successfully, but these errors were encountered: