上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 以一个简单例子来说明各个 Loss 函数的使用 label_numpy = np.array([[0, 0, 0, 0], [0, 1, 1, 0], [0, 1, 1, 0], [0, 0, 0, 1]], dtype=np.float) # 模拟 标签 out_numpy = np.array( 阅读全文
posted @ 2020-05-20 15:49 xuanyuyt 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 借助一张 COCO 数据集中的图片来展示下分类、检测、语义分割、实例分割的区别。 语义分割的本质是图片信息的编解码(encoder-decoder)过程: 当时这个结构提出的主要作用并不是分割,而是压缩图像和去噪声。输入是一幅图,经过下采样的编码,得到一串比原先图像更小的特征,相当于压缩,然后再经过 阅读全文
posted @ 2020-04-30 15:44 xuanyuyt 阅读(2471) 评论(0) 推荐(0) 编辑
摘要: 论文:EfficientDet: Scalable and Efficient Object Detection 关联:EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks TensorFlow 实现 PyT 阅读全文
posted @ 2020-04-22 10:10 xuanyuyt 阅读(2969) 评论(1) 推荐(0) 编辑
摘要: 参考: 1. CNN 模型所需的计算力(flops)和参数(parameters)数量是怎么计算的? 2. TensorFlow 模型浮点数计算量和参数量统计 3. How fast is my model? 计算公式 理论上的计算公式如下: \begin{equation}\label{FLOPs 阅读全文
posted @ 2020-04-08 15:45 xuanyuyt 阅读(17497) 评论(4) 推荐(2) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2020-04-07 17:24 xuanyuyt 阅读(20) 评论(0) 推荐(0) 编辑
摘要: paper link keyword outer faces:异常人脸,由于人脸尺度过小或者人脸尺度与anchor尺度不匹配,造成训练时匹配不到足够多的Anchor(小于阈值K),影响了这些人脸的召回。 HAMBox:Online High-quality Anchor Mining Strateg 阅读全文
posted @ 2020-03-26 14:58 xuanyuyt 阅读(1364) 评论(0) 推荐(0) 编辑
摘要: 引用:Introductory guide to Generative Adversarial Networks (GANs) and their promise! What is a GAN? Let us take an analogy to explain the concept: 如果你想在 阅读全文
posted @ 2020-03-24 22:48 xuanyuyt 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 之前虽然也了解一丢丢的 Faster RCNN,但却一直没用过,因此一直都是一知半解状态。这里结合书中描述和 PyTorch 官方代码来好好瞅瞅。 论文: Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Ne 阅读全文
posted @ 2020-03-13 10:59 xuanyuyt 阅读(12959) 评论(4) 推荐(2) 编辑
摘要: 论文:Spatial As Deep: Spatial CNN for Traffic Scene Understanding 代码:https://github.com/cardwing/Codes-for-Lane-Detection/tree/master/SCNN-Tensorflow 参考 阅读全文
posted @ 2019-12-11 14:15 xuanyuyt 阅读(9415) 评论(1) 推荐(1) 编辑
摘要: 前言 后面工作中有个较重要的 task 是将 YOLOV3 目标检测和 LanNet 车道线检测和到一个网络中训练,特别的是,这两部分数据来自于不同的数据源。这和我之前在 caffe 环境下训练检测整个车身的同时还要训练车头车尾类似,只不过环境变更到了 tensorflow,尴尬的是,这个月才真正接 阅读全文
posted @ 2019-10-28 17:15 xuanyuyt 阅读(811) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页