일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- face_recognition
- YouTube 8M
- dlib
- Deep Learning
- linux
- dataset
- Anaconda
- download
- colab
- keras
- gpu memory
- raspberry pi
- error
- CUDA
- python
- 딥러닝
- FIle
- install
- TensorFlow
- windows
- colaboratory
- ubuntu
- ppc64le
- python3
- shakeratos
- Windows 10
- urllib
- pyTorch
- object detection
- Jupyter notebook
- Today
- Total
목록전체 글 (77)
Shakerato
CUDA 9.2가 깔려있어도 CUDA 9.0을 참조하는 경우 다음과 같은 에러메세지가 발생한다.(에러메세지)ImportError: libcublas.so.9.0: cannot open shared object file: No such file or directory 특히 tensorflow 최신버전을 설치 후 import 할때 이런 경우가 발생한다.이런경우 CUDA 9.0와 cudnn을 다시 다운받아 CUDA 9.2가 깔려있는 같은 시스템에 새롭게 설치하면 된다.(리눅스에서는 다른 버전의 CUDA를 모두 설치할 수 있다.)cuda9.0이 설치 되면 /usr/local/cuda 이 폴더가 자동으로 cuda9.2가 아닌 cuda9.0을 가르키게 된다. * 만약 CUDA 9.2를 사용하고 싶으면 PATH를 잡..
1. Basic code of urlretrieve to download a fileurllib.request.urlretrieve(source_url, destination_path) 2. Advanced code of urlretrive to display the download percentage.def download_file(source_url, destination_path): """Downloads `source_url` onto `destionation_path`.""" def _progress(count, block_size, total_size): sys.stderr.write('\r>> Downloading %s %.1f%%' % ( source_url, float(count * bl..
easy_install six
refer to (utahman) : https://github.com/matterport/Mask_RCNN/issues/6 pip install git+https://github.com/philferriere/cocoapi.git#egg=pycocotools^&subdirectory=PythonAPI * When you have error on jupyter notebook, even if you already installed, You need to install on jupyter before you run the code, like this. !pip install git+https://github.com/philferriere/cocoapi.git#egg=pycocotools^&subdirect..
1. CUDA 설치(설치전 Nouveau kernel driver should be disabled: https://askubuntu.com/questions/841876/how-to-disable-nouveau-kernel-driver)http://www.kwangsiklee.com/2017/07/%EC%9A%B0%EB%B6%84%ED%88%AC-16-04%EC%97%90%EC%84%9C-cuda-%EC%84%B1%EA%B3%B5%EC%A0%81%EC%9C%BC%EB%A1%9C-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0/ 2. cuDNN 설치Download cuDNN*.deb on https://developer.nvidia.com/cudnncuda버전에 맞는 cudnn 중 다음..
Refer to https://chocolatey.org/install Refer to http://thesociablegeek.com/azure/using-curl-in-powershell/ 1. in cmd @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" 1. in ..