tensorflow-fcn icon indicating copy to clipboard operation
tensorflow-fcn copied to clipboard

An Implementation of Fully Convolutional Networks in Tensorflow.

Results 22 tensorflow-fcn issues
Sort by recently updated
recently updated
newest added

After loading the weights still the output is random. What should i change in the code after giving correct path of .npy file ?? Please tell me how to predict...

Hi Marvin, Can you please share the training code too. Thanks, Amir

Hi Marvin,thanks for your code! I have two problems. Can you help me ? First,I want to know why you convert RGB to BGR in fcn8_vgg ? second,what's the meaning...

Hi Marvin,thanks for your brilliant code.I have learned a lot of things. But I have a question about the implementation of the deconvolution. First,it seem that the input channel has...

In the README you mentioned an example where images is a tensor with a shape of [None, h, w, 3] but I am not finding anywhere in the library where...

line 112 self.pool5 = self._max_pool(self.conv4_3, 'pool4', debug) should be self._max_pool(self.conv5_3, 'pool5', debug)

I want to extend your get_deconv_filter from 2D to 3D. In CAFFE, it can be implemented as ``` int f = ceil(blob->shape(-1) / 2.); float c = (2 * f...

dear sir, I faced this question that really difficult to me . can you help me thanks questions bellow: Traceback (most recent call last): File "test_fcn32_vgg.py", line 22, in vgg_fcn...

Hello, After successfully train fcn8s-atonce on my own dataset with _Caffe_, I wanted to familiarize with your implementation of FCN in _Tensorflow_. I decided to start with the training of...

Hello, I am testing the tensorflow-fcn implementation on a new PC, and I am unable to get test_fcn32 to complete, but able to get test_fcn8, and test_fcn16 to complete. test_fcn32...