jorgenkg / python-neural-network

This is an efficient implementation of a fully connected neural network in NumPy. The network can be trained by a variety of learning algorithms: backpropagation, resilient backpropagation and scaled conjugate gradient learning. The network has been developed with PYPY in mind.
BSD 2-Clause "Simplified" License
297 stars 98 forks source link

ImportError: No module named learning_algorithms #13

Closed chmdznr closed 8 years ago

chmdznr commented 8 years ago

after installing nimblenet via pip or github and trying to run the example code, I got these: Traceback (most recent call last): File "ann_nimble.py", line 3, in <module> from nimblenet.learning_algorithms import RMSprop ImportError: No module named learning_algorithms

Why?

jorgenkg commented 8 years ago

I'll take a look in 5 minutes

jorgenkg commented 8 years ago

Thank you for making me aware!

The problem was that some of the nimblenet package names was left out from the setup.py configuration file.

Both pip and git has now been updated and verified