Symbolic API for model creation in PyTorch.
Project description
Pytorch Symbolic
Pytorch Symbolic is MIT licensed library that adds symbolic API for model creation to PyTorch.
Pytorch Symbolic makes it easier and faster to define complex models. It spares you writing boilerplate code. It aims to be PyTorch equivalent for Keras Functional API.
Features:
- Small extension of PyTorch
- No dependencies besides PyTorch
- Produces models entirely compatible with PyTorch
- Overhead free as tested in benchmarks
- Reduces the amount of boilerplate code
- Works well with complex architectures
- Code and documentation is automatically tested
Example
To create a symbolic model, you need Symbolic Tensors and torch.nn.Module.
Register layers and operations in your model by calling layer(inputs) or
equivalently inputs(layer).
Layers will be automagically added to your model and
all operations will be replayed on the real data.
That's all!
Using Pytorch Symbolic, we can define a working classifier in a few lines of code:
from torch import nn
from pytorch_symbolic import Input, SymbolicModel
inputs = Input(shape=(1, 28, 28))
x = nn.Flatten()(inputs)
x = nn.Linear(x.shape[1], 10)(x)(nn.Softmax(1))
model = SymbolicModel(inputs=inputs, outputs=x)
model.summary()
_______________________________________________________
Layer Output shape Params Parent
=======================================================
1 Input_1 (None, 1, 28, 28) 0
2 Flatten_1 (None, 784) 0 1
3 Linear_1 (None, 10) 7850 2
4* Softmax_1 (None, 10) 0 3
=======================================================
Total params: 7850
Trainable params: 7850
Non-trainable params: 0
_______________________________________________________
See more examples in Documentation Quick Start.
How to start
See Jupyter Notebook showing the basic usage of Pytorch Symbolic:
- Learn Pytorch Symbolic in an interactive way.
- Try the package before installing it on your computer.
- See visualizations of graphs that are created under the hood.
Installation
Install Pytorch Symbolic easily with pip:
pip install pytorch-symbolic
Troubleshooting
Please create an issue if you notice a problem!
Links
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytorch_symbolic-1.1.1.tar.gz.
File metadata
- Download URL: pytorch_symbolic-1.1.1.tar.gz
- Upload date:
- Size: 988.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbaed85c23e24c5e8414d284efd7c842f8cb6b8c98525b8a942dffc9e1e606b1
|
|
| MD5 |
0897b8a21249dd607ee517689773ca1f
|
|
| BLAKE2b-256 |
dff3420abaf197580dfe2ef1843e52378c7c6ec3481fd489f3c242667a8e10e6
|
File details
Details for the file pytorch_symbolic-1.1.1-py3-none-any.whl.
File metadata
- Download URL: pytorch_symbolic-1.1.1-py3-none-any.whl
- Upload date:
- Size: 23.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
189c575350c2977d3213fc2efd7123b36d0fa542ad6369c0777fed713215fad5
|
|
| MD5 |
8fa944057ed659d3926b9cc5e92ce20b
|
|
| BLAKE2b-256 |
39e4b3b204d4b0ff66e4e07c5ec874dd218f81ac936f5bbb05f63ec5ff1a80ab
|