본문 바로가기
728x90
반응형
SMALL

전체 글 보기262

[논문 리뷰] DETRs Beat YOLOs on Real-time Object Detection 📃 논문🔮 GitHub GitHub - lyuwenyu/RT-DETR: [CVPR 2024] Official RT-DETR (RTDETR paddle pytorch), Real-Time DEtection TRansformer, DETRs Beat YOL[CVPR 2024] Official RT-DETR (RTDETR paddle pytorch), Real-Time DEtection TRansformer, DETRs Beat YOLOs on Real-time Object Detection. 🔥 🔥 🔥 - GitHub - lyuwenyu/RT-DETR: [CVPR 2024] Official RT-DE...github.com 개요YOLO 시리즈는 빠른 속도와 적절한 정확도 간의 균형 덕분에 실시간 객.. 2024. 9. 4.
[논문 리뷰] Computer Vision - YOLOv10: Real-Time End-to-End Object Detection YOLOv10: 실시간 End-to-End 객체 탐지📃 논문🔮 GitHub GitHub - THU-MIG/yolov10: YOLOv10: Real-Time End-to-End Object DetectionYOLOv10: Real-Time End-to-End Object Detection. Contribute to THU-MIG/yolov10 development by creating an account on GitHub.github.com📍 Docs YOLOv10뛰어난 속도와 정확성으로 유명한 최첨단 실시간 물체 감지기인 YOLOv10에 대해 알아보세요. NMS가 필요 없는 훈련, 전체적인 모델 설계, 다양한 규모에 걸친 성능에 대해 알아보세요.docs.ultralytics.com🔍 YOLOv9 .. 2024. 5. 28.
[GitHub] git repository 공개/비공개 전환 Github에서 특정 Repository 공개 또는 비공개로 전환하는 법을 알아보자.원격 저장소에 백업해 놓을 때 주로 비공개로 전환 후 사용한다.완성된 프로젝트는 다시 공개 리포지토리로 전환할 수 있다. 1. Repository Settings 이동 2. 스크롤 다운하여  "Danger Zone"에서 'Change visibility' 클릭 3. Change to public / Change to private 선택 4. 전환 확인 2024. 5. 23.
[라이선스, Licenses] 저작권, 라이센스에 대해 알아보자 1. 데이터셋의 라이선스(라이센스, License)데이터셋을 사용, 수정, 공유할 수 있는 범위와 조건을 정의데이터셋을 적절하고 책임감있게 사용하는 방법을 명확하게 설명해야함라이선스가 없으면 데이터셋을 악의적이고 부정확하게(의도했든 의도하지 않았든) 사용할 위험이 있어 원하지 않는 결과를 초래할 수도 있음 2. CC LicensesCreative Commons Licenses개인 창작자, 대규모 기관까지 모든 사람에게 저작권법에 따라 자신의 창작물을 사용할 수 있는 대중의 허가를 부여하는 표정화된 방법재사용자의 관점에서 볼 때, 저작권이 있는 저작물에 크리에이티브 커먼즈 라이선스가 존재한다는 것은 '이 저작물로 무엇을 할 수 있습니까?' 라는 질문에 대한 답  2-1. CC BY  재사용자는 저작자에게 .. 2024. 5. 7.
[논문 리뷰] Computer Vision - YOLOv9: 물체 감지 기술의 도약 📃 논문 YOLOv9: Learning What You Want to Learn Using Programmable Gradient Information Today's deep learning methods focus on how to design the most appropriate objective functions so that the prediction results of the model can be closest to the ground truth. Meanwhile, an appropriate architecture that can facilitate acquisition of enough i arxiv.org 🔮 Github GitHub - WongKinYiu/yolov9: Implement.. 2024. 3. 6.
[논문 리뷰] Computer Vision - SOLO(Semgmentation Objects by LOcation) 📃논문 - https://www.ecva.net/papers/eccv_2020/papers_ECCV/papers/123630630.pdf SOLO(Segmaentation Objects by LOcation) FCN에서 제시했던 network처럼 주어진 input image의 크기와 동일한 사이즈의 output을 pixel 단위로 class를 예측하는 것을 dense pixel-wise classification라고 함. 현실적으로 이런 방식을 선택하면 모든 instance를 바로 예측하기가 힘듬 Preview 기존의 instance segmentation연구 top-bottom(detect - then - segment) bbox를 통해서 개체를 찾은 다음에 pixel 별로 predict를 하는 방법 .. 2023. 10. 4.
[논문 리뷰] Computer Vision - DETR 📃 논문 https://arxiv.org/pdf/2005.12872.pdf DETR(DEtection TRansformer) DETR은 Transformer 구조를 활용하여, end-to-end로 object detection을 수행하면서도 높은 성능을 보임 현재 많은 SOTA 모델들이 DETR을 기반으로 발전함 기존의 Object Detecor vs DETR 본 논문에서 object detection은 Set 타입의 bounding box와 category로 예측하는 task라고 정의 기존의 Object Detector pre-defined anchor를 사용 이미지 내 고정된 지점마다 다양한 scale, aspect ratio를 가진 anchor를 생성 이후 anchor를 기반으로 생성한 예측 bou.. 2023. 9. 10.
[프로그래머스, 파이썬] 추억 점수 https://school.programmers.co.kr/learn/courses/30/lessons/176963 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(name, yearning, photo): result = [] dic= dict(zip(name, yearning)) # print(dic) for people in photo: score = 0 # 누적할 추억점수 for person in people: score += dic.get(person, 0) # dic에서 person이 있으면 해당 person의 추억점수를 .. 2023. 9. 9.
728x90
반응형
LIST