• 批数据提取


    # -*- coding: utf-8 -*-
    """
    View more, visit my tutorial page: https://morvanzhou.github.io/tutorials/
    My Youtube Channel: https://www.youtube.com/user/MorvanZhou

    Dependencies:
    torch: 0.1.11
    """
    import torch
    import torch.utils.data as Data

    torch.manual_seed(1) # reproducible

    BATCH_SIZE = 5
    # BATCH_SIZE = 8

    x = torch.linspace(1, 10, 10) # this is x data (torch tensor)
    y = torch.linspace(10, 1, 10) # this is y data (torch tensor)

    torch_dataset = Data.TensorDataset(x, y)
    loader = Data.DataLoader(
    dataset=torch_dataset, # torch TensorDataset format
    batch_size=BATCH_SIZE, # mini batch size
    shuffle=True, # random shuffle for training
    num_workers=2, # subprocesses for loading data
    )


    def show_batch():
    for epoch in range(3): # train entire dataset 3 times
    for step, (batch_x, batch_y) in enumerate(loader): # for each training step
    # train your data...
    print('Epoch: ', epoch, '| Step: ', step, '| batch x: ',
    batch_x.numpy(), '| batch y: ', batch_y.numpy())


    if __name__ == '__main__':
    show_batch()
  • 相关阅读:
    iOS layoutSubviews 什么时候会被调用
    view
    NSDictionaryOfVariableBindings
    获取相册中得图片
    相机
    给定文字测量它的大小
    git
    单例的创建
    物理引擎简介——Cocos2d-x学习历程(十三)
    场景切换特效Transition——Cocos2d-x学习历程(十二)
  • 原文地址:https://www.cnblogs.com/shuimuqingyang/p/10288587.html
Copyright © 2020-2023  润新知