MANIFEST.in
README.rst
setup.cfg
setup.py
examples/__init__.py
examples/boston_price_prediction.py
examples/gradient_descent_optimizations.py
examples/plots.py
examples/sofm.py
neupy/__init__.py
neupy/utils.py
neupy.egg-info/PKG-INFO
neupy.egg-info/SOURCES.txt
neupy.egg-info/dependency_links.txt
neupy.egg-info/entry_points.txt
neupy.egg-info/not-zip-safe
neupy.egg-info/pbr.json
neupy.egg-info/requires.txt
neupy.egg-info/top_level.txt
neupy/algorithms/__init__.py
neupy/algorithms/feedforward.py
neupy/algorithms/utils.py
neupy/algorithms/associative/__init__.py
neupy/algorithms/associative/base.py
neupy/algorithms/associative/hebb.py
neupy/algorithms/associative/instar.py
neupy/algorithms/associative/kohonen.py
neupy/algorithms/associative/oja.py
neupy/algorithms/backprop/__init__.py
neupy/algorithms/backprop/backpropagation.py
neupy/algorithms/backprop/conjugate_gradient.py
neupy/algorithms/backprop/gradient_descent.py
neupy/algorithms/backprop/hessian_diagonal.py
neupy/algorithms/backprop/levenberg_marquardt.py
neupy/algorithms/backprop/momentum.py
neupy/algorithms/backprop/quasi_newton.py
neupy/algorithms/backprop/quickprop.py
neupy/algorithms/backprop/rprop.py
neupy/algorithms/basics/__init__.py
neupy/algorithms/basics/base.py
neupy/algorithms/basics/lms.py
neupy/algorithms/basics/modify_relaxation.py
neupy/algorithms/basics/perceptron.py
neupy/algorithms/competitive/__init__.py
neupy/algorithms/competitive/art.py
neupy/algorithms/competitive/sofm.py
neupy/algorithms/memory/__init__.py
neupy/algorithms/memory/bam.py
neupy/algorithms/memory/base.py
neupy/algorithms/memory/cmac.py
neupy/algorithms/memory/discrete_hopfield_network.py
neupy/algorithms/memory/utils.py
neupy/algorithms/rbfn/__init__.py
neupy/algorithms/rbfn/grnn.py
neupy/algorithms/rbfn/pnn.py
neupy/algorithms/rbfn/rbf_kmeans.py
neupy/algorithms/rbfn/utils.py
neupy/algorithms/steps/__init__.py
neupy/algorithms/steps/base.py
neupy/algorithms/steps/delta_bar_delta.py
neupy/algorithms/steps/error_difference_update.py
neupy/algorithms/steps/leak_step.py
neupy/algorithms/steps/linear_search.py
neupy/algorithms/steps/search_then_converge.py
neupy/algorithms/steps/simple_step_minimization.py
neupy/algorithms/steps/wolfe_search.py
neupy/algorithms/weights/__init__.py
neupy/algorithms/weights/base.py
neupy/algorithms/weights/weight_decay.py
neupy/algorithms/weights/weight_elimination.py
neupy/commands/__init__.py
neupy/commands/list.py
neupy/commands/main.py
neupy/commands/new.py
neupy/commands/new_project_template/cookiecutter.json
neupy/commands/new_project_template/{{cookiecutter.project_name}}/.gitignore
neupy/commands/new_project_template/{{cookiecutter.project_name}}/README.md
neupy/commands/new_project_template/{{cookiecutter.project_name}}/requirements.txt
neupy/commands/new_project_template/{{cookiecutter.project_name}}/data/.gitignore
neupy/commands/new_project_template/{{cookiecutter.project_name}}/notebook/drafts/.gitignore
neupy/commands/new_project_template/{{cookiecutter.project_name}}/src/__init__.py
neupy/commands/new_project_template/{{cookiecutter.project_name}}/src/predict.py
neupy/commands/new_project_template/{{cookiecutter.project_name}}/src/utils.py
neupy/core/__init__.py
neupy/core/base.py
neupy/core/config.py
neupy/core/docs.py
neupy/core/properties.py
neupy/datasets/__init__.py
neupy/datasets/reber.py
neupy/ensemble/__init__.py
neupy/ensemble/base.py
neupy/ensemble/dan.py
neupy/ensemble/mixture_of_experts.py
neupy/functions/__init__.py
neupy/functions/activations.py
neupy/functions/base.py
neupy/functions/errors.py
neupy/helpers/__init__.py
neupy/helpers/base.py
neupy/helpers/logs.py
neupy/helpers/sms.py
neupy/layers/__init__.py
neupy/layers/base.py
neupy/layers/layers.py
neupy/layers/output.py
neupy/layers/utils.py
neupy/network/__init__.py
neupy/network/base.py
neupy/network/connections.py
neupy/network/learning.py
neupy/network/types.py
neupy/network/utils.py
neupy/plots/__init__.py
neupy/plots/hinton.py