컴퓨터 비전과 관련해서 논문은 계속 읽고 있지만 직접 실습을 해보기 위해 colab을 사용해 보았다.라이브러리는 detectron2를 사용했다.# 현재 코랩의 PyTorch 버전에 맞는 detectron2 설치import torchTORCH_VERSION = ".".join(torch.__version__.split(".")[:2])CUDA_VERSION = torch.__version__.split("+")[-1]!pip install 'git+https://github.com/facebookresearch/detectron2.git' detectron은 faster R-CNN부터 지원하는데, 원본 논문과는 약간 다르게 FPN이라는 기술이 추가된 faster R-CNN을 기본적으로 권장한다. 따라서 여..