摘要: ref: https://stackoverflow.com/questions/58119155/freezing-graph-to-pb-in-tensorflow2 阅读全文
posted @ 2023-03-15 14:03 wioponsen 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ref:https://blog.csdn.net/zyhse/article/details/117417484 解决办法: 打开xxx.vcxproj文件,搜索“Globals”在文件中找到<PropertyGroup Label=“Globals”, 然后在这个节点的最后加一句 <Prefer 阅读全文
posted @ 2023-02-06 16:53 wioponsen 阅读(1161) 评论(0) 推荐(0) 编辑
摘要: 两者都可以进行文件遍历, 区别在于glob返回绝对完整路径,而os.listdir返回的是文件名。可以通过一些写法实现等价 但是在数据较多的情况, glob的效率明显低于listdir,可能正则表达式不如直接的 endswith、startswith、in 这类操作效率高。 imgs = glob. 阅读全文
posted @ 2022-11-09 17:08 wioponsen 阅读(398) 评论(0) 推荐(0) 编辑
摘要: ref: https://blog.csdn.net/weixin_39972777/article/details/111103053 在使用rm * 命令删除文件的时候, 会提示参数列表过大, 此时我们可以使用如下方法: 递归删除 find [path] -name ["*"] -print0| 阅读全文
posted @ 2022-11-08 15:03 wioponsen 阅读(64) 评论(0) 推荐(0) 编辑
摘要: [转载注明来源:https://www.cnblogs.com/wioponsen/p/16499442.html](https://www.cnblogs.com/wioponsen/p/16499442.html) ### 0 要求 系统更新到2004以上, 我这里用的 21H2 cpu虚拟化启 阅读全文
posted @ 2022-07-20 18:44 wioponsen 阅读(479) 评论(0) 推荐(0) 编辑
摘要: hdf5文件没有损坏,但是训练的时候开多线程后报错, 可以尝试增加以下代码,解除锁定 os.environ["HDF5_USE_FILE_LOCKING"] = "FALSE" 阅读全文
posted @ 2022-07-15 09:46 wioponsen 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 选择网页, 右键另存为,保存网页。 用notepad打开网页文件, 找到类似于下面的这行 搜索替换字段 onerror 为任意 xxxx 即可 只删除下面这部分也是可以的 <img src="https://blog.csdn.net/xxxx/article/details/xxxx" onerr 阅读全文
posted @ 2022-07-01 13:45 wioponsen 阅读(1369) 评论(0) 推荐(0) 编辑
摘要: ref: https://cloud.tencent.com/developer/article/1800935 feature 形状为 [b,c,h,w] BN 在 [b, h, w] 上做归一化 LN 在 [c, h, w] 上做归一化 IN 在 [h, w] 上做归一化 GN 将 c 分 gr 阅读全文
posted @ 2022-06-10 09:48 wioponsen 阅读(330) 评论(0) 推荐(0) 编辑
摘要: ref:https://meetonfriday.com/posts/18392404/ 阅读全文
posted @ 2022-05-25 15:32 wioponsen 阅读(12) 评论(0) 推荐(0) 编辑
摘要: ref: https://www.cyberciti.biz/faq/linux-unix-shell-unzipping-many-zip-files/ 如下, 将*.zip放在两个单引号之间 unzip '*.zip' 阅读全文
posted @ 2022-04-13 13:26 wioponsen 阅读(439) 评论(0) 推荐(0) 编辑