随笔分类 -  实践经验

摘要:https://github.com/ppwwyyxx/OpenPano 复现 git clone https://github.com/ppwwyyxx/OpenPano.git # ubuntu 安装依赖 sudo apt install build-essential sed cmake li 阅读全文
posted @ 2024-04-07 10:50 Zenith_Hugh 阅读(29) 评论(0) 推荐(0) 编辑
摘要:代码: https://github.com/OpenStitching/stitching/tree/main 1. 安装 docker https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository 选择 I 阅读全文
posted @ 2024-04-02 23:34 Zenith_Hugh 阅读(193) 评论(0) 推荐(0) 编辑
摘要:albumentations: T += [A.Normalize(mean=mean, std=std), ToTensorV2()] # Normalize and convert to Tensor torchvision: T.ToTensor(), T.Normalize(IMAGENET 阅读全文
posted @ 2023-07-12 18:23 Zenith_Hugh 阅读(666) 评论(0) 推荐(1) 编辑
摘要:#### 1. 移动文件夹,又在原来位置做个软链接,可以正常使用代码 比如 移动 conda ,因为 conda 所占据的空间很大,移动后做个软链接还是一样的。 比如 把一些数据移出 home , 也可以做个软链接到原来位置。 #### 2. 训练模型时候的数据集做软链接 因为我们的数据经常存在硬盘 阅读全文
posted @ 2023-06-28 23:34 Zenith_Hugh 阅读(85) 评论(0) 推荐(0) 编辑
摘要:http://zhidao.baidu.com/question/26715802/answer/3073469385 跨表格的话:=VLOOKUP($C$4,Sheet2!$A:$B,2,0) $C$4 是下拉菜单的位置 AB 是两个一一对应的列,比如: ![image](https://img2 阅读全文
posted @ 2023-06-09 15:21 Zenith_Hugh 阅读(784) 评论(0) 推荐(0) 编辑
摘要:图像分类为例: ### 问题1:数据量不够 #### 解决方案 - 收集更多数据 - 数据增强 ### 问题2:低质量的分类 #### 解决方案 - 验证每个样本的标签是否正确 - 为分类选择合适的粒度级别 ### 问题3:低质量的数据 #### 解决方案 - 删除糟糕的图像 - 考虑技术的长期应用 阅读全文
posted @ 2023-05-31 15:48 Zenith_Hugh 阅读(92) 评论(0) 推荐(0) 编辑
摘要:问题:为什么验证 acc 上升,而 验证 loss 也在上升? 解答: https://www.zhihu.com/question/441570557 https://www.zhihu.com/question/291369144 https://www.zhihu.com/question/3 阅读全文
posted @ 2023-05-22 11:29 Zenith_Hugh 阅读(263) 评论(0) 推荐(0) 编辑
摘要:论文: https://arxiv.org/abs/2304.05622 项目: https://github.com/bingogome/samm 系统:windows 10 下载 https://download.slicer.org/ ~~下载 git https://git-scm.com/ 阅读全文
posted @ 2023-04-16 00:49 Zenith_Hugh 阅读(607) 评论(7) 推荐(0) 编辑
摘要:训练模型时候一定要知道,模型使用的是 什么格式的输入,是 BGR 还是 RGB。 数据增强过程中,要看到其中是否经过了 BGR 和 RGB 的变换。 测试的时候,一定要和 训练时候的格式保持一致, 否则模型会识别不准。 此外, Image.fromarray(img_.astype('uint8') 阅读全文
posted @ 2023-03-12 23:01 Zenith_Hugh 阅读(274) 评论(0) 推荐(0) 编辑
摘要:在线LaTex 公式编辑 LaTex ~~强大的是:这个竟然支持图像识别公式,太棒了。~~ 好吧,它收费了。我决定要抛弃它的图像识别功能了了。 由于该在线图像识别公式的应用已经收费。因此我尝试了如下开源库用来图像识别公式: 代码仓库: https://github.com/lukas-blecher 阅读全文
posted @ 2023-02-17 14:53 Zenith_Hugh 阅读(2337) 评论(0) 推荐(1) 编辑
摘要:1. 配置环境 参考文档:https://mmclassification.readthedocs.io/zh_CN/dev-1.x/get_started.html git clone -b 1.x https://github.com/open-mmlab/mmclassification.gi 阅读全文
posted @ 2022-12-28 00:27 Zenith_Hugh 阅读(505) 评论(0) 推荐(1) 编辑
摘要:1. 配置环境 参考:https://mmpose.readthedocs.io/zh_CN/latest/install.html 第 1 步 使用 MIM 安装 MMCV pip install -U openmim -i https://pypi.tuna.tsinghua.edu.cn/si 阅读全文
posted @ 2022-12-08 17:58 Zenith_Hugh 阅读(634) 评论(0) 推荐(0) 编辑
摘要:所用的开源项目: https://github.com/oukohou/SSR_Net_Pytorch 训练该模型的数据集:MegaAge_Asian 修改 requirements.txt: torch torchvision imgaug opencv-python pandas conda 环 阅读全文
posted @ 2022-11-04 18:21 Zenith_Hugh 阅读(71) 评论(2) 推荐(0) 编辑
摘要:萌娃人脸生成器 项目地址:https://github.com/a312863063/seeprettyface-generator-babies 1.介绍 本文是运行一个 StyleGAN 训练出的萌娃人脸生成器。 2. 实践过程 1.1 下载代码库 1.2 下载预训练权重 下载链接在:seepr 阅读全文
posted @ 2022-10-26 18:07 Zenith_Hugh 阅读(359) 评论(0) 推荐(0) 编辑

喜欢请打赏

扫描二维码打赏

微信打赏

点击右上角即可分享
微信分享提示