Home

NVIDIA Graphic Driver, CUDA, Tensorflow-gpu 설치

Remarks 설치환경: Linux Ubuntu 16.04 (x86_64) GPU: NVIDIA GTX 1080 ti NVIDIA Graphic Driver version: 410.38 (418.56도 가능) CUDA Toolkit version: 10.0 Python version: 3.6.7 Tensorflow-gpu version: 1.14.0 설치파일 다운로드 page: https://developer.nvidia.com/cuda-10.0-download-archive?target_os=Linux&target_arch=x86_64&target_distro=Ubuntu&targ...

Read more

scp

현재 컴퓨터와 다른 컴퓨터 간의 파일 전송을 하기 위해 scp 명령어를 사용할 수 있습니다. File을 전송할 땐 -r 옵션을 제외하고, directory를 전송할 땐 아래와 같이 -r을 추가합니다. scp -P port_number -r source_path user@ip:target_path

Read more

watch

실시간 monitoring을 위해 사용할 수 있는 명령어입니다.

Read more

Command Alias

~/.bashrc에서 alias를 통해 자주 사용하는 linux 명령어들을 간략하게 줄여서 사용할 수 있습니다.

Read more

Hero

“A hero is a man who does what he can.” - Romain Rolland in “John Christopher: Storm and Stress”

Read more

Decision Tree

Decision Tree 단계별로 각 feature의 적절한 값을 기준으로 sample들을 분할하여 tree 형태의 model을 학습시키는 방법이다. 매우 복잡한 데이터도 학습시킬 수 있는 강력한 알고리즘으로 분류와 회귀, 다중출력 작업도 가능한 다재다능한 알고리즘이다.

Read more