ChiFang
ChiFang
my tensorflow version is 1.4. I find vgg.py comes from [here ](https://github.com/tensorflow/models/blob/master/research/slim/nets/vgg.py)and yours is out of date. the difference between your vgg19 and tensorflow master is "reuse" argument. After replace...
Hi @sunshineatnoon check following action item: 1. check vgg19 model path in .yml 2. make sure keras version is 2.0.8, newest version will crash in losses.py 3. style_image_features = losses.extract_image_features(style,...
I find the root cause comes from `cv = Lambda(_getCostVolume_, arguments = {'max_d':d/2}, output_shape = (d/2, None, None, num_filters * 2))(unifeatures)` the d/2 will be float and it make _getCostVolume_...