WXinlong / SOLO

SOLO and SOLOv2 for instance segmentation, ECCV 2020 & NeurIPS 2020.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

When I train my own dataset, it works fine, but console doesn't print the information.

zhmou opened this issue · comments

commented

image
It just print two lines of mmdet info as the image shown and cursor stuck there until training is over, doesn't presenting any training information(expected behavior like: mmdet - INFO - Epoch [1][xx/xx] lr: xxx , eta: xxx, time: xxx, data_time: xxx, memory: xxx, loss_ins: xxx, loss_cate: xxx, loss: xxx), but actually .pth file is writing to the work_dir properly, I don't know why. please show me how to fix that or give me some helpful instructions.
Many thanks~

commented

well, I got the solution. I forgot to change the interval variable in config file:

log_config = dict(
    interval = 20,
    hooks=[
        dict(type='TextLoggerHook'),
    ]) 

just make it compatible to your own training dataset, and everything goes well.

But I haven't changed the procedure at all @zhmou