강의

멘토링

로드맵

Inflearn Community Q&A

hjmoon1532's profile image
hjmoon1532

asked

[Revised Edition] A Complete Guide to Deep Learning Computer Vision

환경설정

Written on

·

152

0

개인 gpu 서버에서 작업을 하고 있습니다. 

yolo 학습을 따라가고 있는데, tf113 환경설정과 동일하지 

않아서 작업을 따라가는데 어려움이 많습니다. 

tf113 환경 requirements 를 받을 수 있을까요? 

tensorflow머신러닝 배워볼래요? 딥러닝python컴퓨터-비전keras

Answer 1

0

dooleyz3525님의 프로필 이미지
dooleyz3525
Instructor

안녕하십니까,

conda 가상환경을 tf113으로 만드시고 install_tf113.sh 을 수행하셔도 문제가 있으신지요?

제가 드릴 수 있는 requirement는 아래 install_tf113.sh에 있는 pip install requirement가 다 입니다.

pip install opencv-python
pip install imgaug
pip install lxml
pip install pandas
pip install selectivesearch
pip install tensorflow-gpu==1.13.1
pip install keras==2.2.1
conda install -c conda-forge pycocotools -y
conda install nb_conda -y
# for multi jupyter notebook kernal
pip install ipykernel

python -m ipykernel install --user --name tf113

pip install scikit-image

감사합니다.

hjmoon1532's profile image
hjmoon1532

asked

Ask a question