Nadir: Cutting-edge PyTorch optimizers for simplicity & composability! 🔥🚀💻
Project description
Nadir
Nadir (pronounced nay-di-ah) is derived from the arabic word nazir, and means "the lowest point of a space". In optimisation problems, it is equivalent to the point of minimum. If you are a machine learning enthusiast, a data scientist or an AI practitioner, you know how important it is to use the best optimization algorithms to train your models. The purpose of this library is to help optimize machine learning models and enable them to reach the point of nadir in the appropriate context.
Nadir follows the principles of Simplicity, Modularity and Composabilty. Read more in the Core Philosophy section.
Table of Contents
- Nadir
- Table of Contents
- Installation
- Simple Usage
- Core Philosphy
- Supported Optimisers
- Acknowledgements
- Citation
Installation
You can either choose to install from the PyPI index, in the following manner:
$ pip install nadir
or install from source, in the following manner:
$ pip install git+https://github.com/Dawn-Of-Eve/nadir.git
Note: Installing from source might lead to a breaking package. It is recommended that you install from PyPI itself.
Simple Usage
import nadir as nd
# some model setup here...
model = ...
# set up your Nadir optimiser
config = nd.SGDConfig(lr=learning_rate)
optimizer = nd.SGD(model.parameters(), config)
# Call the optimizer step
optimizer.step()
Core Philosophy
Nadir
was built to provide a sense of uniformity and integration that might be lacking in the optimisation community, based on the simple idea that optimisers are not islands. They are usually inheriting characteristics from other optimisers and they provide inspiration to other optimisers. So why not make optimisers inheritable, composible and modular objects?
The core concepts that each optimiser in Nadir
follows are:
-
Simplicity is of key importance. We prefer readability and simplicity over performance. Experiment, test and verify what works and what does not with Nadir. Optimise and write custom fused kernels for your favorite optimisers after, for performance.
-
Modularity means that the each new optimiser should minimise on the extra new logic added by adding or editing only the parts that need editing. If you want to have a different momentum in Adam, you only change the function of Momentum after inheriting Adam. No need to write the entire code from scratch.
-
Composibility implies that we can take things from one optimiser and add them to another without much effort. You can build a optimiser that is the mix of RAdam and NAdam with the properties of AdaBelief, if you so desire! That's what makes this library really powerful.
Supported Optimisers
Acknowledgements
We would like to thank all the amazing contributors of this project who spent so much effort making this repositary awesome! :heart:
Citation
You can use the Cite this repository button provided by Github or use the following bibtex:
@software{MinhasNadir,
title = {{Nadir: A Library for Bleeding-Edge Optimizers in PyTorch}},
author = {Minhas, Bhavnick and Kalathukunnel, Apsal},
year = 2023,
month = 3,
version = {0.0.2}
}
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
File details
Details for the file nadir-0.1.1.tar.gz
.
File metadata
- Download URL: nadir-0.1.1.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc60f53caab7c6b06206f139c2279a720a974665fcfff9132bf2474e93223911 |
|
MD5 | c452c71dc78adf27c4809cd31cdd94a1 |
|
BLAKE2b-256 | b6addcc6847629dedffe8fdb8184cb644f3fd60431fe6725e66608ccd660cb7a |
Provenance
File details
Details for the file nadir-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: nadir-0.1.1-py3-none-any.whl
- Upload date:
- Size: 22.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2de14c66d46e75fab9ba43d12c172116db053abcf05859a15747c2196ad8da99 |
|
MD5 | 5daaaef22d5a0abbbd55f7308d6a7b0e |
|
BLAKE2b-256 | d9c386176637c127d59484724acd94868c562731c4242287abe594754e75ecc5 |