모도리는 공부중

2021.03.29. retinanet 설치중입니다. 본문

내 지식 정리/날것 그 자체

2021.03.29. retinanet 설치중입니다.

공부하는 모도리 2021. 3. 29. 12:18
728x90
반응형

github.com/yhenon/pytorch-retinanet

 

yhenon/pytorch-retinanet

Pytorch implementation of RetinaNet object detection. - yhenon/pytorch-retinanet

github.com

bblib.net/entry/%ED%8C%8C%EC%9D%B4%ED%86%A0%EC%B9%98%EC%9C%88%EB%8F%84%EC%9A%B0%EC%97%90%EC%84%9C-pycocotools-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95

 

[파이토치]윈도우에서 pycocotools 사용하는 방법

파이토치에서 retinanet 을 구현하기 위해 import 하는 도중 pycocotools가 필요함을 확인했다. 그냥 설치하면? 안된다. 윈도우에 지원하지 않는다. 다음과 같은 절차를 진행해야 한다. 1. pip install cytho

bblib.net

like-edp.tistory.com/10

 

Tensorflow2 Object Detection API 설치 및 환경 구성

반갑습니다! 이번 글에서는 Tensorflow 2.x 버전을 기반으로 하는 Object Detection API를 Anaconda 가상 환경에 설치하고 확인하는 방법에 대해서 진행해보려고 합니다. 지금부터 설치하는 환경은 Windows10에

like-edp.tistory.com

위 링크 내용 중 내게 지금 필요한 부분

선생님 감사합니다...

 

 

 

 

그리고 화가 많이 났다... 뭘 해도 안돼.. 파이터치를 버리고 케라스로 되어있는 깃허브 링크를 다시 찾았다.

github.com/fizyr/keras-retinanet

 

fizyr/keras-retinanet

Keras implementation of RetinaNet object detection. - fizyr/keras-retinanet

github.com

위 링크를 참조하여 설치를 도와준 블로그 내용

eremo2002.tistory.com/100

 

RetinaNet을 이용한 Object Detection

참조 깃헙 https://github.com/fizyr/keras-retinanet fizyr/keras-retinanet Keras implementation of RetinaNet object detection. - fizyr/keras-retinanet github.com 1. 환경구축 1.1 conda create -n env_na..

eremo2002.tistory.com

진행하던 중 만난 오류

(env_name) D:\3rd_Deep\keras-retinanet-master>pip install -r requirements.txt
Collecting git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI (from -r requirements.txt (line 3))
  Cloning https://github.com/cocodataset/cocoapi.git to c:\users\smhrd\appdata\local\temp\pip-req-build-jwlhtxa3
  Running command git clone -q https://github.com/cocodataset/cocoapi.git 'C:\Users\SMHRD\AppData\Local\Temp\pip-req-build-jwlhtxa3'
  ERROR: Error [WinError 2] 지정된 파일을 찾을 수 없습니다 while executing command git clone -q https://github.com/cocodataset/cocoapi.git 'C:\Users\SMHRD\AppData\Local\Temp\pip-req-build-jwlhtxa3'
ERROR: Cannot find command 'git' - do you have 'git' installed and in your PATH?

해결하기 위해 구글링했더니 

cofs.tistory.com/421

 

cmd에서 git 사용하기 / windows 에서 github 사용하기

windows의 cmd에서 git명령어를 사용해보자. 필자의 경우 windows에서 conda 가상환경을 만들고 이것저것 테스트 하다보니 다음과 같은 오류를 만나서 git을 사용해야 할 경우가 생겼다. ERROR: Cannot find

cofs.tistory.com

cmd에서 git 사용할 수 있도록 설치하는 블로그 발견, 다른 분들은 여기서 도움을 많이 받으셨는지 댓글들이 많은데 나는 또 다시 마주쳤다.

때려칠까..?... retinanet이고 나발이고...ㅜㅜ

 

진정하고.. 내용을 읽어보니 결국엔 여기서 요구하는 것은 pycocotools인 것 같아 설치를 진행해본다.

이후 찾은 블로그

machinelearningkorea.com/2019/12/15/keras-retinanet%EC%9D%84-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EB%AA%A8%EB%8D%B8-%EB%A1%9C%EB%94%A9-%EB%B0%8F-%EC%98%88%EC%B8%A1/

 

Keras-RetinaNet을 이용한 모델 로딩 및 예측 – Go Lab

 

machinelearningkorea.com

여기에서 필요로 하는 라이브러리를 확인하여 설치를 진행하였다.

pip install pycocotools
# 가상환경이 새로 설정되었으니 텐서플로우도 없다.
pip install tensorflow
pip install pydicom
pip install pandas
pip install tqdm
# 구글링 중에 gpu가 사용 가능하다면 conda를 이용하라는 글을 보고 또 설치
conda install tensorflow-gpu=1.15

위의 코드들을 cmd에서 차례대로 입력.

 

그리고 난 또 길을 잃었다. . . ...

 

 

 

 

 

 


2021.03.31.

구축 완료. 아직 잘 돌아가는지 아나콘다상에서 확인은 안됐지만 환경설정이 끝났다는 것에 감격중.

studying-modory.tistory.com/entry/PYTHON-ANACONDA%EC%97%90%EC%84%9C-RETINANET-%EC%84%A4%EC%B9%98

 

[PYTHON] ANACONDA에서 RETINANET 설치

Retinanet 환경설정 아래 과정은 anaconda에서 cmd(명령프롬프트)를 실행하여 진행하였습니다. 가상환경은 cmd를 이용하지 않고 anaconda navigator를 이용하였으며 파이썬은 3.7로 설정하였습니다. Retinanet

studying-modory.tistory.com

 

728x90
반응형
Comments