摘要: 参考链接: https://blog.csdn.net/zz2230633069/article/details/85107971 连通域: 图像的连通域是指图像中具有相同像素值并且位置相邻的像素组成的区域,连通域分析是指在图像中寻找出彼此相互独立的连通域并标记出来 功能:实现连通区域标记 函数名: 阅读全文
posted @ 2022-09-30 16:24 猪大大BiuBiuBiu 阅读(1116) 评论(0) 推荐(0) 编辑
摘要: super.__init()__的使用: 参考链接: https://blog.csdn.net/weixin_43702920/article/details/107802103 test1: 输出: exec instantiation AttributeError: 'A' object ha 阅读全文
posted @ 2022-07-01 11:12 猪大大BiuBiuBiu 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 记录几条docker常用的指令,记性不好经常忘记 1、显示docker所有镜像: docker images 2、显示docker所有的容器(可能有的正running,有的已经stop) docker ps -a 执行后的界面为: 包括容器ID、相应的镜像、指令、创建时间、状态(exit或者runn 阅读全文
posted @ 2022-06-23 16:30 猪大大BiuBiuBiu 阅读(52) 评论(0) 推荐(1) 编辑
摘要: 前面还用的好好的,这周回来我本机连不上远程桌面了,但是SSH可以登录。 然后执行以下命令,关闭防火墙即可重新登录(只能这个命令) 切换到root账户,执行以下命令: systemctl stop firewalld sudo ufw disable执行这个命令无效 远程桌面图标失效: 即本机点击远程 阅读全文
posted @ 2022-06-21 09:15 猪大大BiuBiuBiu 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 转载的原文链接: https://blog.csdn.net/qq_42659468/article/details/118582508?spm=1001.2101.3001.6650.1&utm_medium=distribute.pc_relevant.none-task-blog-2%7Ede 阅读全文
posted @ 2022-06-16 11:22 猪大大BiuBiuBiu 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 这里只是作个简单的笔记,更多精彩可阅读原作者的博客: https://blog.csdn.net/yjk13703623757/article/details/77918633 首先感谢原作者精彩的总结和分析~~~ 1前言 以前没有详解过if __name__ =='__main__'的作用,只知道 阅读全文
posted @ 2021-08-31 16:48 猪大大BiuBiuBiu 阅读(15481) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wade1203/article/details/91453804 from sklearn.model_selection import train_test_split 函数 train_test_split(data, label, test_siz 阅读全文
posted @ 2021-08-16 14:56 猪大大BiuBiuBiu 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 详细参考文档:https://www.cnblogs.com/Zhi-Z/p/8728168.html https://zhuanlan.zhihu.com/p/104917232 数据挖掘、机器学习和推荐系统中的评测指标——准确率precision、召回率(Recall)、F值(F-Measure 阅读全文
posted @ 2021-08-13 16:10 猪大大BiuBiuBiu 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 命令行指令: tensorboard --logdir=D:\tf_dir\tensorboard_study 具体详见: https://zhuanlan.zhihu.com/p/115802478 1、tensorboard 具体使用: 参考链接: https://blog.csdn.net/q 阅读全文
posted @ 2021-08-11 10:26 猪大大BiuBiuBiu 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 在此之前遇上的相对导入的问题,现在看DBNET代码时候作者给出了解决方法,我这边也记录一下,后面可以用 首先感谢作者; https://github.com/WenmuZhou/DBNet.pytorch.git 大概的目录框架: 需要在train.py中将utils文件夹中的util.py导入: 阅读全文
posted @ 2021-07-30 11:03 猪大大BiuBiuBiu 阅读(701) 评论(0) 推荐(0) 编辑