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.1.0.tar.gz
(22.8 kB
view details)
Built Distribution
File details
Details for the file torch-nets-0.1.0.tar.gz
.
File metadata
- Download URL: torch-nets-0.1.0.tar.gz
- Upload date:
- Size: 22.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 657a5a4f12bdcd499842f8d31acc68ee814b0d9795008e4a41aaac67af5cb7e5 |
|
MD5 | ec498269cab089ac8750ba9ca6f45372 |
|
BLAKE2b-256 | db6b8cd0e8ef883a6b55cbc768803cd7adcabd835e4c94af98557e6560c3fe0e |
File details
Details for the file torch_nets-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: torch_nets-0.1.0-py3-none-any.whl
- Upload date:
- Size: 28.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | def8bacc2daf99145db0f9c85799b2b5647bc9bedb6cd10cf1ff61e8341a6f09 |
|
MD5 | 7b1bfdc7e52e679aa77027611b5058b0 |
|
BLAKE2b-256 | 82c189b6096684f18d873065dc8dd3ba5d4ecf093d30b2cb9e6a11bc04e88243 |