일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- raspberry pi
- Windows 10
- Anaconda
- face_recognition
- error
- download
- CUDA
- TensorFlow
- urllib
- 딥러닝
- keras
- Deep Learning
- python3
- ubuntu
- FIle
- YouTube 8M
- colab
- pyTorch
- dlib
- install
- shakeratos
- python
- linux
- ppc64le
- windows
- object detection
- gpu memory
- colaboratory
- Jupyter notebook
- dataset
- Today
- Total
목록Research (67)
Shakerato
1. Anaconda3 Install2. Create a envorinment with python3.63. Install Microsoft Visual Studio 2017 or Upgrade (C++ packages includes c++/CLI must be installed for CMake) (because CMake needs c++11 compiler)4. Update Visual Sutudio 20175. Reboot the Computer6. Download CMake (https://cmake.org/download/) and Install it7. Activate specific of Anaconda3 in the 'cmd'8. pip3 install face_recognition* ..
spaCy (https://spacy.io/): Industrial-Strength Natural Language Processing Python LibraryIt's commercial open-source software, released under the MIT license. spaCy github: https://github.com/explosion/spaCy - FeaturesNon-destructive tokenizationNamed entity recognitionSupport for 28+ languages13 statistical models for 8 languagesPre-trained word vectorsEasy deep learning integrationPart-of-spee..
도커 허브에 있는 이미지 가져오기 docker pull haje01/caffe 이미지 실행하기 (텐서보드 제대로 사용하려면 포트를 확실히 열어줘야함) docker run -dit -P -p 80:80 -p 81:81 -p 8080:8080 -p 7777:7777 -p 6006:6006 -p 8888:8888 --name caffe haje01/caffe 이미지 실행하기 (advanced)- 외부 포트인 8888로 열어주고 컨테이너의 포트 8888과 연결- caffe라는 호스트네임(-h)- 네트워크는 호스트와 동일 (컨테이너에 8888 ip로 ssh 직접 접속시 필요)- 시스템의 /data 폴더를 docker container안의 /data폴더로 마운트- 이름은 caffe, - 도커허브에서 가져오기 (ha..
1. Install applicationsudo apt-get install gnustep-gui-runtime 2. test tts like belowsay "hello" 3. create python code 'tts.py' import os os.system('say "hello"') 4. Run codepython tts.py
Deep Learning based Object Detection source code is herehttps://www.pyimagesearch.com/2017/10/16/raspberry-pi-deep-learning-object-detection-with-opencv/ sudo pip3 install opencv-python sudo pip3 install imutils sudo apt-get install libatlas-base-dev sudo apt-get install libjasper-dev sudo apt-get install libqtgui4 sudo apt-get install libqt4-test open 'pi_object_detection.py' using editor andco..
python 3.x와 python 2.x가 같이 설치되어있을 경우,일방적으로 python 2.x가 python 명령 default로 설정되어있음. terminal에서 아래 명령을 실행하면, alias python=python3 를 실행 후 python --version 체크하면 python 3임을 확인할 수 있음 vi ~/.bashrc 에 위 명령을 마지막 라인에 추가하면 linux 시작하자마자 기본으로 설정됨