• pytorch-torch参数使用 1.torch.cat(维度串接) 2. torch.backend.cudnn.benchmark(加速优化计算)


    1. torch.cat(data, axis) # data表示输入的数据, axis表示进行串接的维度

    t = Test()
    t.num = 50
    print(t.num)
    
    
    a = torch.tensor([[1, 1]])
    b = torch.tensor([[2, 2]])
    x = []
    x.append(a) # 维度是[1, 1, 2]
    x.append(b) # 维度是[2, 1, 2]
    
    c = torch.cat(x, 0) # 将维度进行串接
    print(c.data.numpy().shape)

    2. torch.backend.cudnn.benchmark (进行优化加速) 如果每次输入都是相同的时候,因为需要搜索计算卷积的最佳方式 ,所以在保证维度不变的情况下,可以持续使用最优的计算方法 

      if opt.preprocess != 'scale_width':  # 如果是规则输入的话,最后的输入值数量可能低于一个batch_size 
                torch.backends.cudnn.benckmark = True

    3. torch.nn.DataParallel (使用多块GPU进行网络的训练)

      if len(gpu_ids) > 0:
            assert(torch.cuda.is_available())
            net.to(gpu_ids[0])
            net = torch.nn.DataParallel(net, gpu_ids)  #gpu_id = [0, 1, 2, 3]
  • 相关阅读:
    spring自定义标签
    shell脚本实战
    redis使用场景
    了解并安装Nginx
    查看jar包依赖树
    从一道索引数据结构面试题看B树、B+树
    11条sql技巧
    or/in/union与索引优化
    动态规划
    实现快速迭代的引擎设计
  • 原文地址:https://www.cnblogs.com/my-love-is-python/p/12750581.html
Copyright © 2020-2023  润新知