This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from keras.callbacks import Callback | |
import keras.backend as K | |
import numpy as np | |
import matplotlib.pyplot as plt | |
class LRFinder(Callback): | |
""" | |
Up-to date version: https://github.com/WittmannF/LRFinder | |
Example of usage: | |
from keras.models import Sequential |