摘要: Ubuntu中安装openssh服务 用来使VScode中使用ssh远程操作Ubuntu开发 sudo apt-get install openssh-server 启动命令 sudo systemctl start ssh 查询IP ifconfig 不被识别 安装net-tools sudo a 阅读全文
posted @ 2022-06-18 15:46 hu- 阅读(117) 评论(0) 推荐(0)
摘要: sudo passwd 1、设置密码 2、更新镜像源 sudo apt-get update 3、手动安装gcc\make\perl sudo apt-get install gcc make perl 4、重启系统 reboot 5、给脚本权限 chmod u+x (....) 6、查看是否有可执 阅读全文
posted @ 2022-06-18 14:29 hu- 阅读(48) 评论(0) 推荐(0)
摘要: DenseNet算法详解: https://www.jianshu.com/p/8a117f639eef 通俗易懂DenseNet: https://www.cnblogs.com/shine-lee/p/12380510.html 阅读全文
posted @ 2022-05-16 18:54 hu- 阅读(25) 评论(0) 推荐(0)
摘要: 网上教程:matplotlib、numply 1 #导入第三方库 2 import matplotlib as mpl #将matplotlib作为mpl导入 3 import matplotlib.pyplot as plt #将matplotlib.pyplot作为plt导入 4 import 阅读全文
posted @ 2022-04-13 19:39 hu- 阅读(101) 评论(0) 推荐(0)