Testing Images On A Tensorflow Model
I'm Trying to test a tensorflow model with 10 images as batch size and as output get a segmentation of an specific region. Here is the code I'm using to load the model def run(mode
Solution 1:
I think you are redefining x here. Feed it by name instead so remove the x=placeholder() line and use {'x:0': temp} as a feed dict.
Post a Comment for "Testing Images On A Tensorflow Model"