Skip to main content

API to compose PyTorch neural networks on the fly.

Project description

Torch-Nets

PyPI pyversions PyPI version Code style: black

ol-reliable-spongebob

Compose PyTorch neural networks with ease.

Installation

From PYPI (current version: v0.0.3rc0)

pip install torch-nets

Alternatively, install the development version from GitHub:

git clone https://github.com/mvinyard/torch-nets.git;
cd torch-nets; pip install -e .

Example API use-cases

from torch_nets import TorchNet

Create a feed-forward neural network

The only required arguments are in_features and out_features. The network can be made as simple or complex as you want through optional parameters.

net = TorchNet(
    in_features=50,
    out_features=50,
    hidden=[400, 400],
    activation="LeakyReLU",
    dropout=0.2,
    bias=True,
    output_bias=True,
)
See output
TorchNet(
  (hidden_1): Sequential(
    (linear): Linear(in_features=50, out_features=400, bias=True)
    (dropout): Dropout(p=0.2, inplace=False)
    (activation): LeakyReLU(negative_slope=0.01)
  )
  (hidden_2): Sequential(
    (linear): Linear(in_features=400, out_features=400, bias=True)
    (dropout): Dropout(p=0.2, inplace=False)
    (activation): LeakyReLU(negative_slope=0.01)
  )
  (output): Sequential(
    (linear): Linear(in_features=400, out_features=50, bias=True)
  )
)

Documentation

For more information, including examples of additional use-cases please visit the documentation (coming soon)! Additional use-cases include: Encoder, Decoder, AugmentedTorchNet.

Potential future plans

  • Flexible composition of torch.optim funcs.
  • Potential pytorch_lightning use-cases.

Problem? Open an issue or get in touch via email.

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

torch-nets-0.0.3rc0.tar.gz (22.7 kB view details)

Uploaded Source

Built Distribution

torch_nets-0.0.3rc0-py3-none-any.whl (28.0 kB view details)

Uploaded Python 3

File details

Details for the file torch-nets-0.0.3rc0.tar.gz.

File metadata

  • Download URL: torch-nets-0.0.3rc0.tar.gz
  • Upload date:
  • Size: 22.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for torch-nets-0.0.3rc0.tar.gz
Algorithm Hash digest
SHA256 62c19eea90978b5a2920a280e1cee713f1aa4f525a83dd29815daa5f8ef4c561
MD5 87db59bb1920813358ced34c41e62819
BLAKE2b-256 1057fee88843f0fb5c3d56e591052a1359071e040c04ee3a11d13586c9921895

See more details on using hashes here.

File details

Details for the file torch_nets-0.0.3rc0-py3-none-any.whl.

File metadata

File hashes

Hashes for torch_nets-0.0.3rc0-py3-none-any.whl
Algorithm Hash digest
SHA256 6e71941c4ac4c49ba537c6f025d2f03cbee8f011ea2dc5f47ec6fb162c4ef232
MD5 b0401aa2f10e1be7ba83099216ab66f2
BLAKE2b-256 36e4eb44a32c3a3411b42d27df32604c798707885c9ff926c5f6caf37dfe4463

See more details on using hashes here.

Supported by

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