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.1rc
)
pip install torch-nets==0.0.1rc0
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,
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.1rc1.tar.gz
(18.6 kB
view details)
Built Distribution
File details
Details for the file torch-nets-0.0.1rc1.tar.gz
.
File metadata
- Download URL: torch-nets-0.0.1rc1.tar.gz
- Upload date:
- Size: 18.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 076195a51e555f1165ae6830e109b722a684c247bb59ffff8d8fa111842add4b |
|
MD5 | 6c7f2cf81b87f92711839c79008e32d0 |
|
BLAKE2b-256 | 02282a04355ad05fba8535f4c51379d6e02198a77b35ee5c32ec90d11f94a5ab |
File details
Details for the file torch_nets-0.0.1rc1-py3-none-any.whl
.
File metadata
- Download URL: torch_nets-0.0.1rc1-py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44d135e3d0ced77890f1e64a064b04848cc7048cb170bd5628c1c0495d3c3348 |
|
MD5 | ffce82702317cb8a3036885fa8409884 |
|
BLAKE2b-256 | cf55681ddf23355729f6b945276fcc807f523da280067030609ab2b598c1cf65 |