- 博客(16)
- 收藏
- 关注
原创 Unable to negotiate with xx.xx.xx.xx port 22: no matching MAC found. Their offer: hmac-sha1-96,hmac-
先是删除了本机C:\Users\用户名\.ssh下的id_rsa, id_rsa.pub以及服务器上~/.ssh/authorized_keys。主机的C:\Users\用户名\.ssh下的config文件在目标服务器的设置下根据。C:\Users\用户名\.ssh\known_hosts 中对应服务器的条目。C:\Users\用户名\.ssh\config对应服务器目录下追加一行。重新生成文件,主机在目录C:\Users\用户名\.ssh命令行输入。文件里面的内容复制到服务器的 ~
2024-10-14 10:19:52 214
原创 [ WARN:0@316.605] global loadsave.cpp:248 findDecoder imread_: can‘t open/read file: check file path
查了下有人说是路径中有中文的缘故,但是我的没有中文,后来发现路径中有‘~’也会报错,改成绝对路径就行了。使用cv2.imread读图片出现错误。
2024-07-10 16:52:09 485
原创 AttributeError: ‘COCO‘ object has no attribute ‘get_cat_ids‘
因为跑的代码里面用到了mmdet库,出现了以上问题,查询后发现是因为mmdetection用到了pycocotools,本来接口是pycocotools.coco.getCatds,但是mmdetection又在外包了一层,变成了get cat ids,而pycocotools.coco又没有这个成员函数,导致出错。,把整个项目download下来传到服务器上,然后在实验环境下进入cocoapi-api/pycocotools这个目录,然后运行。实验室的服务器没法访问外网,所以我直接在github上进入。
2024-04-24 10:07:59 476 1
原创 ubuntu设备reboot命令重启失败
具体问题还是不清楚,但是之前home是挂在SD卡上的,发现有时候home读取失败导致没法重启,把home重新烧到emmc上就行了。(盲猜可能是SD卡不稳定)
2023-11-18 17:14:40 1029 1
原创 Ubuntu16.04系统安装CUDA11.3
另外,在安装过程中出现了服务器根目录盘(即'/')满了的情况,排查后发现是在安装过程中CUDA各种库默认安装位置是/usr/local/cuda(如下图),这个目录是在根目录下,改一下安装路径即可,实验环境配完了代码还跑不动,后来发现是CUDA版本的问题,于是重新装对应版本的CUDA环境。toolkit和samples这些安装位置都是可以改的,详见参考的第二篇文章。CUDA版本对了再重新配虚拟环境,成功。
2023-11-18 16:48:50 326 2
原创 ImportError: libGL.so.1: cannot open shared object file: No such file or directory
解决错误ImportError: libGL.so.1: cannot open shared object file: No such file or directory。
2023-05-19 10:23:50 333 1
原创 wsl Ubuntu错误
sudo apt-get update时出现错误Ign:1 http://archive.ubuntu.com/ubuntu jammy InRelease。1.打开配置文件sudo vim /etc/apt/sources.list。
2023-05-07 14:58:11 689
原创 conda install安装库失败
win+R cmd打开命令行 cd到安装包setup.py所在文件夹地址 如:D:\anaconda\Lib\site-packages\skfeature-chappers-1.1.0\skfeature-chappers-1.1.0。方法二:出现ERROR: Could not find a version that satisfies the requirement XXX。下载到本地后解压到D:\anaconda\Lib\site-packages(本地anaconda安装地址)
2023-03-05 20:29:11 1428 1
原创 刘二大人《Pytorch深度学习》第九讲作业
import numpy as npimport torchfrom torch.utils.data import Dataset,DataLoaderimport torch.nn.functional as F #reluimport torch.optim as optimimport pandas as pd#将分类转换成编号def convert(label):id=[]target=['Class_1','Class_2','Class_3','Class_4'...
2022-04-23 21:22:03 2497
原创 刘二大人《Pytorch深度学习》第5讲作业
选用其中四种Rprop优化器:#第一步 准备数据集import torchx_data=torch.Tensor([[1.0],[2.0],[3.0]])y_data=torch.Tensor([[2.0],[4.0],[6.0]])#第二步 设计模型类class LinearModel(torch.nn.Module):def __init__(self):super(LinearModel,self).__init__()sel...
2022-04-01 20:52:09 1178 3
原创 刘二大人《Pytorch深度学习》第七讲作业
sigmoid函数(课程中的方法):运行结果:作业:1.Heaviside官方文档:https://pytorch.org/docs/stable/generated/torch.heaviside.html#torch.heavisideModel部分,其余同上:class Model(torch.nn.Module): def __init__(self): super(Model,self).__init__() se..
2022-04-01 20:35:31 2005 10
原创 刘二大人《pytorch深度学习》 第四讲 反向传播算法
目录示例代码:课后作业:示例代码:import torchx_data=[1.0,2.0,3.0]y_data=[2.0,4.0,6.0]w=torch.Tensor([1.0])#构建计算图,而非简单的矩阵运算w.requires_grad=True#需要计算梯度def forward(x): return x*wdef loss(x,y): y_pred=forward(x) return (y_pred-y)**2print("pre..
2022-03-11 20:30:57 2262
原创 刘二大人《pytorch深度学习》 第三讲 梯度下降算法
def forward(x): return x*wdef cost(xs,ys): cost=0 for x,y in zip(xs,ys): y_pred=forward(x) cost+=(y_pred-y)**2 return cost/len(xs)def gradient(xs,ys): grad=0 for x,y in zip(xs,ys): grad+=2*x*(x*w-y) .
2022-03-11 20:12:44 196
原创 刘二大人《pytorch深度学习实践作业》 code1
# code1import numpy as npimport matplotlib.pyplot as pltfrom mpl_toolkits.mplot3d import Axes3Dx_data=[1.0,2.0,3.0]y_data=[2.0,4.0,6.0]def forward(x): return x*w+bdef loss(x,y): y_pred=forward(x) return (y_pred-y)*(y_pred-y)w_list=n...
2022-03-04 21:42:04 970 4
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人