Skip to main content

A library of neural nets in theano

Project description

The theanets package provides tools for defining and optimizing several common types of neural network models. It uses Python for rapid development, and under the hood Theano provides graph optimization and fast computations on the GPU.

The package defines models for classification, autoencoding, regression, and prediction. Models can easily be created with any number of feedforward or recurrent layers and combined with different regularizers:

  • L1/L2 weight decay

  • L1/L2 hidden activation penalties (e.g., sparse autoencoders)

  • Dropout/gaussian noise (e.g., denoising autoencoders)

Several optimization algorithms are also included:

At present there are no RBMs, convolutions, or maxout in theanets – for those, you might want to look at Morb, Lasagne, or pylearn2. There are many other neural networks toolkits out there as well, in many other languages; see this stackoverflow question for a few additional pointers, or just search for them.

Installation

Install the latest published code using pip:

pip install theanets

Or download the current source and run it from there:

git clone http://github.com/lmjohns3/theanets
cd theanets
python setup.py develop

Example

Let’s say you wanted to create a classifier and train it on some 100-dimensional data points that you’ve classified into 10 categories. You can define your model and train it using a few lines of code:

import climate
import theanets
import my_data_set

climate.enable_default_logging()

exp = theanets.Experiment(
    theanets.Classifier,
    layers=(100, 200, 100, 10),
    hidden_l1=0.1,
)

exp.train(
    my_data_set.training_data,
    my_data_set.validation_data,
    optimize='sgd',
    learning_rate=0.01,
    momentum=0.5,
)

exp.network.predict(my_data_set.test_data)

The trained network lets you make predictions on unseen test data.

More Information

Source: https://github.com/lmjohns3/theanets

Documentation: http://theanets.readthedocs.org

Mailing list: https://groups.google.com/forum/#!forum/theanets

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

theanets-0.5.1.tar.gz (41.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

theanets-0.5.1-py3-none-any.whl (46.6 kB view details)

Uploaded Python 3

theanets-0.5.1-py2-none-any.whl (46.6 kB view details)

Uploaded Python 2

File details

Details for the file theanets-0.5.1.tar.gz.

File metadata

  • Download URL: theanets-0.5.1.tar.gz
  • Upload date:
  • Size: 41.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for theanets-0.5.1.tar.gz
Algorithm Hash digest
SHA256 27ae48df856904e5a0a49c27f4ea10264aa3046c30d450f275c44bd50b5a343f
MD5 554383b7f0ccd20e7431052f3fa11291
BLAKE2b-256 304bdec362812fbae37df210261c409fef24d677f7ec1915bebfa0f3775bff98

See more details on using hashes here.

File details

Details for the file theanets-0.5.1-py3-none-any.whl.

File metadata

File hashes

Hashes for theanets-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4b16f790d73e891aab6151b2cddd638fdd288507e49da406d665cb7ff1cdce6f
MD5 4dee1709bf351f127a4904cf9254e63d
BLAKE2b-256 e8a3c4eb93be96031315963ab55b935bc455a9ff759d202b48b49aee214025d7

See more details on using hashes here.

File details

Details for the file theanets-0.5.1-py2-none-any.whl.

File metadata

File hashes

Hashes for theanets-0.5.1-py2-none-any.whl
Algorithm Hash digest
SHA256 2ad6ab0916a1594fc947555236fd54dfc2b57a6a6fa0d3134d3f39670f1e32f0
MD5 5adfa3d2c76ecbe308c7c732e172acfb
BLAKE2b-256 aed85a829f25a4758b99c562165969ded5b5c220104cd367d7b7ea031ac15e04

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page