1. ホーム
  2. python

[解決済み] このラムダ関数がどのように機能するかを理解する

2022-02-06 18:09:05

質問

ラムダ関数の仕組みは、自分では使っていないけど理解しているつもりだったんだけど。しかし、以下のラムダは このチュートリアル 全くもって困りました。

import matplotlib.pyplot as plt
import numpy as np
import sklearn
import sklearn.datasets
import sklearn.linear_model
import matplotlib

簡単だったね。もっとだ

# Generate a dataset and plot it
np.random.seed(0)
X, y = sklearn.datasets.make_moons(200, noise=0.20)
plt.scatter(X[:,0], X[:,1], s=40, c=y, cmap=plt.cm.Spectral)
clf = sklearn.linear_model.LogisticRegressionCV()
clf.fit(X, y)

# Helper function to plot a decision boundary.
# If you don't fully understand this function don't worry, it just generates the contour plot below.

def plot_decision_boundary(pred_func):

    # Set min and max values and give it some padding
    x_min, x_max = X[:, 0].min() - .5, X[:, 0].max() + .5
    y_min, y_max = X[:, 1].min() - .5, X[:, 1].max() + .5
    h = 0.01

    # Generate a grid of points with distance h between them
    xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h))

    # Predict the function value for the whole gid
    Z = pred_func(np.c_[xx.ravel(), yy.ravel()])
    Z = Z.reshape(xx.shape)

    # Plot the contour and training examples
    plt.contourf(xx, yy, Z, cmap=plt.cm.Spectral)
    plt.scatter(X[:, 0], X[:, 1], c=y, cmap=plt.cm.Spectral)

さて、よくわからない行です。

plot_decision_boundary(lambda x: clf.predict(x))

ラムダがどのように機能するかは何度も読み返しました。 x ここでは、以前からある正しい値を渡しています。どのように x を該当する値にマッピングしてください。

どのように解決するのですか?

x は、ここで渡したNumpyオブジェクトを連結したものです。

Z = pred_func(np.c_[xx.ravel(), yy.ravel()])

pred_func の引数です。 plot_decision_boundary() これを呼び出すことで、ラムダで定義された関数オブジェクトを呼び出すことになります。上の行は次のように訳される。

clf.predict(np.c_[xx.ravel(), yy.ravel()])