python - 使用 Python 的 numpy 实现随机梯度下降

标签 python numpy machine-learning gradient-descent

我必须使用 python numpy 库实现随机梯度下降。为此,我给出了以下函数定义:

def compute_stoch_gradient(y, tx, w):
    """Compute a stochastic gradient for batch data."""

def stochastic_gradient_descent(
        y, tx, initial_w, batch_size, max_epochs, gamma):
    """Stochastic gradient descent algorithm."""

我还获得了以下帮助功能:

def batch_iter(y, tx, batch_size, num_batches=1, shuffle=True):
    """
    Generate a minibatch iterator for a dataset.
    Takes as input two iterables (here the output desired values 'y' and the input data 'tx')
    Outputs an iterator which gives mini-batches of `batch_size` matching elements from `y` and `tx`.
    Data can be randomly shuffled to avoid ordering in the original data messing with the randomness of the minibatches.
    Example of use :
    for minibatch_y, minibatch_tx in batch_iter(y, tx, 32):
        <DO-SOMETHING>
    """
    data_size = len(y)

    if shuffle:
        shuffle_indices = np.random.permutation(np.arange(data_size))
        shuffled_y = y[shuffle_indices]
        shuffled_tx = tx[shuffle_indices]
    else:
        shuffled_y = y
        shuffled_tx = tx
    for batch_num in range(num_batches):
        start_index = batch_num * batch_size
        end_index = min((batch_num + 1) * batch_size, data_size)
        if start_index != end_index:
            yield shuffled_y[start_index:end_index], shuffled_tx[start_index:end_index]

我实现了以下两个功能:

def compute_stoch_gradient(y, tx, w):
    """Compute a stochastic gradient for batch data."""
    e = y - tx.dot(w)
    return (-1/y.shape[0])*tx.transpose().dot(e)


def stochastic_gradient_descent(y, tx, initial_w, batch_size, max_epochs, gamma):
    """Stochastic gradient descent algorithm."""
    ws = [initial_w]
    losses = []
    w = initial_w
    for n_iter in range(max_epochs):
        for minibatch_y,minibatch_x in batch_iter(y,tx,batch_size):
            w = ws[n_iter] - gamma * compute_stoch_gradient(minibatch_y,minibatch_x,ws[n_iter])
            ws.append(np.copy(w))
            loss = y - tx.dot(w)
            losses.append(loss)

    return losses, ws

我不确定迭代应该在 range(max_epochs) 还是更大的范围内完成。我这样说是因为我读到一个纪元是“每次我们运行整个数据集”。所以我认为一个时代包含更多的一次迭代......

最佳答案

在典型的实现中,批量大小为 B 的小批量梯度下降应该从数据集中随机选取 B 个数据点,并根据该子集上计算出的梯度更新权重。这个过程本身会持续很多次,直到收敛或某个阈值最大迭代。 B=1 的 mini-batch 是 SGD,有时可能会有噪音。

除上述评论外,您可能还想尝试一下批量大小和学习率(步长),因为它们对随机和小批量梯度下降的收敛速度有重大影响。

下图显示了在对亚马逊产品评论数据集进行情感分析时,这两个参数对 SGDlogistic 回归 收敛速度的影响,出现的任务在关于机器学习的 coursera 类(class)中 - 华盛顿大学的分类:

enter image description here enter image description here

有关这方面的更多详细信息,您可以引用https://sandipanweb.wordpress.com/2017/03/31/online-learning-sentiment-analysis-with-logistic-regression-via-stochastic-gradient-ascent/?frame-nonce=987e584e16

关于python - 使用 Python 的 numpy 实现随机梯度下降,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39975050/

相关文章:

python - 如何设置导入模块的日志级别?

python - 一个时间序列的网格数据最实用的python数据结构是什么?

python - 在Matlab中优化一个 "mask"函数

Python 月份开始日期和结束日期之间的两个日期

python - 梯度下降实现——绝对误差问题

python - 在构建模型时使用 datetime64 特征类型?

python-3.x - ALB 指标的异常检测

Python 线程与类

python - 从 Pandas 数据框中删除字符串中包含数值的行

python - 如何按比例将数组调整到一定长度?