CONTENTS

局部近似

训练深度神经网络本质上是一个压缩任务。我们希望将训练数据分布表示为一个由若干矩阵参数化的函数。分布越复杂,所需的参数就越多。对整个分布进行近似的理由是,这样我们就能在推理时使用同一个模型、同一组权重,对任意有效点进行前向传播。

但是,如果我们的模型是在推理时即时训练的呢?那么,当对 进行前向传播时,我们只需要建模 周围的局部分布。由于局部区域应该比整个训练集的维度更低,一个简单得多的模型就足够了!

这就是局部近似或局部回归背后的思想。让我们考虑一个简单的回归任务。

任务

我们获得了以下数据的 个样本:

其中

Loading...
Loading...
绘图代码
from pathlib import Path

import numpy as np
import plotly.graph_objects as go

# 生成数据
np.random.seed(42)
n_points = 100
X = np.random.uniform(0, 1, n_points)
epsilon = np.random.normal(0, 1 / 3, n_points)
Y = np.sin(4 * X) + epsilon

# 真实函数
x_true = np.linspace(0, 1, 500)
y_true = np.sin(4 * x_true)

# 创建绘图
fig = go.Figure()

# 添加噪声数据的散点
fig.add_trace(
    go.Scatter(
        x=X,
        y=Y,
        mode="markers",
        name="带噪声数据",
        marker=dict(color="gray"),
    )
)

# 添加真实函数
fig.add_trace(
    go.Scatter(
        x=x_true,
        y=y_true,
        mode="lines",
        name="真实函数",
        line=dict(color="red"),
    )
)

# 更新跨主题共享的布局
fig.update_layout(
    title="数据",
    xaxis_title="X",
    yaxis_title="Y",
)

themes = [
    {
        "name": "light",
        "template": "plotly_white",
        "font_color": "#141413",
        "background": "#f0efea",
        "axis_color": "#141413",
        "gridcolor": "rgba(20, 20, 19, 0.2)",
    },
    {
        "name": "dark",
        "template": "plotly_dark",
        "font_color": "#f0efea",
        "background": "#141413",
        "axis_color": "#f0efea",
        "gridcolor": "rgba(240, 239, 234, 0.2)",
    },
]

output_dir = Path(__file__).resolve().parents[3] / "static"
output_dir.mkdir(parents=True, exist_ok=True)

for theme in themes:
    themed_fig = go.Figure(fig)
    themed_fig.update_layout(
        template=theme["template"],
        font=dict(color=theme["font_color"]),
        paper_bgcolor=theme["background"],
        plot_bgcolor=theme["background"],
    )
    themed_fig.update_xaxes(
        showline=True,
        linecolor=theme["axis_color"],
        tickcolor=theme["axis_color"],
        tickfont=dict(color=theme["axis_color"]),
        title_font=dict(color=theme["axis_color"]),
        gridcolor=theme["gridcolor"],
        zeroline=False,
    )
    themed_fig.update_yaxes(
        showline=True,
        linecolor=theme["axis_color"],
        tickcolor=theme["axis_color"],
        tickfont=dict(color=theme["axis_color"]),
        title_font=dict(color=theme["axis_color"]),
        gridcolor=theme["gridcolor"],
        zeroline=False,
    )

    filename = output_dir / f"local_approximation_data_{theme['name']}.html"
    themed_fig.write_html(filename)
    print(f"已保存绘图至 {filename}")

# 显示绘图
fig.show()

我们将数据集记为 ,它由样本 组成。

我们的任务是拟合一条合理的曲线穿过数据,使其近似匹配真实函数。我们将这条曲线记为 。

K 最近邻

给定某个 ,一种方法是取 个与 最接近的 值,并将它们的 值平均作为估计值。即:

其中 表示 的 个最近邻点。

Loading...
Loading...
绘图代码
from pathlib import Path

import numpy as np
import plotly.graph_objects as go

# 生成数据
np.random.seed(42)
n_points = 100
X = np.random.uniform(0, 1, n_points)
epsilon = np.random.normal(0, 1 / 3, n_points)
Y = np.sin(4 * X) + epsilon

# 真实函数
x_true = np.linspace(0, 1, 500)
y_true = np.sin(4 * x_true)

