2021年4月2日

torch.load()加载模型,提示xxx.pt is a zip archive(did you mean to use torch.jit.load()?)

摘要: 参考链接 https://blog.csdn.net/irober/article/details/115144522?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-0&spm=1001.2101.3001.4242 t 阅读全文

posted @ 2021-04-02 10:00 cltt 阅读(2597) 评论(0) 推荐(0) 编辑

matlab 访问某个文件夹下的所有文件

摘要: img_list =dir('./...');for i =1:length(img_list)%从1开始,左右都是闭区间 fprintf('%s \n',img_list(i).name);%img_list(i)为structend%别忘了一个for对应一个end 阅读全文

posted @ 2021-04-02 09:57 cltt 阅读(283) 评论(0) 推荐(0) 编辑

vgg等模型下载很慢

摘要: vgg等模型由于权限或网速原因无法在云服务器正常下载 可以先下载好放到本地(有时候在云服务器上没有权限下载) import torch import torch.nn as nn import torch.nn.functional as F from torchvision import mode 阅读全文

posted @ 2021-04-02 09:50 cltt 阅读(296) 评论(0) 推荐(0) 编辑

关于gan的基本介绍

摘要: https://zhuanlan.zhihu.com/p/40402713 阅读全文

posted @ 2021-04-02 09:45 cltt 阅读(66) 评论(0) 推荐(0) 编辑

matab 从多个文件夹读数据,分别计算指标

摘要: clear all; close all; clc load modelparameters.mat blocksizerow = 96; blocksizecol = 96; blockrowoverlap = 0; blockcoloverlap = 0; dataset = {'DICM',' 阅读全文

posted @ 2021-04-02 09:43 cltt 阅读(113) 评论(0) 推荐(0) 编辑

导航