APEC (Asymmetric Parametric Exponential Curvature) activation function.
Project description
APEC and MAPEC Activation Functions for Neural Networks
Overview
This repository introduces two novel activation functions, APEC (Asymmetric Parametric Exponential Curvature) and its variant MAPEC (Multiplicative APEC), designed for deep learning models to capture complex patterns with improved performance. Functions have been tested on the CIFAR-100 dataset (results included) and on some of my experimental models (results not included).
Installation
pip install apec-afn
Usage
import torch
from apec import MAPEC
x = torch.randn([8])
f = MAPEC()
print(f(x))
Activation Functions
- APEC: Offers a balance between flexibility and performance, as demonstrated by the improvement over traditional functions on CIFAR-100.
- MAPEC: An extension of APEC with an additional multiplicative term, allowing for an even richer model expressiveness and an observed faster convergence (up to 15%).
Mathematical Formulation
APEC (Asymmetric Parametric Exponential Curvature)
APEC is designed to introduce a non-linear response with an adjustable curvature, defined by: $$f(x) = \alpha + \frac{\beta - x}{(\gamma - \exp(-x)) + \epsilon}$$
- Initialization: Parameters
aandbare initialized with a normal distribution of zero mean and a standard deviation of 0.35. Parametergis initialized with a mean of -1.375 and a standard deviation of 0.35. - Constraints: The default constraints for
a,b, andgare [-2.0, +2.0], [-2.5, +2.5], and [-2.5, -0.25], respectively. - Stability: A small constant
eps(1.0e-5) is added to prevent division by zero.
MAPEC (Multiplicative Asymmetric Parametric Exponential Curvature)
MAPEC extends APEC by adding a multiplicative term, enhancing its flexibility: $$f(x) = (\alpha + \frac{\beta - x}{-abs(\gamma) - \exp(-x) - \epsilon} + (x \cdot \delta)) \cdot \zeta$$
- Initialization: Parameters initialization values are -3.333e-2, -0.1, -2.0, +0.1 and +1.0 for alpha, beta, gamma, delta and zeta respectively.
- Constraints: There are no constraints on the parameters for MAPEC, allowing for a fully adaptive response.
- Stability: A small constant
eps(1.0e-3) is subtracted from denominator to prevent division by zero.
These functions aim to provide enhanced flexibility and adaptability for neural networks, particularly beneficial for complex pattern recognition tasks.
Evaluation
To evaluate a model with a specific activation function on CIFAR-100 and plot training loss*, use:
python scripts/eval_cifar100.py --activation APEC --plot-loss
* Plotting training loss requires self-projection package to be installed.
Results
Evaluation results on CIFAR-100:
| Activation | Average Loss | Accuracy |
|---|---|---|
| MAPEC 16e* | 2.2004 | 43% |
| APEC | 2.2235 | 43% |
| MAPEC 20e* | 2.2456 | 43% |
| Mish | 2.2704 | 43% |
| SELU | 2.2674 | 42% |
| PReLU | 2.2759 | 42% |
| ReLU | 2.3933 | 39% |
* Results provided for training with MAPEC activation for 20 and 16 epochs respectively.
APEC leads to the best performance, closely followed by Mish and SELU.
MAPEC leads to the faster convergence with performance closely followed by APEC.
You could look at training loss plots here.
Contributing
Contributions and suggestions are welcome! Feel free to fork the repository, open issues, and submit pull requests.
License
APEC is released under the MIT License. See the LICENSE file for more details.
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 apec-afn-0.1.3.tar.gz.
File metadata
- Download URL: apec-afn-0.1.3.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1b2f4ae08a7e2c8d5beb3e23da245339f202e6c17df93a60acb24f07fe2a7fd
|
|
| MD5 |
2436037b9bb340c2d4bd1eb63cf58130
|
|
| BLAKE2b-256 |
0a9cbe0839e243270cbb2ae98823ccbf7b1a2d445c60f778f8bbb3742ca73bbf
|
File details
Details for the file apec_afn-0.1.3-py3-none-any.whl.
File metadata
- Download URL: apec_afn-0.1.3-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38e1b7206f3e8e81963502510bb3d989fb7cd5ae05167fd2b2c7ee1377df683a
|
|
| MD5 |
c60baa70fad52eb39e1af59539fa7e1f
|
|
| BLAKE2b-256 |
16926c5c99e524b6c053671bbcf7d6b8b8aa9b5b7eeab5d56413a9d26d71cf63
|