Pytorch学习笔记-刘二老师RNN高级篇-代码注释及结果

目录

Pycharm代码:(略有修改)

刘二老师源码:

运行结果:

​​​​​​​

Pycharm代码:(略有修改)

# 导入第三方库
from torch.utils.data import Dataset, DataLoader
from torch.nn.utils.rnn import pack_padded_sequence
import torch
import gzip
import csv
import matplotlib.pyplot as plt
import numpy as np
import time
import math

# 参数设置
HIDDEN_SIZE = 100
BATCH_SIZE = 256
N_LAYER = 2
N_EPOCHS = 100
N_CHARS = 128
USE_GPU = False

# 数据类
class NameDataset(Dataset):
    def __init__(self, is_train_set = True): #构造函数
        filename = 'names_train.csv.gz' if is_train_set else 'names_test.csv.gz' # 数据集的位置根据自己的文件夹设定,
                                                                                 # 此处与刘二老师的源码不同
        with gzip.open(filename, 'rt') as f:
            reader = csv.reader(f)
            rows = list(reader)
        self.names = [row[0] for row in rows] # names
        self.len = len(self.names) # 样本数
        self.countries = [row[1] for row in rows] # countries
        self.country_list = list(sorted(set(self.countries))) # set()去重,删除重复的数据; sorted()排序
        self.country_dict = self.getCountryDict()
        self.country_num = len(self.country_list) # 国家数

    def __getitem__(self, index): # 取数据
        return self.names[index], self.country_dict[self.countries[index]]

    def __len__(self): # 取样本数
        return self.len

    def getCountryDict(self):
        country_dict = dict()
        for idx, country_name in enumerate(self.country_list, 0): # 从0开始遍历
            country_dict[country_name] = idx  # 构造键字对,为国家编码;如:{'china': 1, 'japan': 2}
        return country_dict

    def idx2country(self, index):
        return self.country_list[index] # 根据索引取出相应的国家名

    def getCountriesNum(self):
        return self.country_num # 返回国家数

# 导入数据集
trainset = NameDataset(is_train_set = True) # 训练集
trainloader = DataLoader(trainset, batch_size = BATCH_SIZE, shuffle = True)
testset = NameDataset(is_train_set = False) # 测试集
testloader = DataLoader(testset, batch_size = BATCH_SIZE, shuffle = False)

N_COUNTRY = trainset.getCountriesNum() # 国家数

#
class RNNClassifier(torch.nn.Module):
    def __init__(self, input_size, hidden_size, output_size, n_layers = 1, bidirectional = True): # bidirectional:单双向循环
        super(RNNClassifier, self).__init__() # 构造函数
        self.hidden_size = hidden_size # 网络输出维度
        self.n_layers = n_layers # 层
        self.n_directions = 2 if bidirectional else 1 # 双向循环,输出的hidden是正向和反向hidden的拼接,所以要 *2

        self.embedding = torch.nn.Embedding(input_size, hidden_size) #嵌入层
        self.gru = torch.nn.GRU(hidden_size, hidden_size, n_layers, bidirectional = bidirectional) # GRU循环神经网络
        self.fc = torch.nn.Linear(hidden_size * self.n_directions, output_size) # 全连接层

    def _init_hidden(self, batch_size): #初始化h_0
        hidden = torch.zeros(self.n_layers * self.n_directions, batch_size, self.hidden_size) # 双向: *2
        return create_tensor(hidden)

    def forward(self, input, seq_lengths):
        # input shape : B x S -> S x B
        input = input.t() # 转置
        batch_size = input.size(1) # 计算batch_size

        hidden = self._init_hidden(batch_size) # 获得h_0
        embedding = self.embedding(input)

        # pack them up
        gru_input = pack_padded_sequence(embedding, seq_lengths) # 打包
        output, hidden = self.gru(gru_input, hidden)
        if self.n_directions == 2: #双向循环
            hidden_cat = torch.cat([hidden[-1], hidden[-2]], dim = 1) # 拼接hidden
        else:
            hidden_cat = hidden[-1]
        fc_output = self.fc(hidden_cat) # 全连接层
        return fc_output

def name2list(name):
    arr = [ord(c) for c in name] # 函数ord()返回每一个字母的ascii值
    return arr, len(arr) # 返回元组

def make_tensors(names, countries):
    sequences_and_lengths = [name2list(name) for name in names] # 元组
    name_sequences = [sl[0] for sl in sequences_and_lengths] # 取名字,实为一组ascii码
    seq_lengths = torch.LongTensor([sl[1] for sl in sequences_and_lengths]) # LongTensor型,取长度
    countries = countries.long()

    # make tensor of name, BatchSize x SeqLen
    seq_tensor = torch.zeros(len(name_sequences), seq_lengths.max()).long() # 初始化一个全零的tensor,行:名字数,列:最长的ascii名字
    for idx, (seq, seq_len) in enumerate(zip(name_sequences, seq_lengths), 0): # 遍历
        seq_tensor[idx, :seq_len] = torch.LongTensor(seq)  # 将ascii码 依次输入到全零的tensor中(对应位置覆盖相应的ascii值,替代相应长度)

    # sort by length to use pack_padded_sequence
    seq_lengths, perm_idx = seq_lengths.sort(dim = 0, descending = True) # 排序,依据序列长度降序
    seq_tensor = seq_tensor[perm_idx]
    countries = countries[perm_idx]

    return create_tensor(seq_tensor), create_tensor(seq_lengths), create_tensor(countries)

