logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Colab连接到GoogleDrive并运行自己的文件

1. 代码连接# 运行后出现URL,点击获得你的认证码from google.colab import drivedrive.mount('/content/drive')# 列出你云盘里有啥! ls "/content/drive//My Drive/"# 读取云盘里的文件喽,我这里读的是 bbc-text.csvwith open("/content/drive//My Drive/bbc-t

transformers本地加载roberta模型pytorch

本地加载roberta-base模型文件,在该网站下载模型文件:roberta-base at main (huggingface.co)所需的有 config.json, merges.txt, pytorch_model.bin, vocab.json路径组织结构:└─model│ merges.txt│ vocab.json│└─roberta-baseconfig.json...

#自然语言处理#pytorch#深度学习
plt.scatter分类数据legend添加图例

plt.scatter一个二分类任务,根据年龄和薪资估计其是否会买车,数据集有两个特征,Age 和 Salary标签是Purchased ,两个取值(0或1)横轴 Age, 纵轴 Salary,把这些离散的点画出来,并根据标签取值上色

#python#机器学习#matplotlib
惠普笔记本畅游人 hp Pavilion 15 装内存条、固态

我的畅游人标的是 15-au157TX,4G内存,想再扩展4G,CPU-Z 看了原装的频率2133和DDR4,至于是否买同样牌子的内存,我也不清楚,可去笔记本吧看看,我买了个同样牌子的...最近看 惠普服务 这个微信公众号,感觉害蛮好用的,绑定自己机型后,里面有很多教程拆这个畅游人15笔记本才发现,拆了后盖能看见的螺丝还是打不开啊,这时我拆了9个螺丝了,当时我在惠普微信助手官网社区里发现有人说是1

#硬件工程
(pytorch) bert-base-chinese模型文件下载

进入 hugging face 的这个网站:https://huggingface.co/bert-base-chinese#如下图,点开 list files in model 就可以看到需要下载的文件了

#自然语言处理#深度学习#pytorch +1
IndexError: too many indices for tensor of dimension 1

有点匪夷所思,错误解决是在 model 模块,# 报错logits = self.linear(pooled_output)# 没问题了logits = self.linear(pooled_output).view(batch_size, self.num_classes)

OSError WinError 182 Error loading Anaconda3\lib\site-packages\torch\lib\caffe2_detectron_ops.dll

https://github.com/pytorch/pytorch/issues/35803pip install intel-openmp

TypeError: forward() missing 1 required positional argument: ‘input_ids‘

用的多GPU的数据并行方法DataParallel ,这老出错原 batch_size 我设的 8,谷歌到该 github issuehttps://github.com/Eromera/erfnet_pytorch/issues/2然后 batch_size 设为 9 目前能跑通

vscode could not establish connection to linux The VS Code Server failed to start

vscode could not establish connection to linux The VS Code Server failed to startThe remote host may not meet VS Code Server's prerequisites for glibc and libstdc++

#vscode#c语言#linux
vscode could not establish connection to linux The VS Code Server failed to start

vscode could not establish connection to linux The VS Code Server failed to startThe remote host may not meet VS Code Server's prerequisites for glibc and libstdc++

#vscode#c语言#linux
到底了