摘要:
import numpy as np import matplotlib.pyplot as plt import random import math x_size = 100000 X = np.linspace(-1,1,x_size) Y1 = +np.sqrt(1-np.square(X) 阅读全文
摘要:
class WarmUpLineDecayScheduler(keras.callbacks.Callback): def __init__(self, lr_max,lr_min, warm_step,sum_step,bat): super(WarmUpLineDecayScheduler, s 阅读全文