# 针对一系列 k 值进行 k-NN 计算
x_curve = np.arange(0, 1, 0.01)
k_range = range(1, 21)
y_curves_knn = {}

for k in k_range:
    y_curve = []
    for x in x_curve:
        distances = np.square(X - x)
        nearest_indices = np.argsort(distances)[:k]
        y_curve.append(np.mean(Y[nearest_indices]))
    y_curves_knn[k] = y_curve

# 创建 Plotly 图形
fig = go.Figure()

# 添加静态轨迹
fig.add_trace(
    go.Scatter(x=X, y=Y, mode="markers", name="含噪数据", marker=dict(color="gray"))
)

fig.add_trace(
    go.Scatter(
        x=x_true, y=y_true, mode="lines", name="真实函数", line=dict(color="red")
    )
)

# 添加第一条 k-NN 曲线(k=13,滑块默认位置)
initial_k = 13
fig.add_trace(
    go.Scatter(
        x=x_curve,
        y=y_curves_knn[initial_k],
        mode="lines",
        name="k-NN 曲线",
        line=dict(color="yellow"),
    )
)

# 定义滑块步骤
steps = []
for k in k_range:
    step = dict(
        method="update",
        args=[
            {"y": [Y, y_true, y_curves_knn[k]]},  # 更新轨迹的 y 数据
            {
                "title": f"交互式 k-NN 曲线,k = {k}"
            },  # 动态更新标题
        ],
        label=f"{k}",
    )
    steps.append(step)

# 将滑块添加到布局中
sliders = [
    dict(
        active=initial_k - 1,
        currentvalue={"prefix": "k = "},
        pad={"t": 50},
        steps=steps,
    )
]

fig.update_layout(
    sliders=sliders,
    title=f"交互式 k-NN 曲线,k = {initial_k}",
    xaxis_title="X",
    yaxis_title="Y",
)

themes = [
    {
        "name": "light",
        "template": "plotly_white",
        "font_color": "#141413",
        "background": "#f0efea",
        "axis_color": "#141413",
        "gridcolor": "rgba(20, 20, 19, 0.2)",
    },
    {
        "name": "dark",
        "template": "plotly_dark",
        "font_color": "#f0efea",
        "background": "#141413",
        "axis_color": "#f0efea",
        "gridcolor": "rgba(240, 239, 234, 0.2)",
    },
]

output_dir = Path(__file__).resolve().parents[3] / "static"
output_dir.mkdir(parents=True, exist_ok=True)

for theme in themes:
    themed_fig = go.Figure(fig)
    themed_fig.update_layout(
        template=theme["template"],
        font=dict(color=theme["font_color"]),
        paper_bgcolor=theme["background"],
        plot_bgcolor=theme["background"],
    )
    themed_fig.update_xaxes(
        showline=True,
        linecolor=theme["axis_color"],
        tickcolor=theme["axis_color"],
        tickfont=dict(color=theme["axis_color"]),
        title_font=dict(color=theme["axis_color"]),
        gridcolor=theme["gridcolor"],
        zeroline=False,
    )
    themed_fig.update_yaxes(
        showline=True,
        linecolor=theme["axis_color"],
        tickcolor=theme["axis_color"],
        tickfont=dict(color=theme["axis_color"]),
        title_font=dict(color=theme["axis_color"]),
        gridcolor=theme["gridcolor"],
        zeroline=False,
    )

    html_path = output_dir / f"knn_slider_{theme['name']}.html"
    themed_fig.write_html(html_path)
    print(f"已保存交互式图表至 {html_path}")

# 显示图表
fig.show()

通过使用滑块可以看到,较大的 值会产生更平滑的曲线,但 值较小的曲线会包含一些噪声。在极端情况下, 会精确地追踪训练数据,而 会给出一个平坦的全局平均值。

Nadaraya–Watson 核回归

与其将数据子集限制为 个点,不如考虑集合中的所有点,但根据每个点与 的接近程度来加权其贡献。考虑以下模型

其中 是一个核函数,我们将用它作为接近程度的度量。

该函数由 参数化,称为带宽,它控制着数据中多大范围的 值会影响 的输出。如果我们绘制这些函数,这一点就会变得清晰。

