0Pricing
Deep Learning Academy · レッスン

重み、バイアス、重み付き和

基本となる公式 w·x + b を学びます

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

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

Meet the Neuron

A neuron is the tiniest unit of a neural network. It takes a few numbers in and produces one number out. That is the whole job. 🧠

Inputs Are Just Numbers

Every neuron receives inputs as numbers, like pixel brightness or a price. Anything you can measure can become an input feeding the neuron.

Each Input Has a Weight

Each input is paired with a weight that says how much it matters. Big weight means strong influence; tiny weight means the neuron mostly ignores it.

Multiply Then Add

The neuron multiplies every input by its weight, then sums the results. This running total is the heart of the weighted sum.

score = w1 * x1 + w2 * x2

The Bias Shifts Everything

The bias is an extra number added at the end. It shifts the result up or down so the neuron can fire even when inputs are zero.

score = w1 * x1 + w2 * x2 + b

The Core Formula

Put it together and you get the famous line w·x + b. Weights times inputs, plus bias. Almost every layer in deep learning starts here.

Why the Dot Product

That weight-times-input sum is exactly a dot product. Writing it as w·x lets you handle two inputs or two thousand with the same idea.

Code the Weighted Sum

Here is the weighted sum in plain Python. Loop over paired weights and inputs, multiply, and accumulate the total.

score = b
for w, x in zip(weights, inputs):
    score += w * x

What the Score Means

The final number is a score: higher means the neuron leans yes, lower means it leans no. A later step turns this score into a real decision.

Weights Are Learned

You do not hand-pick weights. Training nudges each weight up or down until the neuron's scores match the answers you want.

Bias Tunes Eagerness

A high bias makes a neuron eager to say yes; a low one makes it cautious. It sets the baseline before any input arrives.

Quick Check

Let's test the core formula behind a neuron.

Recap

A neuron multiplies inputs by weights, sums them, and adds a bias: w·x + b. Weights set importance, bias sets the baseline, and the result is a score. 🎯

よくある質問

「重み、バイアス、重み付き和」レッスンは無料ですか?

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

「重み、バイアス、重み付き和」で何を学びますか?

基本となる公式 w·x + b を学びます ブラウザで直接実行するハンズオンコードでDeep Learning Academyを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

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

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

「重み、バイアス、重み付き和」レッスンにはどのくらい時間がかかりますか?

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

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

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

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

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