TFOD

    TensorFlow Object Detection 환경구축

    TFOD를 사용하기 위한 환경설정을 처음부터 끝까지 진행해보도록 하겠습니다. 1. 가상환경 설정 및 텐서플로우 설치 - conda(cmd)에 코드 작성 (저는 리마인드용이라 tfod_self로 만들었지만 보시는분들은 tfod로 만드셔도 무방합니다) conda create -n tfod_self python=3.8 conda activate tfod_self pip install tensorflow==2.2.0 python import tensorflow as tf 2. document폴더에 텐서플로우 폴더를 만들어 git 설치함. cd Documents (문서 폴더로 이동) mkdir Tensorflow (텐서플로우 파일 생성) git 설치 git clone https://github.com/tensor..