核函数

下图绘制的是

其中 用于确保 在其支撑集上的积分为 。

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
绘图代码
from pathlib import Path

import numpy as np
import plotly.graph_objects as go
from scipy.integrate import quad

# 定义核函数
def epanechnikov_kernel(u):
    return np.maximum(0, 0.75 * (1 - u**2))

def tricube_kernel(u):
    return np.maximum(0, (1 - np.abs(u) ** 3) ** 3)

def gaussian_kernel(u):
    return np.exp(-0.5 * u**2) / np.sqrt(2 * np.pi)

def renormalized_kernel(kernel_func, u_range, bandwidth):
    def kernel_with_lambda(u):
        scaled_u = u / bandwidth
        normalization_factor, _ = quad(lambda v: kernel_func(v / bandwidth), *u_range)
        return kernel_func(scaled_u) / normalization_factor

    return kernel_with_lambda

# 核函数绘图生成器
def generate_kernel_plot(
    kernel_name, kernel_func, x_range, u_range, lambda_values, y_range
):
    fig = go.Figure()

    # 初始 lambda 值
    initial_lambda = lambda_values[len(lambda_values) // 2]

    # 生成初始核函数曲线
    x = np.linspace(*x_range, 500)
    kernel_with_lambda = renormalized_kernel(kernel_func, u_range, initial_lambda)
    y = kernel_with_lambda(x)
    fig.add_trace(
        go.Scatter(
            x=x,
            y=y,
            mode="lines",
            name=f"{kernel_name} 核函数 (λ={initial_lambda:.2f})",
            line=dict(color="green"),
        )
    )

    # 为滑块创建帧
    frames = []
    for bandwidth in lambda_values:
        kernel_with_lambda = renormalized_kernel(kernel_func, u_range, bandwidth)
        y = kernel_with_lambda(x)
        frames.append(
            go.Frame(
                data=[
                    go.Scatter(
                        x=x,
                        y=y,
                        mode="lines",
                        name=f"{kernel_name} 核函数 (λ={bandwidth:.2f})",
                        line=dict(color="green"),
                    )
                ],
                name=f"{bandwidth:.2f}",
            )
        )

    # 将帧添加到图形
    fig.frames = frames

    # 添加滑块
    sliders = [
        {
            "active": len(lambda_values) // 2,
            "currentvalue": {"prefix": "带宽 λ: "},
            "steps": [
                {
                    "args": [
                        [f"{bandwidth:.2f}"],
                        {"frame": {"duration": 0, "redraw": True}, "mode": "immediate"},
                    ],
                    "label": f"{bandwidth:.2f}",
                    "method": "animate",
                }
                for bandwidth in lambda_values
            ],
        }
    ]

    # 更新布局
    fig.update_layout(
        title=f"{kernel_name} 核函数",
        xaxis_title="u",
        yaxis_title="K(u)",
        yaxis_range=y_range,
        sliders=sliders,
        autosize=True,
        updatemenus=[
            {
                "buttons": [
                    # {
                    #     "args": [
                    #         None,
                    #         {
                    #             "frame": {"duration": 500, "redraw": True},
                    #             "fromcurrent": True,
                    #         },
                    #     ],
                    #     "label": "播放",
                    #     "method": "animate",
                    # },
                    # {
                    #     "args": [
                    #         [None],
                    #         {
                    #             "frame": {"duration": 0, "redraw": True},
                    #             "mode": "immediate",
                    #         },
                    #     ],
                    #     "label": "暂停",
                    #     "method": "animate",
                    # },
                ],
                "direction": "left",
                "pad": {"r": 10, "t": 87},
                "showactive": False,
                "type": "buttons",
                "x": 0.1,
                "xanchor": "right",
                "y": 0,
                "yanchor": "top",
            }
        ],
    )

    return fig

# 核函数
kernels = {
    "Epanechnikov": epanechnikov_kernel,
    "Tricube": tricube_kernel,
    "Gaussian": gaussian_kernel,
}

# 参数
x_range_plot = (-3, 3)  # 绘图中 u 值的范围
u_range_integration = (-3, 3)  # 归一化积分范围
lambda_values = np.linspace(0.01, 2, 20)  # 从 0.01 到 2 的线性 lambda 值
y_range_plot = (0, 1.5)  # 调整后的范围以适应归一化函数

# 为每个核函数生成并显示图形
themes = [
    {
        "name": "light",
        "template": "plotly_white",
        "font_color": "#141413",
        "background": "#f0efea",
        "axis_color": "#141413",
        "gridcolor": "rgba(20, 20, 19, 0.2)",
    },
    {
        "name": "dark",
        "template": "plotly_dark",
        "font_color": "#f0efea",
        "background": "#141413",
        "axis_color": "#f0efea",
        "gridcolor": "rgba(240, 239, 234, 0.2)",
    },
]

output_dir = Path(__file__).resolve().parents[3] / "static"
output_dir.mkdir(parents=True, exist_ok=True)

for kernel_name, kernel_func in kernels.items():
    fig = generate_kernel_plot(
        kernel_name,
        kernel_func,
        x_range_plot,
        u_range_integration,
        lambda_values,
        y_range_plot,
    )

    # 将主题化图形保存为 HTML 文件
    for theme in themes:
        themed_fig = go.Figure(fig)
        themed_fig.update_layout(
            template=theme["template"],
            font=dict(color=theme["font_color"]),
            paper_bgcolor=theme["background"],
            plot_bgcolor=theme["background"],
        )
        themed_fig.update_xaxes(
            showline=True,
            linecolor=theme["axis_color"],
            tickcolor=theme["axis_color"],
            tickfont=dict(color=theme["axis_color"]),
            title_font=dict(color=theme["axis_color"]),
            gridcolor=theme["gridcolor"],
            zeroline=False,
        )
        themed_fig.update_yaxes(
            showline=True,
            linecolor=theme["axis_color"],
            tickcolor=theme["axis_color"],
            tickfont=dict(color=theme["axis_color"]),
            title_font=dict(color=theme["axis_color"]),
            gridcolor=theme["gridcolor"],
            zeroline=False,
        )

        filename = (
            output_dir
            / f"{kernel_name}_dynamic_normalization_kernel_function_{theme['name']}.html"
        )
        themed_fig.write_html(filename, auto_play=False)
        print(f"已将 {kernel_name} 核函数图形保存至 {filename}")

    # 显示图形
    fig.show()

结果展示

现在,我们为每个核函数绘制结果图。每个图表都带有一个 滑动条,用于实时控制输出。

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
绘图代码
from pathlib import Path

import numpy as np
import plotly.graph_objects as go

# 定义核函数
def epanechnikov_kernel(u):
    return np.maximum(0, 0.75 * (1 - u**2))

def tricube_kernel(u):
    return np.maximum(0, (1 - np.abs(u) ** 3) ** 3)

def gaussian_kernel(u):
    return np.exp(-0.5 * u**2) / np.sqrt(2 * np.pi)

# 核回归函数
def kernel_regression(X, Y, x_curve, kernel_func, bandwidth):
    y_curve = []
    for x in x_curve:
        distances = np.abs(X - x) / bandwidth
        weights = kernel_func(distances)
        weighted_average = (
            np.sum(weights * Y) / np.sum(weights) if np.sum(weights) > 0 else 0
        )
        y_curve.append(weighted_average)
    return y_curve

# 生成数据
np.random.seed(42)
n_points = 100
X = np.random.uniform(0, 1, n_points)
epsilon = np.random.normal(0, 1 / 3, n_points)
Y = np.sin(4 * X) + epsilon

# 真实曲线
x_true = np.linspace(0, 1, 500)
y_true = np.sin(4 * x_true)

# 用于核估计的点
x_curve = x_true

# 核函数
kernels = {
    "Epanechnikov": epanechnikov_kernel,
    "Tricube": tricube_kernel,
    "Gaussian": gaussian_kernel,
}

# 滑动条带宽的对数范围
lambda_values = np.logspace(-2, 0, 20)  # 从 0.01 到 1

# 为每个核生成独立的图表
themes = [
    {
        "name": "light",
        "template": "plotly_white",
        "font_color": "#141413",
        "background": "#f0efea",
        "axis_color": "#141413",
        "gridcolor": "rgba(20, 20, 19, 0.2)",
    },
    {
        "name": "dark",
        "template": "plotly_dark",
        "font_color": "#f0efea",
        "background": "#141413",
        "axis_color": "#f0efea",
        "gridcolor": "rgba(240, 239, 234, 0.2)",
    },
]

output_dir = Path(__file__).resolve().parents[3] / "static"
output_dir.mkdir(parents=True, exist_ok=True)

# 为每个核生成独立的图表
for kernel_name, kernel_func in kernels.items():
    fig = go.Figure()

    # 添加噪声数据的散点
    fig.add_trace(
        go.Scatter(
            x=X, y=Y, mode="markers", name="含噪数据", marker=dict(color="gray")
        )
    )

    # 添加真实函数
    fig.add_trace(
        go.Scatter(
            x=x_true,
            y=y_true,
            mode="lines",
            name="真实函数",
            line=dict(color="red"),
        )
    )

    # 添加初始核曲线
    initial_bandwidth = lambda_values[0]
    y_curve = kernel_regression(X, Y, x_curve, kernel_func, initial_bandwidth)
    fig.add_trace(
        go.Scatter(
            x=x_curve,
            y=y_curve,
            mode="lines",
            name=f"Nadaraya-Watson ({kernel_name})",
            line=dict(color="green"),
        )
    )

    # 为滑动条创建帧
    frames = []
    for bandwidth in lambda_values:
        y_curve = kernel_regression(X, Y, x_curve, kernel_func, bandwidth)
        frames.append(
            go.Frame(
                data=[
                    go.Scatter(
                        x=X,
                        y=Y,
                        mode="markers",
                        name="含噪数据",
                        marker=dict(color="gray"),
                    ),
                    go.Scatter(
                        x=x_true,
                        y=y_true,
                        mode="lines",
                        name="真实函数",
                        line=dict(color="red"),
                    ),
                    go.Scatter(
                        x=x_curve,
                        y=y_curve,
                        mode="lines",
                        name=f"Nadaraya-Watson ({kernel_name})",
                        line=dict(color="green"),
                    ),
                ],
                name=f"{bandwidth:.2f}",
            )
        )

    # 将帧添加到图表
    fig.frames = frames

    # 添加滑动条
    sliders = [
        {
            "active": 0,
            "currentvalue": {"prefix": "带宽 λ: "},
            "steps": [
                {
                    "args": [
                        [f"{bandwidth:.2f}"],
                        {"frame": {"duration": 0, "redraw": True}, "mode": "immediate"},
                    ],
                    "label": f"{bandwidth:.2f}",
                    "method": "animate",
                }
                for bandwidth in lambda_values
            ],
        }
    ]

    # 更新布局
    fig.update_layout(
        autosize=True,
        title=f"Nadaraya-Watson 核回归 ({kernel_name} 核)",
        xaxis_title="X",
        yaxis_title="Y",
        sliders=sliders,
        updatemenus=[
            {
                "buttons": [
                    {
                        "args": [
                            None,
                            {
                                "frame": {"duration": 500, "redraw": True},
                                "fromcurrent": True,
                            },
                        ],
                        "label": "播放",
                        "method": "animate",
                    },
                    {
                        "args": [
                            [None],
                            {
                                "frame": {"duration": 0, "redraw": True},
                                "mode": "immediate",
                            },
                        ],
                        "label": "暂停",
                        "method": "animate",
                    },
                ],
                "direction": "left",
                "pad": {"r": 10, "t": 87},
                "showactive": False,
                "type": "buttons",
                "x": 0.1,
                "xanchor": "right",
                "y": 0,
                "yanchor": "top",
            }
        ],
    )

    # 按主题将图表保存为 HTML 文件
    for theme in themes:
        themed_fig = go.Figure(fig)
        themed_fig.update_layout(
            template=theme["template"],
            font=dict(color=theme["font_color"]),
            paper_bgcolor=theme["background"],
            plot_bgcolor=theme["background"],
        )
        themed_fig.update_xaxes(
            showline=True,
            linecolor=theme["axis_color"],
            tickcolor=theme["axis_color"],
            tickfont=dict(color=theme["axis_color"]),
            title_font=dict(color=theme["axis_color"]),
            gridcolor=theme["gridcolor"],
            zeroline=False,
        )
        themed_fig.update_yaxes(
            showline=True,
            linecolor=theme["axis_color"],
            tickcolor=theme["axis_color"],
            tickfont=dict(color=theme["axis_color"]),
            title_font=dict(color=theme["axis_color"]),
            gridcolor=theme["gridcolor"],
            zeroline=False,
        )

        filename = output_dir / f"{kernel_name}_kernel_regression_{theme['name']}.html"
        themed_fig.write_html(filename, auto_play=False)
        print(f"已将 {kernel_name} 核的绘图保存至 {filename}")

    # 显示图表
    fig.show()

我们可以看到,数据的一个简单加权平均就能很好地模拟正弦曲线。

局部线性回归

在 Nadaraya-Watson 核回归中,我们在由核函数 定义的邻域内进行加权平均。这种方法的一个潜在问题是局部邻域内的平滑插值,因为我们实际上并未假设该区域遵循任何模型。

如果我们假设每个区域都是局部线性的呢?那么,我们就可以求解最小二乘拟合并自由插值!

区域: -近邻

我们将局部区域定义为输入点的 个最近邻。令 , 为对应的 值。最小二乘拟合系数为

Loading...
Loading...
绘图代码
from pathlib import Path

import numpy as np
import plotly.graph_objects as go

# 生成数据
np.random.seed(42)
n_points = 100
X = np.random.uniform(0, 1, n_points)
epsilon = np.random.normal(0, 1 / 3, n_points)
Y = np.sin(4 * X) + epsilon

# 真实函数
x_true = np.linspace(0, 1, 500)
y_true = np.sin(4 * x_true)

# k-近邻局部线性回归
def knn_linear_regression(X, Y, x_curve, k_range):
    y_curves = {}
    for k in k_range:
        y_curve = []
        for x in x_curve:
            # 找出 k 个最近邻
            distances = np.abs(X - x)
            nearest_indices = np.argsort(distances)[:k]

            # 选取 k 个最近邻
            X_knn = X[nearest_indices]
            Y_knn = Y[nearest_indices]

            # 为 k-近邻创建设计矩阵
            X_design = np.vstack((np.ones_like(X_knn), X_knn)).T

            # 使用普通最小二乘法求解 beta
            beta = np.linalg.pinv(X_design.T @ X_design) @ X_design.T @ Y_knn

            # 预测 y 值
            y_curve.append(beta[0] + beta[1] * x)
        y_curves[k] = y_curve
    return y_curves

# 公共变量
x_curve = np.arange(0, 1, 0.01)
k_range = range(1, 21)  # k 的取值范围从 1 到 20
initial_k = 10  # k 的默认值

# 使用 k-近邻计算局部线性回归
y_curves_knn = knn_linear_regression(X, Y, x_curve, k_range)

# 创建 Plotly 图形
fig = go.Figure()

# 添加静态轨迹
fig.add_trace(
    go.Scatter(x=X, y=Y, mode="markers", name="含噪数据", marker=dict(color="gray"))
)

fig.add_trace(
    go.Scatter(
        x=x_true, y=y_true, mode="lines", name="真实函数", line=dict(color="red")
    )
)

# 添加第一条 k-近邻曲线 (k=initial_k)
fig.add_trace(
    go.Scatter(
        x=x_curve,
        y=y_curves_knn[initial_k],
        mode="lines",
        name="k-近邻曲线",
        line=dict(color="yellow"),
    )
)

# 定义滑块步骤
steps = []
for k in k_range:
    step = dict(
        method="update",
        args=[
            {"y": [Y, y_true, y_curves_knn[k]]},  # 更新轨迹的 y 数据
            {
                "title": f"k-近邻局部线性回归曲线,k = {k}"
            },  # 动态更新标题
        ],
        label=f"{k}",
    )
    steps.append(step)

# 将滑块添加到布局中
sliders = [
    dict(
        active=k_range.index(initial_k),  # 使用 initial_k 的索引
        currentvalue={"prefix": "k = "},
        pad={"t": 50},
        steps=steps,
    )
]

fig.update_layout(
    autosize=True,
    sliders=sliders,
    title=f"k-近邻局部线性回归曲线,k = {initial_k}",
    xaxis_title="X",
    yaxis_title="Y",
)

themes = [
    {
        "name": "light",
        "template": "plotly_white",
        "font_color": "#141413",
        "background": "#f0efea",
        "axis_color": "#141413",
        "gridcolor": "rgba(20, 20, 19, 0.2)",
    },
    {
        "name": "dark",
        "template": "plotly_dark",
        "font_color": "#f0efea",
        "background": "#141413",
        "axis_color": "#f0efea",
        "gridcolor": "rgba(240, 239, 234, 0.2)",
    },
]

output_dir = Path(__file__).resolve().parents[3] / "static"
output_dir.mkdir(parents=True, exist_ok=True)

for theme in themes:
    themed_fig = go.Figure(fig)
    themed_fig.update_layout(
        template=theme["template"],
        font=dict(color=theme["font_color"]),
        paper_bgcolor=theme["background"],
        plot_bgcolor=theme["background"],
    )
    themed_fig.update_xaxes(
        showline=True,
        linecolor=theme["axis_color"],
        tickcolor=theme["axis_color"],
        tickfont=dict(color=theme["axis_color"]),
        title_font=dict(color=theme["axis_color"]),
        gridcolor=theme["gridcolor"],
        zeroline=False,
    )
    themed_fig.update_yaxes(
        showline=True,
        linecolor=theme["axis_color"],
        tickcolor=theme["axis_color"],
        tickfont=dict(color=theme["axis_color"]),
        title_font=dict(color=theme["axis_color"]),
        gridcolor=theme["gridcolor"],
        zeroline=False,
    )

    html_path = output_dir / f"knn_slider_llr_{theme['name']}.html"
    themed_fig.write_html(html_path)
    print(f"已保存交互式 k-近邻图至 {html_path}")

# 显示图形
fig.show()

可以看到,当 较小时,输出结果可能相当粗糙。

区域:核函数

或许我们可以借鉴 Nadaraya-Watson 核的一些思想。我们希望不同程度地考虑训练集中的所有点,在局部区域内赋予较高权重,在区域外赋予较低权重。

为此,我们可以使用加权最小二乘目标函数,其权重为 。其解为

绘制不同核函数 的结果:

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
绘图代码
from pathlib import Path

import numpy as np
import plotly.graph_objects as go

# 生成数据
np.random.seed(42)
n_points = 100
X = np.random.uniform(0, 1, n_points)
epsilon = np.random.normal(0, 1 / 3, n_points)
Y = np.sin(4 * X) + epsilon

# 真实函数
x_true = np.linspace(0, 1, 500)
y_true = np.sin(4 * x_true)

# 核函数
def gaussian_kernel(u):
    return np.exp(-0.5 * u**2)

def epanechnikov_kernel(u):
    return np.maximum(0, 1 - u**2)

def tricube_kernel(u):
    return np.maximum(0, (1 - np.abs(u) ** 3) ** 3)

# 针对特定核函数的局部线性回归
def local_linear_regression(X, Y, x_curve, bandwidths, kernel):
    y_curves = {}
    for λ in bandwidths:
        λ_rounded = round(λ, 2)
        y_curve = []
        for x in x_curve:
            # 使用指定的核函数计算权重
            distances = (X - x) / λ
            weights = kernel(distances)
            W = np.diag(weights)

            # 创建设计矩阵
            X_design = np.vstack((np.ones_like(X), X)).T

            # 使用加权最小二乘法求解 beta
            beta = np.linalg.pinv(X_design.T @ W @ X_design) @ X_design.T @ W @ Y

            # 预测 y 值
            y_curve.append(beta[0] + beta[1] * x)
        y_curves[λ_rounded] = y_curve
    return y_curves

# 公共变量
x_curve = np.arange(0, 1, 0.01)
bandwidths = np.linspace(0.05, 0.5, 20)
initial_λ = bandwidths[len(bandwidths) // 2]

# 为每个核函数生成绘图
kernels = {
    "Gaussian Kernel": gaussian_kernel,
    "Epanechnikov Kernel": epanechnikov_kernel,
    "Tricube Kernel": tricube_kernel,
}
plots = []

for kernel_name, kernel_func in kernels.items():
    # 使用指定的核函数计算 LLR
    y_curves = local_linear_regression(X, Y, x_curve, bandwidths, kernel_func)

    # 创建 Plotly 图形
    fig = go.Figure()

    # 添加静态轨迹
    fig.add_trace(
        go.Scatter(
            x=X, y=Y, mode="markers", name="含噪数据", marker=dict(color="gray")
        )
    )

    fig.add_trace(
        go.Scatter(
            x=x_true,
            y=y_true,
            mode="lines",
            name="真实函数",
            line=dict(color="red"),
        )
    )

    # 添加第一条 LLR 曲线(使用带宽的中间值)
    fig.add_trace(
        go.Scatter(
            x=x_curve,
            y=y_curves[round(initial_λ, 2)],
            mode="lines",
            name=f"{kernel_name} 曲线",
            line=dict(color="yellow"),
        )
    )

    # 定义滑块步骤
    steps = []
    for λ in bandwidths:
        λ_rounded = round(λ, 2)
        step = dict(
            method="update",
            args=[
                {"y": [Y, y_true, y_curves[λ_rounded]]},  # 更新轨迹的 y 数据
                {
                    "title": f"LLR: {kernel_name} 带宽 λ = {λ_rounded}"
                },  # 动态更新标题
            ],
            label=f"{λ_rounded}",
        )
        steps.append(step)

    # 将滑块添加到布局中
    sliders = [
        dict(
            active=len(bandwidths) // 2,  # 使用中间带宽的索引
            currentvalue={"prefix": "λ = "},
            pad={"t": 50},
            steps=steps,
        )
    ]

    fig.update_layout(
        autosize=True,
        sliders=sliders,
        title=f"LLR: {kernel_name} 带宽 λ = {round(initial_λ, 2)}",
        xaxis_title="X",
        yaxis_title="Y",
    )

    plots.append(fig)

# 显示并保存带有主题背景的绘图
themes = [
    {
        "name": "light",
        "template": "plotly_white",
        "font_color": "#141413",
        "background": "#f0efea",
        "axis_color": "#141413",
        "gridcolor": "rgba(20, 20, 19, 0.2)",
    },
    {
        "name": "dark",
        "template": "plotly_dark",
        "font_color": "#f0efea",
        "background": "#141413",
        "axis_color": "#f0efea",
        "gridcolor": "rgba(240, 239, 234, 0.2)",
    },
]

output_dir = Path(__file__).resolve().parents[3] / "static"
output_dir.mkdir(parents=True, exist_ok=True)

for kernel_name, fig in zip(kernels.keys(), plots):
    fig.show()
    for theme in themes:
        themed_fig = go.Figure(fig)
        themed_fig.update_layout(
            template=theme["template"],
            font=dict(color=theme["font_color"]),
            paper_bgcolor=theme["background"],
            plot_bgcolor=theme["background"],
        )
        themed_fig.update_xaxes(
            showline=True,
            linecolor=theme["axis_color"],
            tickcolor=theme["axis_color"],
            tickfont=dict(color=theme["axis_color"]),
            title_font=dict(color=theme["axis_color"]),
            gridcolor=theme["gridcolor"],
            zeroline=False,
        )
        themed_fig.update_yaxes(
            showline=True,
            linecolor=theme["axis_color"],
            tickcolor=theme["axis_color"],
            tickfont=dict(color=theme["axis_color"]),
            title_font=dict(color=theme["axis_color"]),
            gridcolor=theme["gridcolor"],
            zeroline=False,
        )

        filename = (
            output_dir
            / f"llr_{kernel_name.lower().replace(' ', '_')}_{theme['name']}.html"
        )
        themed_fig.write_html(filename)
        print(f"已将 {kernel_name} 的交互式绘图保存至 {filename}")

我认为结果看起来平滑多了!

参考文献

  • 《统计学习基础》 - Hastie、Tibshirani 与 Friedman 合著(2009年)。一本关于数据挖掘、推断与预测的全面指南。了解更多。
AI 透明度

交互式演示使用了ChatGPT进行编码。所有文字内容均为本人原创。