Unable to see any ouput
See original GitHub issueI am trying to run a simple example using trained network vgg16
from vgg16 import VGG16
from quiver.quiver_engine.server import launch
model = VGG16()
launch(model, classes=['cat','dog'], input_folder='./imgs') # i have images of dogs and cats here
After this I can see the webpage, but when I click on image and then the layer, it displays “no data for this layer”. And this is displayed for all the layers.
I can see following error on the console:
File "C:\ENV\p34\lib\site-packages\keras\engine\training.py", line 111, in standardize_input_data
str(array.shape))
Exception: Error when checking : expected input_1 to have shape (None, 224, 224, 3) but got array with shape (1, 224, 3, 3)
I used 224x224 image as an input. What might I be missing here?
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Unable to view any output React Js? - Stack Overflow
I was watching a youtube tutorial for react everything was working fine then i refreshed my react app page and suddenly everything disappear ......
Read more >I can't find the output window anywhere..??? - MSDN - Microsoft
I go up the menu and under View->Output, I don't see the OutPut ... Output window is floatable, it may be placed to...
Read more >Unable to find output console when running the test · Issue #369
An internal error occurred during: "Launching Robot Tests". Unable to find output console. Trying to look for a console with name:
Read more >Output problems, RUN doesn't show result. HELP
My code is finishing but not able to find what exactly is the problem here. I am new to PyCharm so donot any...
Read more >Fixed: “No Audio Output Device Is Installed” Error on Windows
In this guide, SoftwareKeep Experts will show you how to fix “No Audio Output Device Is Installed” Error on Windows 10. Let's get...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Successfully loaded but not output ?
I am facing similar issue. My model uses 1 x 120 x 120 (channels x width x height) black and white images. My dataset has 300 x 300 (channels x width x height) black and white images. I resized the images to 120x120 while feeding data to my model.
When I used quiver to display conv layer outputs, input loads, but shows ‘No data for this layer’ error.
Any solution??