일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ppc64le
- TensorFlow
- raspberry pi
- face_recognition
- download
- urllib
- linux
- YouTube 8M
- windows
- shakeratos
- Windows 10
- Jupyter notebook
- dataset
- 딥러닝
- install
- colab
- dlib
- Deep Learning
- object detection
- pyTorch
- Anaconda
- FIle
- error
- CUDA
- gpu memory
- python
- python3
- colaboratory
- keras
- ubuntu
- Today
- Total
목록Research (67)
Shakerato
In Pytorch Error 'Missing key(s) in state_dict' when loading pre-trained model (state_dict()) Reason In training stage, Use DataParallel for multi gpu usage In testing stage, Don't use DataParallel Solution 1. In testing stage, Use DataParallel 2. In testing stage, model.load_state_dict(torch.load(path), strict=False)
[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-..
리눅스에서의 한글 출력 문제 발생시 해결방법 에러메세지 "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
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..