일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- urllib
- pyTorch
- shakeratos
- Windows 10
- Anaconda
- raspberry pi
- python
- download
- Deep Learning
- colab
- dlib
- 딥러닝
- Jupyter notebook
- windows
- keras
- dataset
- colaboratory
- linux
- YouTube 8M
- ppc64le
- TensorFlow
- object detection
- python3
- install
- error
- FIle
- ubuntu
- gpu memory
- face_recognition
- CUDA
- Today
- Total
목록CUDA (3)
Shakerato
Reference:https://github.com/kenshohara/video-classification-3d-cnn-pytorch (Linux)1. Install Anaconda and Setup Pytorch (GPU)2. Download code from Github (https://github.com/kenshohara/video-classification-3d-cnn-pytorch)3. Download Pre-trained Model and copy to source code folder (resnext-101-kinetics.pth) https://drive.google.com/drive/folders/1zvl89AgFAApbH0At-gMuZSeQB_LpNP-M4. Install FFmpe..
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 ..
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 중 다음..