Loading

摘要: # 在本地显示服务器的tensorbord内容 (全文转自https://blog.csdn.net/a314688122a/article/details/81505082。侵删!!!) 问题 由于tensorflow程序在远程服务器运行,而tensorboard启动后访问地址为:0.0.0.0: 阅读全文
posted @ 2021-04-12 19:43 Guang'Jun 阅读(997) 评论(0) 推荐(0)
摘要: 1.torch.eq out = torch.eq(input, other) 功能: 比较两个张量的元素是否相同 参数: input:输入的张量 other: 用于比较的张量 out: 输出元素为True或者是Flase的张量 例子: 例子1: >>> torch.eq(torch.tensor( 阅读全文
posted @ 2021-03-30 22:26 Guang'Jun 阅读(160) 评论(0) 推荐(0)
摘要: ## 在torch中softmax的使用在torch中softmax的使用 在哪一维度上进行softmax操作,哪一维度的值之和为1 class Fc(nn.Module): def __init__(self, in_channel, out_channel): super(Fc, self)._ 阅读全文
posted @ 2021-03-30 14:29 Guang'Jun 阅读(2692) 评论(0) 推荐(0)
摘要: python中reduce 与map的用法 reduce的工作过程是: 在迭代sequence(tuple ,list ,dictionary, string等可迭代物)的过程中, 首先把前两个元素传给 函数参数,函数加工后, 然后把得到的结果和第三个元素作为两个参数传给函数参数, 函数加工后得到的 阅读全文
posted @ 2021-03-26 22:20 Guang'Jun 阅读(107) 评论(0) 推荐(0)
摘要: Pytorch :list, numpy.array, torch.Tensor 格式相互转化 同时解决 ValueError:only one element tensors can be converted to Python scalars 问题 - torch.Tensor 转 numpy 阅读全文
posted @ 2021-03-17 19:43 Guang'Jun 阅读(1103) 评论(0) 推荐(0)
摘要: 下载extundelete sudo apt-get install extundelete 获取大概删除时间点之后文件。(假设是11点26删除的文件,恢复11点25以后误删的文件)。 date -d "2021-03-15 11:25:00" +%s 如果不确定几点几分直接 date -d "20 阅读全文
posted @ 2021-03-15 14:51 Guang'Jun 阅读(1413) 评论(0) 推荐(0)
摘要: 使用方法: from abc import abstractmethod 1.含abstractmethod的方法由子类的相同函数重写 举例: from abc import abstractmethod class BaseModel(object): def __init__(self): se 阅读全文
posted @ 2021-03-11 20:52 Guang'Jun 阅读(169) 评论(0) 推荐(0)
摘要: pytorch输入数据PipeLine一般遵循一个“三步走”的策略,一般pytorch 的数据加载到模型的操作顺序是这样的: ① 创建一个 Dataset 对象。必须实现__len__()、getitem()这两个方法,这里面会用到transform对数据集进行扩充。 ② 创建一个 DataLoad 阅读全文
posted @ 2021-03-10 20:42 Guang'Jun 阅读(129) 评论(0) 推荐(0)
摘要: 有一个(类)损失函数名字中带了with_logits. 而这里的logits指的是,该损失函数已经内部自带了计算logit的操作, 无需在传入给这个loss函数之前手动使用sigmoid/softmax将之前网络的输入映射到[0,1]之间 来自:https://blog.csdn.net/u0106 阅读全文
posted @ 2021-03-10 19:00 Guang'Jun 阅读(150) 评论(0) 推荐(0)
摘要: import torch a = [torch.arange(12).reshape(3, 4)] print(a) b = torch.cat(a, dim=0) print(b) 使用torch.cat去除[] 阅读全文
posted @ 2021-03-09 15:42 Guang'Jun 阅读(812) 评论(0) 推荐(0)