blog

All articles

多クラス分類

Published:

By nob

Category: Posts

Tags: 機械学習 ニューラルネットワーク ディープラーニングがわかる数学入門 Python

多クラス分類

3種類の数字を識別してみる

6x6画素、モノクロ2階調の画像を識別してみる

import matplotlib.pyplot as plt
import numpy as np
from mlp import (
    ActivationLayer,
    FullyConnectedLayer,
    InputLayer,
    MeanSquaredError,
    MultiLayerPerceptron,
    Sigmoid,
)

np.set_printoptions(precision=3)

x_train = np.array(
    [
        [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0 …

Read more...