上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 31 下一页
摘要: #!/usr/bin/env python # -*- encoding: utf-8 -*- ''' @File : gen_all_data.py @Time : 2023/05/30 10:46:29 @Author : H @Version : 1.0 @Contact : @License 阅读全文
posted @ 2023-05-30 10:48 Zenith_Hugh 阅读(75) 评论(0) 推荐(0)
摘要: ### 1. 问题1:无人机拍的图片像素低(目标小),多尺度怎么提高检测精度? 所谓的像素低就是 距离比较远时,目标太小。 训练: 滑动窗口 1. 无人机图像分辨率一般很大,可以把图像切分再训练。因为有目标可能位于 切分的地方,所以相邻区域做一些 overlap,比如设置的重叠区域面积占总面积(每个 阅读全文
posted @ 2023-05-30 00:40 Zenith_Hugh 阅读(258) 评论(0) 推荐(0)
摘要: 原始题目 OpenPose: Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields 中文名称 Openpose:使用 Part Affinity Fields 来 实时 多人 2D 姿态估计 发表时间 2016年11月 阅读全文
posted @ 2023-05-29 23:09 Zenith_Hugh 阅读(665) 评论(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 阅读(369) 评论(0) 推荐(0)
摘要: 系统:linux centos docker -v # Docker version 23.0.3, build ... 参考链接:https://www.paddlepaddle.org.cn/documentation/docs/zh/install/docker/linux-docker.ht 阅读全文
posted @ 2023-05-12 11:35 Zenith_Hugh 阅读(394) 评论(0) 推荐(0)
摘要: https://www.bilibili.com/video/BV1hd4y187CR 在刚刚结束的 NeurIPS 和 EMNLP 上面,有一个很有意思的现象,就是大家都在讨论一个工作,这个工作既没有发表在 NeurIPS 上面,也没有发表在 EMNLP 上面,它甚至连一篇论文都没有,这就是 Ch 阅读全文
posted @ 2023-04-16 22:53 Zenith_Hugh 阅读(889) 评论(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 阅读(668) 评论(7) 推荐(0)
摘要: 如果自己的数据集和 imageNet 数据集相差较大,需要计算自己数据集的 mean 和 std。 Normalize 让模型可以更快的收敛。 参考:https://discuss.pytorch.org/t/understanding-transform-normalize/21730/17 ht 阅读全文
posted @ 2023-03-28 18:53 Zenith_Hugh 阅读(96) 评论(0) 推荐(0)
摘要: 参考: 【1】梯度下降学习率的设定策略 【2】CosineAnnealingLR-余弦退火调整学习率 【3】图解 9 种Torch中常用的学习率调整策略 【4】炼丹总结 阅读全文
posted @ 2023-03-28 18:35 Zenith_Hugh 阅读(6) 评论(0) 推荐(0)
摘要: 脚本 import torch import time import sys sys.path.insert(0, sys.path[0]+"/../") from cls_models.model import ClsModel if __name__ == '__main__': model_n 阅读全文
posted @ 2023-03-28 17:52 Zenith_Hugh 阅读(26) 评论(0) 推荐(0)
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 31 下一页