Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All Outputs of Network are the Same (Python API) #39

Open
craymichael opened this issue Jul 30, 2018 · 2 comments
Open

All Outputs of Network are the Same (Python API) #39

craymichael opened this issue Jul 30, 2018 · 2 comments

Comments

@craymichael
Copy link

Hi, I receive the same output for every input image I give the Overfeat model using the Python API. Minimal code to reproduce:

>>> overfeat.init(path_to_weights, 0)
>>> img = np.random.rand(3, 231, 231).astype(np.float32)
>>> r1 = overfeat.fprop(img)
>>> img = np.random.rand(3, 231, 231).astype(np.float32)
>>> r2 = overfeat.fprop(img)
>>> all(r1 == r2)
True
@Vslamer
Copy link

Vslamer commented Jan 2, 2019

Hi,I don't understand ablove code .What that do?
Install overfeat,test overfeat have bug:
cy@pc:~/loopclosure/CNN_LCD-master/overfeat$ ./bin/linux_64/overfeat -n 3 samples/bee.jpg
sh: 1: convert: not found
/home/cy/loopclosure/CNN_LCD-master/overfeat/bin/linux_64/overfeatcmd: error while loading shared libraries: libopenblas.so.0: cannot open shared object file: No such file or directory

@1274622976
Copy link

Is there anyone who has run through this code? Can you share the steps of running the code and the problems encountered, and how to solve these problems? Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants