일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- SIFT
- 그래프 이론
- exists
- dynamic programming
- machine learning
- 자료구조
- 머신러닝
- MinHeap
- BFS
- 백준
- image processing
- Python
- canny edge detection
- Mask Processing
- clustering
- DP
- C++
- MySQL
- Reinforcement Learning
- AlexNet
- 딥러닝
- IN
- dfs
- edge detection
- classification
- 인공지능
- TD
- sklearn
- 강화학습
- opencv
- Today
- Total
목록분류 전체보기 (118)
JINWOOJUNG
본 포스팅은 Hands-On Machine Learning with Scikit-Learn, Keras & TensorFlow 2판을 토대로공부한 내용을 정리하기 위한 포스팅입니다. 해당 도서에 나오는 Source Code 및 자료는 GitHub를 참조하여 진행하였습니다.https://github.com/ageron/handson-ml2 GitHub - ageron/handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep LA series of Jupyter notebooks that walk you through the fundamentals of Machine ..
본 포스팅은 Hands-On Machine Learning with Scikit-Learn, Keras & TensorFlow 2판을 토대로공부한 내용을 정리하기 위한 포스팅입니다. 해당 도서에 나오는 Source Code 및 자료는 GitHub를 참조하여 진행하였습니다.https://github.com/ageron/handson-ml2 GitHub - ageron/handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep LA series of Jupyter notebooks that walk you through the fundamentals of Machine ..
본 포스팅은 Hands-On Machine Learning with Scikit-Learn, Keras & TensorFlow 2판을 토대로공부한 내용을 정리하기 위한 포스팅입니다. 해당 도서에 나오는 Source Code 및 자료는 GitHub를 참조하여 진행하였습니다.https://github.com/ageron/handson-ml2 GitHub - ageron/handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep LA series of Jupyter notebooks that walk you through the fundamentals of Machine ..
직접 구축한 Custom Datset을 기반으로 Yolov8 모델을 학습시켰다. 이제는 학습된 모델의 성능을 평가하기 위한 몇가지 방법을 알아보고, Yolo 모델을 학습 시 Validation Dataset을 기반으로 자동으로 계산되는 성능 평가 지표를 직접 분석 해 보자.https://jinwoo-jung.com/69 [ YOLOv8 ] Custom Dataset 학습(Google Colab)https://jinwoo-jung.tistory.com/68 [ YOLOv8 ] Custom Dataset 구축(Roboflow)YOLOv8을 통한 Object Detection을 위해선 적합한 Model을 생성해야 한다.Model 학습을 위해선 Custom Dataset을 구축해야 하며, YOLOv8의 경우 R..
본 포스팅은 Hands-On Machine Learning with Scikit-Learn, Keras & TensorFlow 2판을 토대로 공부한 내용을 정리하기 위한 포스팅입니다. 해당 도서에 나오는 Source Code 및 자료는 GitHub를 참조하여 진행하였습니다.https://github.com/ageron/handson-ml2 GitHub - ageron/handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep LA series of Jupyter notebooks that walk you through the fundamentals of Machine..
Linux 환경에서 개발 시 이전까지는 Visual Studio Code를 기반으로 작업하였다. 하지만 통합코드를 기반으로 대회를 준비하면서 Git을 사용하게 되고, Git 충돌이나 Commit 간의 차이를 확인할 때 Sublime Merge를 많이 사용하게 되면서 주 개발 툴도 Sublime Text로 바뀌게 되었다. 오늘은 간단하게 Sublime Text & Sublime Merge Install에 관하여 정리하고자 한다.Development EnvironmentUbuntu 20.04 Sublime Text여러 방법이 있지만 apt를 통해 설치하는 것을 추천한다.https://www.sublimetext.com/docs/linux_repositories.html Linux Package Manager..
CUDA 설치 이후 YOLO Deep Learning Model을 c++ 환경에서 동작시키기 위하여 cuDNN 설치가 추가적으로 요구된다. cuDNN 설치 이전, CUDA가 개인의 GPU 환경에 맞게 설치되었다는 가정하에 진행하겠다. cuDNN을 설치하지 않으면, 위와 같이 딥러닝 모델을 동작시키는 과정에서 OpenCV 내 dnn 관련 함수들이 포함되어있지 않아 core dumped가 발생한다. 따라서 cuDNN을 설치하여 연결시켜줘야 한다. cuDNN 설치https://developer.nvidia.com/rdp/cudnn-archive 위 주소로 들어가 cuDNN을 설치한다. cuDNN Version을 선택하기 위해서는, 자신의 환경에 설치된 CUDA Version을 우선적으로 알아야 한다. ..
접근법 처음에는 0번째 부터 수열의 값을 체크 해 가면서 Max값을 다른 변수에 저장하고 해당 변수보다 큰 값이 있다면 Count를 1개씩 증가시키면서 변수를 Update하는 식으로 구현하였다. 너무 쉬운 감이 있었지만 역시 틀렸다. 10 20 5 12 17 30 다음과 같이 순열이 있다고 하자. 그러면 처음 접근법처럼 시도하면 Max = 10, Cnt =1일 것이다.하나씩 주어진 순열과 비교 해 나가면, Max = 20, Cnt = 1이고 그 뒤로 5,12,17은 전부 20보다 작아서 Count 하지 않고, 마지막 30만 Count 되어서 Max = 30, Cnt = 3으로 가장 긴 증가하는 부분 수열의 길이는 3이 된다. 하지만 5, 12, 17, 30 이 더 긴 증가하는 부분 수열로, 길이는 4가 ..