GithubHelp home page GithubHelp logo

chandraashekar / learning-rate-decay-schedulers Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 8 KB

This repository aims to implement different types of learning rate decays.

License: MIT License

Python 100.00%

learning-rate-decay-schedulers's Introduction

Learning Rate Scheduler

License

This repository contains a collection of custom learning rate schedulers. These Scheduler classes can be used to decay the learning rate during training.

Installation

pip install numpy matplotlib

Available Schedulers


Explanation

Linear Decay Scheduler:

The learning rate is decayed linearly from the initial learning rate to minimum learning rate over a specified number of epochs. The formula for the learning rate is given below:

lr = lr_min + (lr_max - lr_min) * (1 - epoch / epochs)

Exponential Decay Scheduler:

The learning rate is decayed exponentially over a specified number of epochs. The formula for the learning rate is given below:

lr = lr_min + (lr_max - lr_min) * (decay_rate) ^ (epoch / epochs)

Step Decay Scheduler:

The learning rate is decayed by a factor of gamma every step_size epochs. The formula for the learning rate is given below:

lr = lr_max * gamma ^ (epoch / step_size)

Polynomial Decay Scheduler:

The learning rate is decayed by a factor of gamma every step_size epochs. The formula for the learning rate is given below:

lr = lr_max * (1 - epoch / epochs) ^ (power)

TODO

  • Add more schedulers
  • Create examples for each scheduler
  • Add documentation

Contributing

Everyone is welcome to contribute to this repository.

learning-rate-decay-schedulers's People

Contributors

chandraashekar avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.