vonclites / squeezenet

Tensorflow implementation of SqueezeNet.
MIT License
129 stars 63 forks source link

Can you include a requirements.txt file? #8

Closed smoosh911 closed 6 years ago

smoosh911 commented 6 years ago

I am not able to import slim. What is this and where did you find this library?

muthiyanbhushan commented 6 years ago

This library is in models/research folder in the tensorflow/models original github. Just download and the path to your pythonpath. I accomplished it y

import sys sys.path.append("/home/user/models/research")

Link to models Github:

https://github.com/tensorflow/models

Hope it helps.

vonclites commented 6 years ago

Unfortunately the requirements.txt file would not help this issue, since you cannot do a simple pip install slim. I will add instructions to the readme as soon as I get a chance, or will accept a pull request.

I've been wanting to create an independent version of their deployment module for a while now but haven't gotten around to it.

smoosh911 commented 6 years ago

thanks guys