Skip to content
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

Lack of instructions #10

Open
nikitadurasov opened this issue Oct 11, 2018 · 2 comments
Open

Lack of instructions #10

nikitadurasov opened this issue Oct 11, 2018 · 2 comments

Comments

@nikitadurasov
Copy link

Now I faced a couple of problems: there are no such modules as "constants", "utils" and etc, but its not a major problem. I'm trying to run main_fpn.py with python main_fpn.py --epochs 40 --cuda --bs 4 --num_workers 3 --output_dir output_dir/, but only got NaN's as output from network and as values of losses.

Could you please write more detailed instructions how to run your code?

@Usernamezhx
Copy link

@nikitadurasov do you solve the problem?

@agustincl
Copy link

Also here trying to "make it works"

For now:
UTILS
Comment from utils.net_utils import adjust_learning_rate to # from utils.net_utils import adjust_learning_rate

From https://github.com/jwyang/faster-rcnn.pytorch/blob/master/lib/model/utils/net_utils.py

Download the net_utils.py, or just define the adjust_learning_rate function

def adjust_learning_rate(optimizer, decay=0.1):
    """Sets the learning rate to the initial LR decayed by 0.5 every 20 epochs"""
    for param_group in optimizer.param_groups:
        param_group['lr'] = decay * param_group['lr']

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants