일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- 논문리뷰
- SNMP
- 설치
- ctypes
- 이터널리턴
- 챗지피티
- 개발자
- 딜러닝
- 논문
- connx
- 호흡분석
- 언리얼엔진
- 딥러닝
- Detectron2
- 네트워크
- modbus-tcp
- Protocol
- 파이썬
- C언어
- 게임개발
- yolo
- python
- GPT
- trapmessage
- V3
- 헬스케어
- 프로그래머
- 리뷰
- MODbus
- ChatGPT
- Today
- Total
목록NOTE (76)
yusukaid's IT note

YOLO를 공부한지 이제야 2주째 되는데..yolo v7이 나왔다는 소식. 덕분에 논문을 하나하나 읽어보고 있다. 내 분야이니 공부하는 건 당연하고. https://github.com/jinfagang/yolov7 GitHub - jinfagang/yolov7: 🔥🔥🔥🔥 (Earlier YOLOv7 not official one) YOLO with Transformers and Instance Segmentation, 🔥🔥🔥🔥 (Earlier YOLOv7 not official one) YOLO with Transformers and Instance Segmentation, with TensorRT acceleration! 🔥🔥🔥 - GitHub - jinfagang/yolov7: 🔥🔥🔥🔥 (Earlie..

논문 출처: http://jsstec.org/xml/24887/24887.pdf 현재 소속중인 연구실에서 헬스 케어를 연구중이다. 교수님께서 내주신 과제는 호흡 패턴에 의한 호흡 데이터 확보. 20년 넘게 살면서 정말 쳐다도 안본 분야다. 다행히 아직은 살기 좋은 세상이다. 인터넷을 뒤지다가 좋은 논문을 하나 발견했다. Abstract 유아 및 아동에게 진료를 할 때 행동 조절이 어려운 경우가 많다. 이 때 환자들이 공포심을 갖지 않고 심리적인 불안감을 안정시키기 위해서 병원에서 많은 방법을 사용한다. 심리적 방법, 신체적 억제법, 약물을 이용한 의식하 진정 요법 등 여러가지 방법이 있지만 이 방법들이 불충분한 경우 특별한 행동조절법이 요구된다. 수면 마취를 이용하면 환자에게 필요한 모든 치료를 한번에 ..

인생 첫 논문 리뷰에, 처음 해보는 딥러닝 분야 개발이라 일주일 정도의 시간이 걸렸습니다. 이리 치이고 저리 치이다가 결국 완성하긴 했네요 . 첫 시작은 맥북 m1이었습니다. 작년에 산 따끈따끈한 랩탑이었기도 하고, 못해도 5년 이상은 써야할 장비기 때문에 중요했었죠. 근데 이게 큰 문제의 시작입니다. 내 발목을 잡은 cuda 일단 대부분의 딥러닝 개발은 파이썬으로 이루어지고, 거기서 수많은 모듈을 사용합니다. YOLO 개발에 쓰이는 대표적인 모델음 pytorch와 tensorflow가 있죠. pytorch에 관련된 자료가 더 많아서 이를 바탕으로 시작을 했는데, 웬걸 너무 복잡한 겁니다. 단순히 'conda install pytorch'로 끝나는 윈도우 환경과 달리 환경 변수 설정도 따로 해줘야 했습니..

이전 포스팅 모음: https://it-the-hunter.tistory.com/26?category=1035318 https://it-the-hunter.tistory.com/31?category=1035318 https://it-the-hunter.tistory.com/28?category=1035318 https://it-the-hunter.tistory.com/32?category=1035318 https://it-the-hunter.tistory.com/33?category=1035318 https://it-the-hunter.tistory.com/34?category=1035318 https://it-the-hunter.tistory.com/36?category=1035318 https://i..
이전 글: https://it-the-hunter.tistory.com/36 TensorFlow를 이용한 YOLO v1 논문 구현 #7 - train.py 이전 글: https://it-the-hunter.tistory.com/34 TensorFlow를 이용한 YOLO v1 논문 구현 #6 - model.py 이전 글: https://it-the-hunter.tistory.com/33 TensorFlow를 이용한 YOLO v1 논문 구현 #5 - utils.py 이.. it-the-hunter.tistory.com evaluate.py 목표: 학습된 파라미터를 불러와 evaluation을 진행 필요한 모듈, 라이브러리 import import tensorflow as tf import tensorflow..
이전 글: https://it-the-hunter.tistory.com/34 TensorFlow를 이용한 YOLO v1 논문 구현 #6 - model.py 이전 글: https://it-the-hunter.tistory.com/33 TensorFlow를 이용한 YOLO v1 논문 구현 #5 - utils.py 이전 글: https://it-the-hunter.tistory.com/32 TensorFlow를 이용한 YOLO v1 논문 구현 #4 - datasets.py.. it-the-hunter.tistory.com train.py 목표: 모델 class를 인스턴스로 선언해 for 루프를 돌면서, gradient descet를 수행하며 파라미터를 업데이트 필요한 모듈, 라이브러리 import import..