摘要: ##1. 概率图转binary(bool) def binarize(self, pred): return pred > self.thresh ##2. binary转int、float: img = img.astype(float) 阅读全文
posted @ 2020-10-26 10:00 shendawei 阅读(66) 评论(0) 推荐(0) 编辑
摘要: ##1. git diff 命令参数:https://www.yiibai.com/git/git_diff.html 输出含义:https://www.ruanyifeng.com/blog/2012/08/how_to_read_diff.html 阅读全文
posted @ 2020-10-22 09:43 shendawei 阅读(54) 评论(0) 推荐(0) 编辑
摘要: ##1.jit.save()的write failed问题 : 模型保存路径不存在 ##2.FBGEMM doesn't support transpose packing yet! set: quantized.engine = 'qnnpack' and get_default_qconfig( 阅读全文
posted @ 2020-10-21 19:23 shendawei 阅读(762) 评论(0) 推荐(0) 编辑
摘要: ##1. torchkeras模型打印 https://blog.csdn.net/tszupup/article/details/108129484 阅读全文
posted @ 2020-10-21 11:21 shendawei 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1. 大量文本框丢失: ####原因一:opencv 轮廓近似: epsilon值设置偏大,导致不足四个点,进而导致后续必要的处理将其滤掉(此工程后续处理必须大于四个点才能正常进行) ####原因二:short_side过滤: 最短边小于设置的阈值,将会当做干扰滤掉 #2.部分模糊文本框丢失: ## 阅读全文
posted @ 2020-10-20 16:03 shendawei 阅读(406) 评论(0) 推荐(0) 编辑
摘要: ##1. 显卡驱动重启后丢失: https://blog.csdn.net/hangzuxi8764/article/details/86572093 (the make is related to the gcc version.If make failed, check the gcc vers 阅读全文
posted @ 2020-10-20 09:41 shendawei 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 一、ubantu sudo apt-get install build-essential 阅读全文
posted @ 2020-09-23 00:41 shendawei 阅读(586) 评论(0) 推荐(0) 编辑
摘要: 1 java数据类型 boolean 1bit byte 1字节 char 2字节 short 2字节 int 4字节 float 4字节 long 8字节 double 8字节 2 c语言数据类型 char 1字节 short 2字节 int 4字节 float 4字节 long 4字节 doub 阅读全文
posted @ 2020-09-03 14:30 shendawei 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 1、概要 2、步骤 1、 ##################### settings文件:############################# # 头伪装 USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gec 阅读全文
posted @ 2020-08-07 21:24 shendawei 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 1. cookies 1.使用session对象可自动存储服务器返回的cookies 原来代码: r = requests.post(url, headers={}, data={}) r = requests.get(url, headers={}) 使用session的代码: session = 阅读全文
posted @ 2020-08-07 17:21 shendawei 阅读(82) 评论(0) 推荐(0) 编辑