xavierdcruz0
xavierdcruz0
I'm getting some kind of error relating to BatchNormalization as soon as I try to instantiate a Unet model: ``` import segmentation_models as sm # sm.set_framework('tf.keras') # sm.framework() # import...
After downloading pretrained models for demo, we ran: ``` $ python eval_pf_pascal.py --checkpoint trained_models/ncnet_pfpascal.pth.tar ``` Which resulted in this output: ``` NCNet evaluation script - PF Pascal dataset Creating CNN...
I would like to have a Spatial Transformer layer before a pretrained convnet, such as the the Keras `ResNet50`. As such I have prepared the following various attempts to connect...