-
Notifications
You must be signed in to change notification settings - Fork 129
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
Code for Cityscape dataset ? #14
Comments
Hello, I have the same question. Have you trained your data set with it, thank you |
Have someone managed to train the model in different datasets? How are you calling train.py? I have succeeded to train in the VOC dataset, but whenever I try to do the same in one of my own I get some error messages. I started keeping the GPU, which is leading to:
If I omit the GPU, I have this error:
I have been running the script with
As I am working on python3.6, I had to do the following changes in the source code:
My current file structure is:
|
@ tuscasp I don't know how to modify it. can you tell me how to settle this? thank you ! |
Hello guys,
Also, I change the tensor type from gpu to cpu, e.g. images = Variable(images).cuda(args.gpu) to images = Variable(images).cpu(). /usr/local/lib/python3.7/dist-packages/torch/optim/sgd.py:105: UserWarning: optimizer contains a parameter group with duplicate parameters; in future, this will cause an error; see github.com/pytorch/pytorch/issues/40967 for more information |
@hfslyc
Thanks for your great work. Did you implement the code to reproduce the experiments in Cityscape dataset in the paper? Thanks!
The text was updated successfully, but these errors were encountered: