API to compose PyTorch neural networks on the fly.
Project description
Torch-Nets
Compose PyTorch neural networks with ease.
Installation
From PYPI (current version: v0.0.1
)
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-case
from torch_nets import TorchNet
Create a feed-forward neural network
net = TorchNet(
in_features=50,
out_features=50,
hidden=[400, 400],
activation="LeakyReLU",
dropout=0.2,
n_augment=0,
bias=True,
output_bias=True,
)
net
Sequential(
(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)
)
)
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.
Potential future plans
- Composition of
torch.optim
funcs.
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.2rc1.tar.gz
(19.3 kB
view details)
Built Distribution
File details
Details for the file torch-nets-0.0.2rc1.tar.gz
.
File metadata
- Download URL: torch-nets-0.0.2rc1.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff7182c8a47d3fe7d38c3b159265209fa0f538086f56160bc23458269df7b795 |
|
MD5 | 52e2fc65c90f747a97dd3524ab688240 |
|
BLAKE2b-256 | 06045d23fe0561fcd3c8704f8e69eb4bd42b54b4dafb43e1ff5524360b512cb5 |
File details
Details for the file torch_nets-0.0.2rc1-py3-none-any.whl
.
File metadata
- Download URL: torch_nets-0.0.2rc1-py3-none-any.whl
- Upload date:
- Size: 22.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f70c6654adc725fd4215aed27d28a2dfd125ea541139381e331b0e1b9b3c2387 |
|
MD5 | fffbb35557f9c47d7cce1386055adf2b |
|
BLAKE2b-256 | f474a6a708bb90845c24ef6a5ce6b984734c6cde4c369ca6a63a0faa605d7b79 |