0Pricing
Deep Learning Academy · レッスン

ステップ関数と線形な判定

パーセプトロンが2つのクラスを分ける仕組みを学びます

「ステップ関数と線形な判定」はCoddyKit上の無料Deep Learning Academyレッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはDeep Learning Academy学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Deep Learning Academyコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

From Score to Decision

The weighted sum gives a score, but you often need a clean yes or no. A step function turns that raw score into a firm decision.

What the Step Does

The step function outputs 1 if the score is at or above zero, and 0 if it is below. No in-between, just on or off. ⚡

output = 1 if score >= 0 else 0

The Threshold

Zero is the threshold where the decision flips. Cross it and the neuron fires; stay below and it stays quiet.

Bias Moves the Threshold

Changing the bias slides that threshold. A larger bias makes the neuron fire more easily, a smaller one makes it harder.

A Line in the Data

With two inputs, the firing rule draws a straight line on a graph. Points on one side say yes, points on the other say no.

The Decision Boundary

That line is the decision boundary. It splits your feature space into two regions, one class on each side.

Weights Tilt the Line

The weights control the angle and steepness of the boundary. Adjusting them rotates the dividing line across your data.

Linear Means Straight

This is a linear decision: the boundary is always a straight line or flat plane. It cannot bend or curve around the data.

Linearly Separable Data

If one straight line can split your classes cleanly, the data is linearly separable. A single neuron handles this case perfectly.

The Hard Edge Problem

The step's hard edge jumps abruptly from 0 to 1. That sharp jump has no useful slope, which makes gradient-based learning tricky later.

A Tiny Classifier

Combine the weighted sum with a step and you have a working binary classifier in two short lines of Python.

score = w1 * x1 + w2 * x2 + b
label = 1 if score >= 0 else 0

Quick Check

Think about the shape a single neuron can carve.

Recap

The step function turns a score into 0 or 1 at a threshold. With two inputs it draws a straight decision boundary, splitting linearly separable data. 📏

よくある質問

「ステップ関数と線形な判定」レッスンは無料ですか?

はい。「ステップ関数と線形な判定」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Deep Learning Academyコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Deep Learning Academyコースには全4レッスンが含まれています。

「ステップ関数と線形な判定」で何を学びますか?

パーセプトロンが2つのクラスを分ける仕組みを学びます ブラウザで直接実行するハンズオンコードでDeep Learning Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Deep Learning Academyを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのDeep Learning Academyは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。

「ステップ関数と線形な判定」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このDeep Learning Academyレッスンでコードを書いて実行できますか?

はい。すべてのDeep Learning Academyレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. 重み、バイアス、重み付き和
  2. ステップ関数と線形な判定
  3. パーセプトロンをゼロから実装する
  4. XOR問題:ニューロンが1つでは足りない理由
← Deep Learning Academyに戻る