当前位置:   article > 正文

pytorch 数据加载性能对比

pytorch 数据加载性能对比

传统方式需要10s,dat方式需要0.6s


import os

import time
import torch
import random
from common.coco_dataset import COCODataset

def gen_data(batch_size,data_path,target_path):
    os.makedirs(target_path,exist_ok=True)
    dataloader = torch.utils.data.DataLoader(COCODataset(data_path,
                                                         (352, 352),
                                                         is_training=False, is_scene=True),
                                             batch_size=batch_size,
                                             shuffle=False, num_workers=0, pin_memory=False,
                                             drop_last=True)  # DataLoader
    start = time.time()
    for step, samples in enumerate(dataloader):
        images, labels, image_paths = samples["image"], samples["label"], samp

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/902795
推荐阅读
相关标签
  

闽ICP备14008679号