pytorch
火星种萝卜
c++ vc mfc java
展开
-
PyTorch GPU使用方式
PyTorch GPU使用方式 - OliYoung - 博客园转载 2021-10-22 23:57:58 · 632 阅读 · 0 评论 -
如何将tensorflow模型转PYTORCH模型
将tensorflow版本的.ckpt模型转成pytorch的.bin模型 - 最咸的鱼 - 博客园转载 2021-10-21 15:06:15 · 2686 阅读 · 0 评论 -
Python之列表list转换成字典dict的的方法【使用内置函数zip和dict快速搞定】
https://blog.csdn.net/weixin_43343144/article/details/90898806转载 2021-08-11 17:23:46 · 995 阅读 · 0 评论 -
torch.max()使用讲解
https://www.jianshu.com/p/3ed11362b54f转载 2021-08-11 11:21:13 · 443 阅读 · 0 评论 -
Pytorch交叉熵损失函数torch.nn.functional as F
loss = F.cross_entropy(outputs, labels)原创 2021-08-09 17:20:22 · 1327 阅读 · 0 评论 -
json.dumps()函数解析
https://blog.csdn.net/weixin_38842821/article/details/108359551转载 2021-08-09 10:38:21 · 296 阅读 · 0 评论 -
Pytorch 基础-tensor 数据结构
https://zhuanlan.zhihu.com/p/359885322转载 2021-08-07 17:47:16 · 191 阅读 · 0 评论 -
从ReLU到GELU,一文概览神经网络的激活函数
https://baijiahao.baidu.com/s?id=1653421414340022957&wfr=spider&for=pc转载 2021-08-06 19:16:49 · 258 阅读 · 0 评论 -
研读pytorch版本的BERT分类代码
https://blog.csdn.net/weixin_41580638/article/details/89315153转载 2021-08-06 19:07:43 · 136 阅读 · 0 评论 -
词向量之BERT 结构
QNLI:用于判断文本是否包含问题的答案,类似于我们做阅读理解定位问题所在的段落。(d)命名实体识别CoNLL-2003 NER:判断一个句子中的单词是不是Person,Organization,Location,Miscellaneous或者other(无命名实体)。微调CoNLL-2003 NER时将整个句子作为输入,在每个时间片输出一个概率,并通过softmax得到这个Token的实体类别。(c)问答任务SQuAD v1.1:给定一个句子(通常是一个问题)和一段描述文本,输出这个问题转载 2021-08-06 07:47:56 · 127 阅读 · 0 评论 -
xiaolu代码的博客
https://zhuanlan.zhihu.com/p/56386373转载 2021-08-06 00:08:28 · 60 阅读 · 0 评论 -
BERT源码阅读
https://zhuanlan.zhihu.com/p/394780960转载 2021-08-05 23:36:12 · 51 阅读 · 0 评论 -
pytorch+bert NER任务踩坑记录
https://zhuanlan.zhihu.com/p/295248694转载 2021-08-05 23:09:37 · 792 阅读 · 0 评论 -
一文学会Pytorch版本BERT使用
https://zhuanlan.zhihu.com/p/113639892转载 2021-08-04 11:11:21 · 94 阅读 · 0 评论 -
.pth is a zip archive (did you mean to use torch.jit.load()?)
RuntimeError: bert.pth is a zip archive (did you mean to use torch.jit.load()?).pth is a zip archive (did you mean to use torch.jit.load()?)原因xxx.pth来自pytorch1.6或更高的版本。1.6之后pytorch默认使用zip文件格式来保存权重文件,导致这些权重文件无法直接被1.5及以下的pytorch加载。解决方案在pytorch1.6版本.转载 2021-07-24 14:20:43 · 3357 阅读 · 0 评论 -
SourceChangeWarning:验证集上准确率很高,但是测试集上很低
https://yan624.github.io/posts/cb7d01da.html转载 2021-06-02 11:22:13 · 1762 阅读 · 0 评论 -
浅谈pytorch 模型 .pt, .pth, .pkl的区别及模型保存方式 pth中的路径加载使用
首先xxx.pth文件里面会书写一些路径,一行一个。将xxx.pth文件放在特定位置,则可以让python在加载模块时,读取xxx.pth中指定的路径。Python客栈送红包、纸质书有时,在用import导入项目文件夹里自己写的python文件时,常常说找不到该文件,这时可以将项目路径添加到PYTHONPATH下。暂时添加:import syssys.path.append(项目路径)这种方法只会存在内存里,一旦退出python就没有了一劳永逸:在 XXX/pythonXXX/site-转载 2021-06-01 17:20:17 · 1580 阅读 · 0 评论 -
pytorch 中pkl和pth的区别?
https://www.zhihu.com/question/274533811转载 2021-06-01 17:00:15 · 793 阅读 · 0 评论 -
pytorch model.train() 开启batchnormalize 和 dropout model.eval() 则会关闭dropout
https://blog.csdn.net/kking_edc/article/details/104663305转载 2021-05-23 07:19:56 · 783 阅读 · 0 评论 -
torch.backends.cudnn.deterministic 生成随机数字设置 每次输出一样的方法
https://zhuanlan.zhihu.com/p/141063432?from_voters_page=true转载 2021-05-23 06:59:56 · 453 阅读 · 0 评论 -
pytorch保存的.pth模型文件
https://zhuanlan.zhihu.com/p/84797438转载 2021-05-17 20:10:05 · 394 阅读 · 0 评论 -
Pytorch使用CPU运行“Torch not compiled with CUDA enabled”
https://www.it610.com/article/1294761787949916160.htm转载 2021-04-26 23:08:15 · 853 阅读 · 0 评论 -
pytorch bert预训练模型的加载地址
https://blog.csdn.net/weixin_39331401/article/details/109328681转载 2021-04-26 20:45:38 · 542 阅读 · 0 评论 -
pytorch保存文件.pth .pt没有格式的区别,仅仅是后缀名字不同
https://zhuanlan.zhihu.com/p/148159709转载 2021-04-26 20:24:03 · 623 阅读 · 0 评论 -
pytorch使用empty跟内建函数random_进行初始化Tensor
使用empty跟内建函数random_进行初始化Tensor: # 将y取0或1 y = torch.empty(3).random_(2) 其中如果函数有下标“_”这个表示时Tensor里的内建函数,其中产生一个0到2-1的整数值来随机初始化yhttps://blog.csdn.net/yangdashi888/article/details/85781496...转载 2020-11-02 20:29:37 · 1065 阅读 · 0 评论 -
pytorch中torch.Tensor()与torch.empty()的区别是什么?
https://www.cnpython.com/qa/76882转载 2020-11-02 20:10:37 · 1707 阅读 · 0 评论 -
torchtext语料库 词与 下标互转使用教程
https://www.cnblogs.com/wqbin/p/12690005.html转载 2020-11-01 15:39:17 · 136 阅读 · 0 评论 -
torch分词工具spacy 工业界最快分词工具
https://zhuanlan.zhihu.com/p/51425975转载 2020-11-01 15:16:16 · 556 阅读 · 0 评论 -
torch.nn.Embedding()理解
https://blog.csdn.net/tommorrow12/article/details/80896331转载 2020-11-01 14:45:40 · 341 阅读 · 0 评论 -
2020-11-01pytorch中unsqueeze()、squeeze()、expand()、repeat()、view()、和cat()函数的总结
https://blog.csdn.net/HUSTHY/article/details/101649012?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.cha转载 2020-11-01 13:27:26 · 265 阅读 · 0 评论 -
torch.squeeze()和 torcn.unsqueeze()
https://blog.csdn.net/u013444215/article/details/81941366?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.channe转载 2020-11-01 13:20:47 · 169 阅读 · 1 评论 -
pytorch的nn.linear 转
https://www.cnblogs.com/Archer-Fang/p/10645473.htmlclass torch.nn.Linear(in_features,out_features,bias = True )[来源]对传入数据应用线性变换:y = A x+ b参数:in_features - 每个输入样本的大小out_features - 每个输出样本的大小bias - 如果设置为False,则图层不会学习附加偏差。默认值:True代码:...转载 2020-11-01 12:06:17 · 103 阅读 · 0 评论 -
torch.bmm 批量矩阵相乘 与矩阵相乘torch.matmul()
https://blog.csdn.net/foneone/article/details/103876519转载 2020-11-01 11:25:18 · 2163 阅读 · 0 评论 -
深度学习中张量tensor 与数组的区别
https://www.zhihu.com/question/381348941转载 2020-10-31 22:39:13 · 1310 阅读 · 0 评论 -
torch 和torchvision对应关系并附下载路径
https://blog.csdn.net/AugustMe/article/details/109028989torch对应的torchvision版本版权安装torch和torchvision时,两者之间存在依赖关系,版本需要对应起来。torch torchvision python 1.6.0 0.7.0 >=3.6 1.5.1 0.6.1 >=3.5 1.5.0 0.6.0 >=3.5 1.4.0转载 2020-10-31 16:53:22 · 13904 阅读 · 0 评论 -
Pytorch中如何理解RNN LSTM的input(重点理解seq_len/time_steps)
https://zhuanlan.zhihu.com/p/102904450转载 2020-10-31 15:48:08 · 1107 阅读 · 0 评论 -
Pytorch中如何理解RNN LSTM的input(重点理解seq_len/time_steps)
https://zhuanlan.zhihu.com/p/102904450转载 2020-10-31 15:47:00 · 289 阅读 · 0 评论 -
Pytorch中如何理解RNN LSTM的input(重点理解seq_len/time_steps)
https://zhuanlan.zhihu.com/p/102904450转载 2020-10-31 15:46:23 · 246 阅读 · 0 评论 -
pytorch从0实现RNN
https://zhuanlan.zhihu.com/p/34421200转载 2020-10-31 14:49:32 · 192 阅读 · 0 评论 -
源码学习pytorch的RNN
https://zhuanlan.zhihu.com/p/32103001转载 2020-10-30 16:15:32 · 304 阅读 · 0 评论