paper-with-me

Papers

TaLU: A Hybrid Activation Function Combining Tanh and Rectified Linear Unit to Enhance Neural Networks

2023-05-08 · Md. Mehedi Hasan, Md. Ali Hossain, Azmain Yakin Srizon, Abu Sayeed

The application of the deep learning model in classification plays an important role in the accurate detection of the target objects. However, the accuracy is affected by the activation function in the hidden and output layer. In this paper, an activation function called TaLU, which is a combination of Tanh and Rectified Linear Units (ReLU), is used to improve the prediction. ReLU activation function is used by many deep learning researchers for its computational efficiency, ease of implementation, intuitive nature, etc. However, it suffers from a dying gradient problem. For instance, when the input is negative, its output is always zero because its gradient is zero. A number of researchers used different approaches to solve this issue. Some of the most notable are LeakyReLU, Softplus, Softsign, ELU, ThresholdedReLU, etc. This research developed TaLU, a modified activation function combining Tanh and ReLU, which mitigates the dying gradient problem of ReLU. The deep learning model with the proposed activation function was tested on MNIST and CIFAR-10, and it outperforms ReLU and some other studied activation functions in terms of accuracy(upto 6% in most cases, when used with Batch Normalization and a reasonable learning rate).

📄 PDF Abstract BibTeX arXiv:2305.04402

Code (1)

MehediCSERUET/Implementation-of-TaLU-activation-function 공식 구현

Tasks

Computational EfficiencyDeep Learning

Methods 이 논문이 사용한 방법론

ELU 설명 없음
Batch Normalization 설명 없음

Similar Papers 제목 키워드 기반

Parametric Leaky Tanh: A New Hybrid Activation Function for Deep Learning

2023-08-11 · Stamatis Mastromichalakis

Activation functions (AFs) are crucial components of deep neural networks (DNNs), having a significant impact on their performance. An activation function in a DNN is typically a smooth, nonlinear function that transform…

TanhSoft -- a family of activation functions combining Tanh and Softplus

2020-09-08 · Koushik Biswas, Sandeep Kumar, Shilpak Banerjee, Ashish Kumar Pandey

Deep learning at its core, contains functions that are composition of a linear transformation with a non-linear function known as activation function. In past few years, there is an increasing interest in construction of…

General ClassificationImage Classification

PLU: The Piecewise Linear Unit Activation Function

2018-09-03 · Andrei Nicolae

Successive linear transforms followed by nonlinear "activation" functions can approximate nonlinear functions to arbitrary precision given sufficient layers. The number of necessary layers is dependent on, in part, by th…

Rectifier Neural Network with a Dual-Pathway Architecture for Image Denoising

2016-09-10 · Keting Zhang, Liqing Zhang

Recently deep neural networks based on tanh activation function have shown their impressive power in image denoising. In this letter, we try to use rectifier function instead of tanh and propose a dual-pathway rectifier …

DenoisingImage Denoising

ErfReLU: Adaptive Activation Function for Deep Neural Network

2023-06-02 · Ashish Rajanand, Pradeep Singh

Recent research has found that the activation function (AF) selected for adding non-linearity into the output can have a big impact on how effectively deep learning networks perform. Developing activation functions that …