저장소
image mean값 구하기
bash examples/model_test_5/make_imagenet_mean.sh
caffe
2019. 1. 28. 15:36
cuda 8.0 설치 오류 해결
에러 메세지 : 프로그램을 설치할 수 없습니다. 해결 과정 : CUDA 재설치 및 상위버전 설치 (해결 안됨) 해결법 : DDU 프로그램 설치. 그래픽 드라이버 제거. CUDA 재설치 해결 완료
메모
2018. 6. 18. 16:45
파이썬 scanf, scanner
파이썬은 raw_input(), input()을 씀 import os userinput = raw_input("how old are you? ") print userinput, "data_type : ", type(userinput) uinput = input("how tall are you? ") print uinput, "data_type : ", type(uinput) ------------------------------------------how old are you? 1818 data_type : how tall are you? 170170 data_type : ------------------------------------------ raw_input()은 str, input()은 int,..
Python
2018. 1. 29. 22:01