분류 전체보기
-
[내 맘대로 분석] RandAugment: Practical automated data augmentationwith a reduced search spaceDev/Computer Vision 2022. 6. 9. 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 LibraryDev/Computer Vision 2022. 6. 9. 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 설치기AI/Etc 2021. 1. 1. 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. 머신러닝이란?AI/Hands-On Machine Learning 2020. 11. 5. 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..
-
Jetbot TeleporationUniversity/Jetbot 2020. 11. 4. 19:20
참고 : https://github.com/NVIDIA-AI-IOT/jetbot/blob/master/notebooks/teleoperation/teleoperation.ipynb NVIDIA-AI-IOT/jetbot An educational AI robot based on NVIDIA Jetson Nano. - NVIDIA-AI-IOT/jetbot github.com WaveShare社의 키트를 사용하면, Gamepad가 딸려 온다. 이를 통하여 Jetbot을 조종하는 코드이다. import ipywidgets.widgets as widgets controller = widgets.Controller(index=0) # replace with index of your controller display..
-
Object Following 공부University/Jetbot 2020. 10. 29. 09:42
1. Jetbot 기동을 통한 Object Follow 2. coco dataset을 사용하여 mobilenetv2를 학습 시킨 engine파일 생성(보류) - PyCUDA (pip install pycuda) (완료) - TensorRT 설치 (https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html#installing-zip) Installation Guide :: NVIDIA Deep Learning TensorRT Documentation These upgrade instructions are for Ubuntu and Windows users only. When upgrading from TensorRT 7.x.x to Ten..