PyTorch implementation of ThriftyNet by Guillaume Coiffier, Ghouthi Boukli Hacene, and Vincent Gripon.
Project description
Thrifty Networks
Installation
pip install thriftynet
Usage
You can use the encoder only:
from thriftynet import ThriftyEncoder
encoder = ThriftyEncoder(
filters=128,
iterations=20,
kernel_size=3,
normalization="layer"
)
images = torch.randn(1, 3, 224, 224)
features = encoder(images)
print(features.size(1)) # prints 128
Alternatively initialize a network with a classification head:
from thriftynet import ThriftyNetwork
encoder = ThriftyNetwork(
100,
filters=128,
iterations=20,
kernel_size=3,
normalization="layer"
)
images = torch.randn(1, 3, 224, 224)
features = encoder(images)
print(features.size(1)) # prints 100
Abstract
Typical deep convolutional architectures present an increasing number of feature maps as we go deeper in the network, whereas spatial resolution of inputs is decreased through downsampling operations. This means that most of the parameters lay in the final layers, while a large portion of the computations are performed by a small fraction of the total parameters in the first layers.
In an effort to use every parameter of a network at its maximum, we propose a new convolutional neural network architecture, called ThriftyNet. In ThriftyNet, only one convolutional layer is defined and used recursively, leading to a maximal parameter factorization.
In complement, normalization, non-linearities, downsamplings and shortcut ensure sufficient expressivity of the model. ThriftyNet achieves competitive performance on a tiny parameters budget, exceeding 91% accuracy on CIFAR-10 with less than 40K parameters in total, and 74.3% on CIFAR-100 with less than 600K parameters.
Results
Citation
@software{thriftynets2026implementation,
author = {Taha Shieenavaz},
title = {ThriftyNets: Convolutional Neural Networks with Tiny Parameter Budget (Unofficial Implementation)},
year = {2026},
url = {https://github.com/tahashieenavaz/thriftynet},
note = {Unofficial implementation of the paper arXiv:2007.10106 by Coiffier et al.}
}
@misc{2007.10106,
Author = {Guillaume Coiffier and Ghouthi Boukli Hacene and Vincent Gripon},
Title = {ThriftyNets : Convolutional Neural Networks with Tiny Parameter Budget},
Year = {2020},
Eprint = {arXiv:2007.10106},
}
Project details
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 thriftynet-1.0.1.tar.gz.
File metadata
- Download URL: thriftynet-1.0.1.tar.gz
- Upload date:
- Size: 537.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11249d6accef03e2e8c7fed18c9fd48a0a627e07987427f8bf9922e785d46e24
|
|
| MD5 |
58d2229b6dfa629ebd407680abf4082f
|
|
| BLAKE2b-256 |
24e0ed8fdb6a8f07319c904c7d024c8dabe72b9d00e18a75169300a185117dd5
|
File details
Details for the file thriftynet-1.0.1-py3-none-any.whl.
File metadata
- Download URL: thriftynet-1.0.1-py3-none-any.whl
- Upload date:
- Size: 534.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a6e3c79ce7bbd858d44c3e1c48cfb147a7a8bf62befa21836c3230323ccf489
|
|
| MD5 |
a16ca0c7b4169002e44581bf511bfaeb
|
|
| BLAKE2b-256 |
6daf4a744d12f7da57a3a7dc72b6ce32e38bbe87fe19b832a7756df8ff542afa
|