일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pyTorch
- object detection
- colab
- python
- windows
- download
- linux
- install
- CUDA
- TensorFlow
- shakeratos
- dataset
- python3
- face_recognition
- Jupyter notebook
- ppc64le
- FIle
- colaboratory
- YouTube 8M
- keras
- urllib
- Windows 10
- gpu memory
- Deep Learning
- raspberry pi
- error
- Anaconda
- ubuntu
- 딥러닝
- dlib
- Today
- Total
목록전체 글 (77)
Shakerato
The reason why cv2.2VdeoWriter can't save the video content with correct code is the output video's width, height size is different with input video's width, height size. You need to match them using below code. import cv2 cap = cv2.VideoCapture('input.mp4') vid_width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH)) vid_height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT)) fourcc = cv2.VideoWriter_fourcc(*'X..
[In windows 10] 1. Open cmd 2. "jupyter kernelspec list" Available kernels: pytorch C:\Users\[Username]\AppData\Roaming\jupyter\kernels\pytorch tensorflow1.8 C:\Users\[Username]\AppData\Roaming\jupyter\kernels\tensorflow1.8 python3 C:\ProgramData\Anaconda3\share\jupyter\kernels\python3 C:\WINDOWS\system32> 3. Open "kernal.json" { "argv": [ "C:\\ProgramData\\Anaconda3\\python.exe", "-m", "ipykern..
docker pull httpd docker run -i -t -h [container name] --name --dns 8.8.8.8 -d -v /data:/data -p [external port:port] httpd /bin/bash docker ps -a docker commit [user]/[backup image name] docker images docker attach [container name] apt-get update apt-get insatll vim Set ServerName vi /usr/local/apache2/conf/httpd.conf ServerName www.example.com:80 --> ServerName [IP]:[Port] apachectl -k gracefu..
관리자권한으로 cmd 실행 1. [드라이브 오류 검사, 자동 수정]chkdsk drive: /f(예, k드라이브에 마운트된 usb)chkdsk k: /f 2. [드라이브 포멧(Format) 변환]convert drive: /fs:ntfs(예, k드라이브에 마운트된 usb)convert k: /fs:ntfs
[previous setup]conda install pytorch cuda90 -c pytorch (installed)pytorch 0.4.0 py36_cuda90_cudnn7he774522_1 [cuda90] pytorch --> If you are using the latest GPU in the above environment, for example, 2080ti,you may get an error message when you run pytorch code using GPU as shown in below. CUDNN_STATUS_EXECUTION_FAILED --> [solution setup]1. install cuda 10.0 and new cudnn for this2. conda upd..
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..