回声状态网络(ESN)对MNIST手写数字集识别

《Echo State Networks-based Reservoir Computing
for MNIST Handwritten Digits Recognition》文章源代码

import sys
import torch.utils.data
from torch.autograd import Variable
import torchvision.datasets
import echotorch.nn.reservoir
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
from tqdm import tqdm
from modules import ESNJS


# Experiment parameters
reservoir_size = 100
connectivity = 0.1
spectral_radius = 1.3
leaky_rate = 0.2
batch_size = 10
input_scaling = 0.6
ridge_param = 0.0
bias_scaling = 1.0
image_size = 15
degrees = [30, 60, 60]
n_digits = 10
block_size = 100
input_size = (len(degrees) + 1) * image_size
training_size = 60000
test_size = 10000
use_cuda = False and torch.cuda.is_available()

# MNIST data set train
train_loader = torch.utils.data.DataLoader(
    echotorch.datasets.ImageToTimeseries(
        torchvision.datasets.MNIST(
            root="./",
            train=True,
            download=False,
            transform=torchvision.transforms.Compose([
                echotorch.transforms.images.Concat([
                    echotorch.transforms.images.CropResize(size=image_size),
                    torchvision.transforms.Compose([
                        echotorch.transforms.images.Rotate(degree=degrees[0]),
                        echotorch.transforms.images.CropResize(size=image_size)
                    ]),
                    torchvision.transforms.Compose([
                        echotorch.transforms.images.Rotate(degree=degrees[1]),
                        echotorch.transforms.images.CropResize(size=image_size)
                    ]),
                    torchvision.transforms.Compose([
                        echotorch.transforms.images.Rotate(degree=degrees[2]),
                        echotorch.transforms.images.CropResize(size=image_size)
                    ])
                ],
                    sequential=True
                ),
                torchvision.transforms.ToTensor()
            ]),
            target_transform=echotorch.transforms.targets.ToOneHot(class_size=n_digits)
        ),
        n_images=block_size
    ),
    batch_size=batch_size,
    shuffle=True
)

# MNIST data set test
test_loader = torch.utils.data.DataLoader(
    echotorch.datasets.ImageToTimeseries(
        torchvision.datasets.MNIST(
            root="./",
            train=False,
            download=False,
            transform=torchvision.transforms.Compose([
                echotorch.transforms.images.Concat([
                    echotorch.transforms.images.CropResize(size=image_size),
                    torchvision.transforms.Compose([
                        echotorch.transforms.images.Rotate(degree=degrees[0]),
                        echotorch.transforms.images.CropResize(size=image_size)
                    ]),
                    torchvision.transforms.Compose([
                        echotorch.transforms.images.Rotate(degree=degrees[1]),
                        echotorch.transforms.images.CropResize(size=image_size)
                    ]),
                    torchvision.transforms.Compose([
                        echotorch.transforms.images.Rotate(degree=degrees[2]),
                        echotorch.transforms.images.CropResize(size=image_size)
                    ])
                ],
                    sequential=True
                ),
                torchvision.transforms.ToTensor()
            ]),
            target_transform=echotorch.transforms.targets.ToOneHot(class_size=n_digits)
        ),
        n_images=block_size
    ),
    batch_size=batch_size,
    shuffle=False
)

# Internal matrix
w_generator = echotorch.utils.matrix_generation.NormalMatrixGenerator(
    connectivity=connectivity,
    spetral_radius=spectral_radius
)

# Input weights
win_generator = echotorch.utils.matrix_generation.NormalMatrixGenerator(
    connectivity=connectivity,
    scale=input_scaling,
    apply_spectral_radius=False
)

# Bias vector
wbias_generator = echotorch.utils.matrix_generation.NormalMatrixGenerator(
    connectivity=connectivity,
    scale=bias_scaling,
    apply_spectral_radius=False
)

# New ESN-JS module
esn = ESNJS(
    input_dim=input_size,
    image_size=image_size,
    hidden_dim=reservoir_size,
    leaky_rate=leaky_rate,
    ridge_param=ridge_param,
    w_generator=w_generator,
    win_generator=win_generator,
    wbias_generator=wbias_generator
)

# Show the model
print(esn)

# Use cuda ?
if use_cuda:
    esn.cuda()
# end if

# For each training sample
with tqdm(total=training_size) as pbar:
    for batch_idx, (data, targets) in enumerate(train_loader):
        # Remove channel
        data = data.reshape(batch_size, 1500, 60)

        # To Variable
        inputs, targets = Variable(data.double()), Variable(targets.double())

        # CUDA
        if use_cuda:
            inputs, targets = inputs.cuda(), targets.cuda()
        # end if

        # Feed ESN
        states = esn(inputs, targets)

        # Update bar
        pbar.update(batch_size * block_size)
    # end for
# end with

# Finish training
esn.finalize()

# Total number of right prediction
true_positives = 0.0

# For each test batch
with tqdm(total=test_size) as pbar:
    for batch_idx, (data, targets) in enumerate(test_loader):
        # Remove channel
        data = data.reshape(batch_size, 1500, 60)

        # To Variable
        inputs, targets = Variable(data.double()), Variable(targets.double())

        # CUDA
        if use_cuda:
            inputs, targets = inputs.cuda(), targets.cuda()
        # end if

        # Feed ESN
        prediction = esn(inputs, None)

        # Predicted and truth
        _, predicted_class = prediction.max(2)
        _, true_class = targets.max(2)

        # Matching prediction
        true_positives += torch.sum(predicted_class == true_class)

        # Update bar
        pbar.update(batch_size * block_size)
    # end for
# end with

# Show accuracy
print("Error rate : {}".format(100.0 - (true_positives / float(test_size) * 100.0)))
  • 0
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值