parallel neural network layer for binarization of ternarization - quantized layers from the beginning
Project description
plinear
Github for parrallel - linear layer
You can install PLinear using pip:
pip install plinear
Idea inspired from
https://arxiv.org/pdf/2402.17764?trk=public_post_comment-text
Code inspired from
https://github.com/kyegomez/BitNet/blob/main/bitnet/bitlinear.py
Ideas and Road Map
Parrallel neural network (PLinear)
Layer composition
Binarizing ternary layers by making posNet and negNet and add them.
Both are created with posNet, which returns 1 if the weight if over 0 and 0 else.
Result comes out with posNet - negNet to mimic ternary.
Found out that tanh(weight) makes the model to fit in and learn without normalizing entire layer.
No additional activation function used in test.
Suggested usage
import torch
import torch.nn as nn
from plinear import PLinear
class SimpleNN(nn.Module):
def __init__(self):
super(SimpleNN, self).__init__()
self.fc1 = PLinear(28*28, 128)
self.fc2 = PLinear(128, 10)
def forward(self, x):
x = torch.flatten(x, 1)
x = self.fc1(x)
x = self.fc2(x)
return x
# Example usage
model = SimpleNN()
print(model)
Test code for Mnist example
pytest -k mnist
Results can be found in tests/result_mnist.
You are offered with precision, accuracy, recall per epochs.
Also confusion matrix and full visualization of weights per epochs will be offered in animation.
visualization (Not finised for documentation)
Brute Force optimization of 3 x 3 CNN (Only Idea)
Since I parrallelized layers, each 3 x 3 CNN layer can be brute forced in 2^9 * 2 weights for ternary, which is very cheap against previous models.
Even the model is same, the layer is still at least 9 times smaller even if the model seeked through every cases.
And we can reduce the model with simple searching tasks.
I believe this can be used to vectorize images in proper size of vector which can be reused for image generation or more.
I guess vectorizing concepts and dynamically allocating them with layers would be the final goal of this project.
complex layers (Only Idea)
We can add two more layers parrallelly to express complex domain.
There will be real output and complex output which can be used in many form.
If the layer is complex, default complex part will be zero and it can be passed from previous layers ofcourse.
Developer Note
15, July, 2024
Checked plinear works on colab
16, July, 2024
version 0.1.2.2. version 0.1.2.3.
changelog
0.1.2.2.
Documented readme.md
Preflight testing done for mnist both layer and visualization.
0.1.2.3
Integrated posNet, negNet functions to posNet.
Layer now does posNet - negNet instead of posNet + negNet since negNet is not negative in real now.
Weight is now processed with tanh and shows much stable learning curve.
Removed test result from the git.
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 plinear-0.1.2.3.tar.gz.
File metadata
- Download URL: plinear-0.1.2.3.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.1 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb6d88372c82d5bf83a238eac849992383b73bdf6d47068a501db446c0961894
|
|
| MD5 |
565bbe57c5a3731eb1c6b4dfdb27d8f0
|
|
| BLAKE2b-256 |
cbb2f0aa0beadc3f358091713a9149b25399cd76b8772b3f4e915e337a319fde
|
File details
Details for the file plinear-0.1.2.3-py3-none-any.whl.
File metadata
- Download URL: plinear-0.1.2.3-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.1 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d373109fa26b4ea2d0feea9029e68ae37e1c27cac645199ef1c8f625138a098
|
|
| MD5 |
91ddc1decd8c147b8ee96572cd42cd55
|
|
| BLAKE2b-256 |
fe58d5d4fee9b7d67b84329b718be01871ebee8c8e3ba26d0d0d222333e3816e
|