최신 글
-
[내 맘대로 분석] RandAugment: Practical automated data augmentationwith a reduced search spaceComputer Vision 2022.06.09 12:47
논문명 RandAugment: Practical automated data augmentationwith a reduced search space 저널 IEEE CVPR(Conference on Computer Vision and Pattern Recognition) 논문 링크 https://arxiv.org/abs/1909.13719 Abstract 데이터 증강은 대체적으로 딥러닝 모델의 일반화(Normalization)을 크게 향상 시킴. Automated Augmentation(이하 AA) 전략을 통해 Image Classification or Object Detection에서 큰 성능 향상을 불러 올 수 있었다. Validation시 정확도를 향상시키기 위해 최적화 되었지만, 준 지도 학습에서 좋..
-
Imgaug LibraryComputer Vision 2022.06.09 12:38
참고문헌 공식 github : https://github.com/aleju/imgaug GitHub - aleju/imgaug: Image augmentation for machine learning experiments. Image augmentation for machine learning experiments. - GitHub - aleju/imgaug: Image augmentation for machine learning experiments. github.com 공식 Docs : https://imgaug.readthedocs.io/en/latest/ imgaug — imgaug 0.4.0 documentation © Copyright 2020, Alexander Jung Revision 74..
-
Windows 10 PC에 TensorRT 설치기Etc 2021.01.01 21:58
1. 사용환경 PC Spec CPU AMD Ryzen 5 2600x RAM Essencore Klevv DDR4-17000 8GB x2 SAMSUNG DDR4-21300 16GB x1 VGA ZOTAC GAMING Geforce GTX 1660 Ti AMP D6 6GB CUDA Version : v10.2.89 cuDNN Version : v8.0.5.39 2. 설치 방법 - 준비물 TensorRT Zip File : https://developer.nvidia.com/nvidia-tensorrt-download pip install C:\TensorRT-7.2.2.3\graphsurgeon\graphsurgeon-0.4.5-py2.py3-none-any.whl pip install C:\TensorRT..
-
1-1. 머신러닝이란?Hands-On Machine Learning 2020.11.05 10:03
정의 : 데이터에서 학습하도록 컴퓨터를 프로그래밍 하는 과학(공학, 예술) Machine Learning은 명시적인 프로그래밍이 없이 컴퓨터가 학습하는 능력을 갖추게 하는 연구분야이다, by Arthur Samuel 어떤 작업(Task, T)에 대하여 컴퓨터 프로그램의 성능(P, Performance)를 측정 하였을 떄, 경험(E, Experience)으로 인하여 성능이 향상 했다면, 이 컴퓨터 프로그램은 T와 P에 대해 E로 학습한 것이다. by Tom Mitchell 학습 하는데 사용하는 샘플 : Training Set(훈련 세트) 각 훈련 데이터 : Training Data(훈련 데이터) P : 성능 측정을 위하여 직접 정의하는 변수. —> 보통 Accuracy로 쓴다. —> 분류(Classific..