Closed yscoffee closed 5 years ago
Are you calling the function with gpu_ids parameter ? Since we made the net parallel the net object hold parallel nets and it's childrens have need_initialization list.
oh.. yes, i have other code to take care that. ok thanks
Hi, Thanks for sharing your implementation. I am trying to directly get the network model via define_FuseNet but it seems that this line https://github.com/MehmetAygun/fusenet-pytorch/blob/master/models/networks.py#L76 need to be changed from:
if children in root_child.need_initialization:
toif children in net.need_initialization:
otherwise i will encounter a error.