jiexunsee / Simple-Inception-Transfer-Learning

A classifier for cat and dog images (Response to Siraj's challenge of the week)
38 stars 32 forks source link

One minor issue from Progressbar. #3

Open Sheing opened 7 years ago

Sheing commented 7 years ago

There's a minor coding error in your python file.

from progress.bar import Bar ImportError: No module named 'progress'

Fix this by using: from progressbar import Bar.

For anaconda user, if you're having problem importing progressbar like me personally; try: pip install progressbar==2.2 That should fix the problem

jiexunsee commented 7 years ago

Hi Stanley, thanks for the correction! Glad it works :)

On 10 Mar 2017, at 1:32 PM, Stanley Ng notifications@github.com wrote:

There's a minor coding error in your python file.

from progress.bar import Bar ImportError: No module named 'progress'

Fix this by using: from progressbar import Bar.

For anaconda user, if you're having problem importing progressbar like me personally; try: pip install progressbar==2.2 That should fix the problem

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

Sheing commented 7 years ago

Another question, have you tried using inception v4 instead of v3 ?

jiexunsee commented 7 years ago

I have not tried, but it could work too!