ICNet-tensorflow
ICNet-tensorflow copied to clipboard
Error in model.py
Hi, I'm trying to train my own dataset and ran into this error message. I modified config.py to point to my data lists and dataset. Any hints on how to debug this?
File "/home/dave/Desktop/ICNet-tensorflow-master/model.py", line 302, in init super().init(inputs={'data': self.images}, cfg=self.cfg) TypeError: super() takes at least 1 argument (0 given)
Is this code intended to be used with Python3?
yes the reson is the code is in python3 but run python2
istead:super(ICNet_BN,self).init(inputs={'data': self.images}, cfg=self.cfg)
may work