본문 바로가기

STUDY

Proxmox VE 소개 Proxmox VE (Virtual Environment) 는 KVM에 기반한 오픈소스 가상화 관리 솔루션입니다.비슷한 솔루션으로는 VMware ESXi가 있습니다. 아래는 공식 홈페이지에서 소개하고 있는 문구입니다. Proxmox VE is a complete open-source platform for all-inclusive enterprise virtualization that tightly integrates KVM hypervisor and LXC containers, software-defined storage and networking functionality on a single platform, and easily manages high availability clusters and d.. 더보기
[keras] GPU 메모리 사용량 제한하기 https://groups.google.com/forum/#!topic/keras-users/MFUEY9P1sc8 위 링크에서 찾을 수 있었는데 정리하자면 아래의 소스를 처음 부분에 입력해주면 GPU 메모리 전체를 사용하지 않는다. gpu_fraction 의 값에 따라서 전체 메모리 중 몇 퍼센트를 이용할 것인지 설정할 수 있다. Python 3.5, Keras 2.1.2 버전에서 실행하였다. import os import tensorflow as tf import keras.backend.tensorflow_backend as KK def get_session(gpu_fraction=0.3): '''Assume that you have 6GB of GPU memory and want to allocat.. 더보기
[안드로이드] 버전 정보 표시하기 import 패키지 이름.BuildConfig; BuildConfig.VERSION_NAME 위의 소스에 버전 정보가 표시된다. 참고로 VERSON_CODE는 VERSION_NAME과는 다르니 주의 더보기
[Python] ipynb파일을 py파일로 바꾸기 Jupyter Notebook으로 작업하게 되면 ipynb라는 파일이 생성되게 되는데 이 파일은 열어보면 알겠지만 셀별로 구분이 되어있다. ipynb파일은 터미널에서 직접 실행이 불가능하기 때문에 py파일로 변환하는 과정이 필요한데 이를 Jupyter에서 제공해주고 있다. 명령어는 다음과 같다. jupyter nbconvert --to script 파일명.ipynb 더보기
[딥러닝] Deep Learning을 이용한 객체 검출 알고리즘 소개 출처 : http://tech-blog.abeja.asia/entry/object-detection-summary 一般物体検出アルゴリズムの紹介 (일반물체검출 알고리즘의 소개)今回CNNを用いた一般物体検出アルゴリズムの有名な論文を順を追って説明します。コンピュータビジョンの分野において、一般物体検出とは下記の図のように、ある画像の中から定められた物体の位置とカテゴリー(クラス)を検出することを指します。[6]より引用Deep Learningアルゴリズムの発展によって、一般物体認識の精度は目まぐるしい勢いで進歩しております。 そこで今回はDeep Learning(CNN)を応用した、一般物体検出アルゴリズムの有名な論文を説明したいと思います。R-CNN (Regions with CNN features) (CVPR 2014) [1]かの有名なCNNの論文[8.. 더보기
[Python] Jupyter 서버 설치 pip install jupyter 아나콘다 사용 시 자동으로 깔림 참고 사이트 : http://jupyter-notebook.readthedocs.org/en/latest/public_server.html 실행 방법jupyter notebook 설정 파일 만들기 jupyter notebook --generate-config IP 설정 # Set options for certfile, ip, password, and toggle off# browser auto-openingc.NotebookApp.certfile = u'/absolute/path/to/your/certificate/mycert.pem'c.NotebookApp.keyfile = u'/absolute/path/to/your/certifica.. 더보기
[Ubuntu/Linux] Xfce4 Tab키 수정 Xfce로 GUI를 사용할 때 Tab키가 이미 할당되어 있어 명령어 완성이 안되는 것을 확인할 수 있다. 한글로는 어플리케이션->설정->창관리자 키보드 탭에서 동일 프로그램 창 전환에서 지우기 버튼을 눌러주면 된다. 더보기
[Ubuntu/Linux] VNC 설정법 VNC 설치 sudo apt-get install tightvncserver xfce4 xfce4-goodiesVNC 설정 $ vncserver 암호 입력 후 $ vncserver -kill :1 $ nano ~/.vnc/xstartup 파일 수정 아래와 같이 ※추가 : 클립보드 공유가 필요할 경우 아래의 패키지 설치 후 sudo apt-get install autocutsel startxfce4 & 윗줄에 autocutsel -fork 추가 #!/bin/bash xrdb $HOME/.Xresources startxfce4 & 다시 vncserver 입력하여 5901 포트로 접속 https://www.digitalocean.com/community/tutorials/how-to-install-and-co.. 더보기