CV
文章平均质量分 96
itspollyyy
这个作者很懒,什么都没留下…
展开
-
深度学习 07- 目标检测基础
Overview:In the object detection, bounding boxes are the most catptured our attention. These boxes are used to target the object. Which is 4 dimensional entities defined by left-upper and right-bottom points.There are key components about the object dete原创 2023-12-09 11:18:40 · 47 阅读 · 0 评论 -
深度学习05 - 一阶全卷积目标检测实例(FCOS)
Fully-Convolutional One-Stage Object Detection参考:EECS 498-007/598-005 Assignment 4-1: One-Stage Object Detector论文地址v1论文v2 不同于使用Anchor去确定目标,FCOS是使用全卷积网络通过确定特征图上的每个位置来预测该点距离目标的距离(左上右下 LTRB),如下图:该流程与第一版的网络的不同点在于最后将regression 和centre-ness分支放在一起。该文中使用的是第二版的网络原创 2023-12-08 23:27:30 · 954 阅读 · 1 评论 -
cs231n-AssignmentNote01-Assignment 2
Assignment2 code: downloaded hereQ1: Multi-Layer Fully Connected Neural NetworksIn this question, we need to implement a fully connected network with an arbitrary number of hidden layers.The main thing to do is implement the initiailzation, forward and原创 2023-11-23 17:13:43 · 97 阅读 · 0 评论 -
cs231n-AssignmentNote00-Assignment 1
【代码】cs231n-AssignmentNote00-Assignment 1。原创 2023-11-21 11:17:06 · 46 阅读 · 0 评论 -
CS231n-Lecture Note-06-Training Neural Networks
。原创 2023-11-16 17:11:55 · 54 阅读 · 1 评论 -
CS231n-Lecture Note-05-CNN Architectures
𝛾and𝛽.𝛾and𝛽.𝛾and𝛽1. 2.3.原创 2023-11-15 17:44:32 · 52 阅读 · 0 评论 -
CS231n-Lecture Note-04-Image Classification with CNN
In the previous section, we mostly talked about Neural Networks. CNN is similar to that. Both are made up of neurons with learnable weights and biases. Each neuron receives some inputs and outputs with non-linearity. Still has loss function.The difference原创 2023-11-15 10:17:30 · 54 阅读 · 0 评论