我正在浏览使用GELU(高斯误差线性单位)的BERT论文,该论文将方程表示为
依次近似为
您能简化方程式并解释它是如何近似的。
我正在浏览使用GELU(高斯误差线性单位)的BERT论文,该论文将方程表示为
依次近似为
您能简化方程式并解释它是如何近似的。
Answers:
我们可以展开的累积分布,即,如下:
请注意,这是一个定义,而不是方程式(或关系)。作者为此提议提供了一些理由,例如随机类比,但是从数学上讲,这只是一个定义。
这是GELU的图:
对于这些类型的数值逼近,关键思想是找到一个相似的函数(主要基于经验),对其进行参数化,然后将其拟合至原始函数中的一组点。
知道非常接近
和erf的一阶导数(x与tanh(√)相符在,这是,我们继续拟合
我已经安装此功能之间的20个样品(使用本网站),这里是系数:
通过设置,估计为。如果有更多样本处于更宽的范围内(该位置仅允许20个样本),系数将更接近纸张的。最后我们得到
与均方误差为。
请注意,如果我们未利用一阶导数之间的关系,则术语将被包含在参数中,如下所示:
正如@BookYourLuck所建议的,我们可以利用函数的奇偶性来限制搜索多项式的空间。也就是说,由于是奇函数,即,和也是奇函数,多项式函数内也应该是奇数(应该仅具有奇次幂)有
以前,我们很幸运最后得到偶数幂和(几乎)零系数,但是通常,这可能导致低质量近似,例如,像这样的项被取消了。不用额外选择(偶数或奇数),而不是简单地选择。
这是用于生成数据点,拟合函数并计算均方误差的Python代码:
import math
import numpy as np
import scipy.optimize as optimize
def tahn(xs, a):
return [math.tanh(math.sqrt(2 / math.pi) * (x + a * x**3)) for x in xs]
def sigmoid(xs, a):
return [2 * (1 / (1 + math.exp(-a * x)) - 0.5) for x in xs]
print_points = 0
np.random.seed(123)
# xs = [-2, -1, -.9, -.7, 0.6, -.5, -.4, -.3, -0.2, -.1, 0,
# .1, 0.2, .3, .4, .5, 0.6, .7, .9, 2]
# xs = np.concatenate((np.arange(-1, 1, 0.2), np.arange(-4, 4, 0.8)))
# xs = np.concatenate((np.arange(-2, 2, 0.5), np.arange(-8, 8, 1.6)))
xs = np.arange(-10, 10, 0.001)
erfs = np.array([math.erf(x/math.sqrt(2)) for x in xs])
ys = np.array([0.5 * x * (1 + math.erf(x/math.sqrt(2))) for x in xs])
# Fit tanh and sigmoid curves to erf points
tanh_popt, _ = optimize.curve_fit(tahn, xs, erfs)
print('Tanh fit: a=%5.5f' % tuple(tanh_popt))
sig_popt, _ = optimize.curve_fit(sigmoid, xs, erfs)
print('Sigmoid fit: a=%5.5f' % tuple(sig_popt))
# curves used in https://mycurvefit.com:
# 1. sinh(sqrt(2/3.141593)*(x+a*x^2+b*x^3+c*x^4+d*x^5))/cosh(sqrt(2/3.141593)*(x+a*x^2+b*x^3+c*x^4+d*x^5))
# 2. sinh(sqrt(2/3.141593)*(x+b*x^3))/cosh(sqrt(2/3.141593)*(x+b*x^3))
y_paper_tanh = np.array([0.5 * x * (1 + math.tanh(math.sqrt(2/math.pi)*(x + 0.044715 * x**3))) for x in xs])
tanh_error_paper = (np.square(ys - y_paper_tanh)).mean()
y_alt_tanh = np.array([0.5 * x * (1 + math.tanh(math.sqrt(2/math.pi)*(x + tanh_popt[0] * x**3))) for x in xs])
tanh_error_alt = (np.square(ys - y_alt_tanh)).mean()
# curve used in https://mycurvefit.com:
# 1. 2*(1/(1+2.718281828459^(-(a*x))) - 0.5)
y_paper_sigmoid = np.array([x * (1 / (1 + math.exp(-1.702 * x))) for x in xs])
sigmoid_error_paper = (np.square(ys - y_paper_sigmoid)).mean()
y_alt_sigmoid = np.array([x * (1 / (1 + math.exp(-sig_popt[0] * x))) for x in xs])
sigmoid_error_alt = (np.square(ys - y_alt_sigmoid)).mean()
print('Paper tanh error:', tanh_error_paper)
print('Alternative tanh error:', tanh_error_alt)
print('Paper sigmoid error:', sigmoid_error_paper)
print('Alternative sigmoid error:', sigmoid_error_alt)
if print_points == 1:
print(len(xs))
for x, erf in zip(xs, erfs):
print(x, erf)
输出:
Tanh fit: a=0.04485
Sigmoid fit: a=1.70099
Paper tanh error: 2.4329173471294176e-08
Alternative tanh error: 2.698034519269613e-08
Paper sigmoid error: 5.6479106346814546e-05
Alternative sigmoid error: 5.704246564663601e-05