본문 바로가기

반응형

머신러닝/YOLO

(5)
Object Detection / YOLOv3 : train_detector - 3 2019/07/31 - [머신러닝/YOLO] - Object Detection / YOLOv3 : train_detector - 2 Object Detection / YOLOv3 : train_detector - 2 2019/07/31 - [머신러닝/YOLO] - Object Detection / YOLOv3 : train_detector - 1 Object Detection / YOLOv3 : train_detector - 1 ./darknet detector train cfg/voc.data cfg/yolov3-voc.cfg darknet53.conv.7.. jainkku.tistory.com darknet convolution은 caffe convolution과 같다. * im2col 반복문을 여러..
Object Detection / YOLOv3 : train_detector - 2 2019/07/31 - [머신러닝/YOLO] - Object Detection / YOLOv3 : train_detector - 1 Object Detection / YOLOv3 : train_detector - 1 ./darknet detector train cfg/voc.data cfg/yolov3-voc.cfg darknet53.conv.74 (-flags) 위의 명령어를 darknet.c/main의 input 값으로 사용했다. datacfg 는 "cfg/voc.data", cfgfile 는 "cfg/yolov3-voc.cfg",.. jainkku.tistory.com 이어지는 내용입니다! n = n->next; n은 [net]다음인 [convolutional] 정보를 나타낸다. fprintf로 출..
Object Detection / YOLOv3 : train_detector - 1 ./darknet detector train cfg/voc.data cfg/yolov3-voc.cfg darknet53.conv.74 (-flags) 위의 명령어를 darknet.c/main의 input 값으로 사용했다. datacfg 는 "cfg/voc.data", cfgfile 는 "cfg/yolov3-voc.cfg", weightfile 는 "darknet53.conv.74", 그 외의 flag값들 또한 train_detector의 인자로 전달된다. (https://github.com/AlexeyAB/darknet 참고) int *gpus 가 가리키는 값은 0 int ngpus가 가리키는 값은 1 int clear, dont_show, calc_map, show_imgs 모두 설정하지 않았으므로 0..
Object Detection / YOLOv3 : test_detector parameter net : yolo.cfg file의 정보가 담겨있다. im.w : 768 im.h : 576 thresh : 2105608384 hier_thresh : 2105608384 nboxes : 0 letter_box : 0 net->n - 1 = 106 106번째 layer는 마지막 yolo layer다. nboxes 에는 10647 값이 들어온다. 총 3개의 yolo layer 마다 yolo_num_detections 값을 더해준다. w*h만큼 for문 돌면서 (13, 26, 52) yolo layer의 n 만큼 for문을 돈다. n : 3이다, n은 한 그리드가 가질 수 있는 최대 box 개수? 한그리드 씩 3번의 for문을 돌아서 thresh 값을 넘으면 count++ l : yol..
텐서란 무엇인가? 텐서는 rank 0부터 n 까지 존재한다. scalar value는 number를 하나만 가지고있다. scalar를 여러개 가지면 vector가 되고, vector를 여러개 가지면 matrix가 되고, matrix를 여러개 가지면 3d tensor가 된다. CNN에 흐르는 데이터는 4d tensor이다 (B, C, H, W) B : 배치 개수 C : Channel 개수 H : Height W : width 참고 https://www.youtube.com/watch?v=m0qwxNA7IzI

반응형