일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- colab
- YouTube 8M
- dataset
- object detection
- keras
- error
- python
- gpu memory
- install
- FIle
- raspberry pi
- linux
- urllib
- face_recognition
- download
- Windows 10
- windows
- ppc64le
- TensorFlow
- CUDA
- Anaconda
- Jupyter notebook
- shakeratos
- python3
- 딥러닝
- Deep Learning
- dlib
- colaboratory
- ubuntu
- pyTorch
- Today
- Total
목록Research (67)
Shakerato
. (현재폴더) --> (특정폴더로 변경 가능) find . -type f | sed -n 's/..*\.//p' | sort | uniq -c
def __init__(self, input_size, hidden_size, num_layers=2): super().__init__() self.lstm = nn.LSTM(input_size, hidden_size, num_layers) def forward(self, features, init_hidden=None): self.lstm.flatten_parameters() RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation Move the self.lstm.flatten_parameters() in def foward() to def __init__. It ..
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..