[object detection] 구글 코랩에서 실행하기
# 텐서플로우 설치 import tensorflow as tf tf.__version__ # COCO API installation : pycocotools 를 설치 => 이미 설치되어있음. ! pip install pycocotools # 깃허브에 있는 레파지토리를, 파이썬의 코드로 clone 하는 방법 import os import pathlib if "models" in pathlib.Path.cwd().parts : while "models" in pathlib.Path.cwd().part : os.chdir('..') elif not pathlib.Path('models').exists() : ! git clone --depth 1 https://github.com/tensorflow/model..