04 2021 档案

摘要:1. conda已安装环境 安装完conda,配置完环境(conda执行路径)后: 会有一个base 使用以下命令可以看到conda已安装的环境 1 conda info -e 2. conda在线配置环境 conda create -n faceDetTorch python=3.6# 激活环境s 阅读全文
posted @ 2021-04-16 10:29 一剑光寒十四州 阅读(937) 评论(0) 推荐(0)
摘要:试一试 1 import torch 2 import torch.nn as nn 3 import torch.nn.functional as F 4 from torchsummary import summary 5 6 class ResBlock(nn.Module): 7 def _ 阅读全文
posted @ 2021-04-02 16:43 一剑光寒十四州 阅读(857) 评论(0) 推荐(0)
摘要:1 import os 2 import torch 3 from torchvision import transforms 4 from data_pipe import get_data 5 from vgg import VGG_13 6 from resnet18 import ResNe 阅读全文
posted @ 2021-04-02 16:40 一剑光寒十四州 阅读(108) 评论(0) 推荐(0)