aurora95 / Keras-FCN

Keras-tensorflow implementation of Fully Convolutional Networks for Semantic Segmentation(Unfinished)
MIT License
650 stars 268 forks source link

BilinearUpSampling2D class #41

Open vividaner opened 7 years ago

vividaner commented 7 years ago

Thanks a lot for this wonderful code!

I have a question about the model. I found in the model, you implemented a BilinearUpSampling2D class by yourself. How about if I replace it as the function "UpSampling2D" in Keras? As I am trying to convert this model into coreml and run it on the iphone. The original function in the model is not supported by coreml. But the UpSampling2D is supported.

Thanks in advanced!

xingbotao commented 7 years ago

AttributeError: 'module' object has no attribute 'legacy_get_updates_support' ,你遇到过这个错误嘛?在keras-contrib库中

mrgloom commented 7 years ago

Any point of use BilinearUpSampling2D instead of UpSampling2D or Conv2DTranspose ?