일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ppc64le
- object detection
- urllib
- Windows 10
- 딥러닝
- TensorFlow
- FIle
- raspberry pi
- keras
- CUDA
- colaboratory
- Jupyter notebook
- shakeratos
- linux
- error
- dataset
- Anaconda
- install
- python3
- colab
- pyTorch
- windows
- Deep Learning
- python
- dlib
- face_recognition
- YouTube 8M
- gpu memory
- ubuntu
- download
- Today
- Total
목록전체 글 (77)
Shakerato
[Uninstall all installed] dpkg -l | grep -i nvidia sudo apt-get remove --purge '^nvidia-.*' dpkg -l | grep -i cuda sudo apt-get remove --purge '^cuda-.*' [Install nvidia-driver] Download nvidia-driver file from nvidia website (I'm trying to install version 410.x) dpkg -i nvidia-driver-local-repo-ubuntu1604-410.x_ppc64el.deb apt-get update apt-cache search nvidia sudo apt-get install nvidia-410 {..
Error message: apt-get Couldn't create temporary file to work with /var/lib/apt/lists/ports.ubuntu.com_ ...Couldn't create temporary file to work with /var/lib/apt/lists/ports.ubuntu.com_ubuntu-ports_dists_xenial_InRelease - mkstemp (2: No such file or directory) Solution is sudo apt-get clean sudo mv /var/lib/apt/lists /trash sudo mkdir -p /var/lib/apt/lists/partial sudo apt-get clean sudo apt-..
1. Copy the subfolder URL like https://github.com/opencv/open_model_zoo/tree/master/demos 2. Connect to here (DownGit) https://minhaskamal.github.io/DownGit/#/home DownGit minhaskamal.github.io 3. Paste the URL to the input box in DownGit front page 4. Finally, .zip file is automatically downloaded in your download folder
리눅스에서의 한글 출력 문제 발생시 해결방법 에러메세지 "UnicodeEncodeError: 'ascii' codec can't encode characters linux ..." 아래 명령어 실행 localedef -i -v -c en_US -f UTF-8 en_US.UTF-8 실행 후 아래 명령어 실행하면 en_US.UTF-8 추가된 걸 확인할 수 있음 locale -a
동일 폴더내 라이브러리 파일이 있음에도 찾지못하는 경우 해결 방법 intellisense도 더 잘 작동함 1. vscode 실행 2. Ctrl + Shift + P 3. "Configure Language Specific" 입력, 엔터 4. "Python" 선택 --> settings.json 열림 5. python.jediEnabled:false --> true or python.jediEnabled --> false, *내용추가 만약 python.jediEnabled:false를 해도 안되면, 해당 line을 주석처리 후 reload // "python.jediEnabled": false, 이러면 정상적으로 라이브러리를 load함 reference1: https://www.reddit.com/r/le..
import cv2 import os input_vid_name = 'input.mp4' output_frame_folder = 'output' cap = cv2.VideoCapture(input_vid_name) vid_width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH)) vid_height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT)) vid_length = int(cap.get(cv2.CAP_PROP_FRAME_COUNT)) if not os.path.exists(output_frame_folder): os.makedirs(output_frame_folder) for framenum in range(0, vid_length): print(f..