Home

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