import numpy as np import matplotlib.pyplot as plt 확률적 경사하강법단점: 학습률(lr)을 학습하는 동안에 변경할 수 없다. → W : 파라미터(가중치, 편향) lr : 학습률(learning rate) dL/dW : 변화율class Sgd_ function:: init→ 학습률 learning_rate를 초기 입력받는다.class Sgd: """ SGD: Stochastic Gradient Descent W = W - lr * dL/dW """ def __init__(self, learning_rate=0.01): self.learning_rate = learning_rateclass Sgd_ function:: update파라미터 params와 변화율 gradi..