def create_tensor(tensor):  # 是否使用GPU
    if USE_GPU:
        device = torch.device("cuda:0")
        tensor = tensor.to(device)
    return tensor

def time_since(since): # 计算程序运行的时间
    s = time.time() - since
    m = math.floor(s / 60)
    s -= m * 60
    return '%dm %ds' % (m, s)

def trainModel(epoch):
    total_loss = 0
    for i, (names, countries) in enumerate(trainloader, 1):
        inputs, seq_lengths, target = make_tensors(names, countries) # 生成符合尺寸大小的Tensor数据
        output = classifier(inputs, seq_lengths) # 输入至网络训练
        loss = criterion(output, target) # 计算损失
        optimizer.zero_grad() # 梯度置0
        loss.backward() # 反向传播
        optimizer.step() # 优化参数

        total_loss += loss.item()
        if i % 10 == 0:
            print(f'[{time_since(start)}] Epoch {epoch}', end = '')
            print(f'[{i * len(inputs)}/{len(trainset)}]', end = '')
            print(f'loss={total_loss / (i * len(inputs))}')
    return total_loss

def testModel():
    correct = 0
    total = len(testset)
    print("evaluating trained model ...")
    with torch.no_grad():
        for i, (names, countries) in enumerate(testloader, 1):
            inputs, seq_lengths, target = make_tensors(names, countries)
            output = classifier(inputs, seq_lengths)
            pred = output.max(dim = 1, keepdim = True)[1]
            correct += pred.eq(target.view_as(pred)).sum().item()

        percent = '%.2f' % (100 * correct / total)
        print(f'Test set: Accuracy {correct}/{total} {percent}%')

    return correct/total


def main():
    if USE_GPU:
        device = torch.device("cuda:0")
        classifier.to(device)

    print("Training for %d epochs..." % N_EPOCHS)
    acc_list = []
    for epoch in range(1, N_EPOCHS + 1):
        # Train cycle
        trainModel(epoch)
        acc = testModel()
        acc_list.append(acc)

    epoch = np.arange(1, len(acc_list) + 1, 1)
    acc_list = np.array(acc_list)
    plt.plot(epoch, acc_list)
    plt.xlabel('Epoch')
    plt.ylabel('Accuracy')
    plt.grid()
    plt.show()

classifier = RNNClassifier(N_CHARS, HIDDEN_SIZE, N_COUNTRY, N_LAYER) # 生成模型对象
criterion = torch.nn.CrossEntropyLoss() # 交叉熵损失计算器
optimizer = torch.optim.Adam(classifier.parameters(), lr=0.001) # 优化器
start = time.time() # 开始时间

main()

刘二老师源码:

# 导入第三方库
from torch.utils.data import Dataset, DataLoader
from torch.nn.utils.rnn import pack_padded_sequence
import torch
import gzip
import csv
import matplotlib.pyplot as plt
import numpy as np
import time
import math
 
# 参数设置
HIDDEN_SIZE = 100
BATCH_SIZE = 256
N_LAYER = 2
N_EPOCHS = 100
N_CHARS = 128
USE_GPU = False
 
# 数据类
class NameDataset(Dataset):
    def __init__(self, is_train_set = True):
        filename = 'names_train.csv.gz' if is_train_set else 'names_test.csv.gz' # 按所在文件夹修改
        with gzip.open(filename, 'rt') as f:
            reader = csv.reader(f)
            rows = list(reader)
        self.names = [row[0] for row in rows]
        self.len = len(self.names)
        self.countries = [row[1] for row in rows]
        self.country_list = list(sorted(set(self.countries)))
        self.country_dict = self.getCountryDict()
        self.country_num = len(self.country_list)
 
    def __getitem__(self, index):
        return self.names[index], self.country_dict[self.countries[index]]
 
    def __len__(self):
        return self.len
 
    def getCountryDict(self):
        country_dict = dict()
        for idx, country_name in enumerate(self.country_list, 0):
            country_dict[country_name] = idx
        return country_dict
 
    def idx2country(self, index):
        return self.country_list[index]
 
    def getCountriesNum(self):
        return self.country_num
 
# 导入数据集
trainset = NameDataset(is_train_set = True)
trainloader = DataLoader(trainset, batch_size = BATCH_SIZE, shuffle = True)
testset = NameDataset(is_train_set = False)
testloader = DataLoader(testset, batch_size = BATCH_SIZE, shuffle = False)
 
N_COUNTRY = trainset.getCountriesNum()
 
