API to compose PyTorch neural networks on the fly.
Project description
Compose PyTorch neural networks with ease.
Installation
From PYPI (current version: v0.0.5
)
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.
Project details
Release history Release notifications | RSS feed
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.5.tar.gz
(22.6 kB
view details)
Built Distribution
File details
Details for the file torch-nets-0.0.5.tar.gz
.
File metadata
- Download URL: torch-nets-0.0.5.tar.gz
- Upload date:
- Size: 22.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad72137902a2881ecfee356ff6bd83a1c20983d133ef10296cf77fc638e2b556 |
|
MD5 | 94b88e3e9900635462eef4c0e895c32d |
|
BLAKE2b-256 | 8007231dbf7b343cd7485db606a62f3d3b7d095691af73286e14aaa79be91b6d |
File details
Details for the file torch_nets-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: torch_nets-0.0.5-py3-none-any.whl
- Upload date:
- Size: 27.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fc3ea88e5bbdaeb397979bfcb61fda16bab1324dd59d10741ceac6065ab8eeb |
|
MD5 | ab58af729b72dfe592f308d84897a96c |
|
BLAKE2b-256 | ca7d5ff35fa6d74e66d2d1eb9c51f95aab6d2b22961e6e0ccb73fc3387643f19 |