class RNNClassifier(torch.nn.Module):
    def __init__(self, input_size, hidden_size, output_size, n_layers = 1, bidirectional = True):
        super(RNNClassifier, self).__init__()
        self.hidden_size = hidden_size
        self.n_layers = n_layers
        self.n_directions = 2 if bidirectional else 1
 
        self.embedding = torch.nn.Embedding(input_size, hidden_size)
        self.gru = torch.nn.GRU(hidden_size, hidden_size, n_layers, bidirectional = bidirectional)
        self.fc = torch.nn.Linear(hidden_size * self.n_directions, output_size)
 
    def _init_hidden(self, batch_size):
        hidden = torch.zeros(self.n_layers * self.n_directions, batch_size, self.hidden_size)
        return create_tensor(hidden)
 
    def forward(self, input, seq_lengths):
        # input shape : B x S -> S x B
        input = input.t()
        batch_size = input.size(1)
 
        hidden = self._init_hidden(batch_size)
        embedding = self.embedding(input)
 
        # pack them up
        gru_input = pack_padded_sequence(embedding, seq_lengths)
        output, hidden = self.gru(gru_input, hidden)
        if self.n_directions == 2:
            hidden_cat = torch.cat([hidden[-1], hidden[-2]], dim = 1)
        else:
            hidden_cat = hidden[-1]
        fc_output = self.fc(hidden_cat)
        return fc_output
 
def name2list(name):
    arr = [ord(c) for c in name]
    return arr, len(arr)
 
def make_tensors(names, countries):
    sequences_and_lengths = [name2list(name) for name in names]
    name_sequences = [sl[0] for sl in sequences_and_lengths]
    seq_lengths = torch.LongTensor([sl[1] for sl in sequences_and_lengths])
    countries = countries.long()
 
    # make tensor of name, BatchSize x SeqLen
    seq_tensor = torch.zeros(len(name_sequences), seq_lengths.max()).long()
    for idx, (seq, seq_len) in enumerate(zip(name_sequences, seq_lengths), 0):
        seq_tensor[idx, :seq_len] = torch.LongTensor(seq)
 
    # sort by length to use pack_padded_sequence
    seq_lengths, perm_idx = seq_lengths.sort(dim = 0, descending = True)
    seq_tensor = seq_tensor[perm_idx]
    countries = countries[perm_idx]
 
    return create_tensor(seq_tensor), create_tensor(seq_lengths), create_tensor(countries)
 
def create_tensor(tensor):
    if USE_GPU:
        device = torch.device("cuda:0")
        tensor = tensor.to(device)
    return tensor
 
def time_since(since):
    s = time.time() - since
    m = math.floor(s / 60)
    s -= m * 60
    return '%dm %ds' % (m, s)
 
def trainModel():
    total_loss = 0
    for i, (names, countries) in enumerate(trainloader, 1):
        inputs, seq_lengths, target = make_tensors(names, countries)
        output = classifier(inputs, seq_lengths)
        loss = criterion(output, target)
        optimizer.zero_grad()
        loss.backward()
        optimizer.step()
 
        total_loss += loss.item()
        if i % 10 == 0:
            print(f'[{time_since(start)}] Epoch {epoch}', end = '')
            print(f'[{i * len(inputs)}/{len(trainset)}]', end = '')
            print(f'loss={total_loss / (i * len(inputs))}')
    return total_loss
 
def testModel():
    correct = 0
    total = len(testset)
    print("evaluating trained model ...")
    with torch.no_grad():
        for i, (names, countries) in enumerate(testloader, 1):
            inputs, seq_lengths, target = make_tensors(names, countries)
            output = classifier(inputs, seq_lengths)
            pred = output.max(dim = 1, keepdim = True)[1]
            correct += pred.eq(target.view_as(pred)).sum().item()
 
        percent = '%.2f' % (100 * correct / total)
        print(f'Test set: Accuracy {correct}/{total} {percent}%')
 
    return correct/total
 
if __name__ == '__main__':
    classifier = RNNClassifier(N_CHARS, HIDDEN_SIZE, N_COUNTRY, N_LAYER)
    if USE_GPU:
        device = torch.device("cuda:0")
        classifier.to(device)
 
    criterion = torch.nn.CrossEntropyLoss()
    optimizer = torch.optim.Adam(classifier.parameters(), lr=0.001)
    start = time.time()
 
    print("Training for %d epochs..." % N_EPOCHS)
    acc_list = []
    for epoch in range(1, N_EPOCHS + 1):
        # Train cycle
        trainModel()
        acc = testModel()
        acc_list.append(acc)
 
    epoch = np.arange(1, len(acc_list) + 1, 1)
    acc_list = np.array(acc_list)
    plt.plot(epoch, acc_list)
    plt.xlabel('Epoch')
    plt.ylabel('Accuracy')
    plt.grid()
    plt.show()

运行结果:

为了节省运行时间,将N_PPCHS设为20(刘二老师源码为100)

  • 5
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值