Home

0

hadoop docker 설치

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210

0

ML 환경세팅

date: 2019-03-08 10:38:22 학습교재나의 첫 머신러닝/딥러닝 git clonehttps://github.com/wikibook/machine-learning conda를 이용한 환경 구성1234567891011121314151617181920212223242526272829303132333435363738jake.ko  ~/Dev/mac

0

git-flow

date: 2019-02-07 18:38:24 설치기존 git 저장소 내에서 초기화하는 것으로 git-flow의 사용을 시작합니다123456789101112131415161718> git flow initInitialized empty Git repository in /Users/jake.ko/Dev/git-flow-test/.git/No branch

0

spark basic 1

date: 2018-12-19 18:01:17 spark java code example로컬 모드로 실행된 스파크로 csv를 읽고, 필터링하여 정제된 데이터를 DB에 넣는 예제 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950package ch

0

mac keras 설치

date: 2018-12-14 18:25:58 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 jake.ko  ~/Dev/keras_talk  sudo pip install virtualenv ✘ jake.ko  ~/Dev/keras_talk

0

anaconda 세팅

date: 2018-12-14 17:08:00 anaconda 기본 세팅https://www.anaconda.com/ 에서 다운로드 받아서 설치. 123456789101112131415161718192021222324252627282930313233343536373839> conda -Vconda 4.5.11> conda create -n pyt

0

java memory 구조

date: 2018-12-13 16:15:25 메모리 구조 JVM은 OS로부터 받은 메모리를 나누어관리한다.이 메모리공간은… Runtime Data Area 라고 하는데 이를 5개 영역으로 쪼개서 관리한다. Method Area(=Class Area) Stack Area Heap Area Native Method Stack Area PC Register

0

Java Garbage Collection

date: 2018-12-11 14:17:31 가비지 컬렉션 과정 - Generational Garbage Collection가비지 컬렉터는 두 가지 가설 하에 만들어졌다 대부분의 객체는 금방 접근 불가능 상태(unreachable)가 된다. 오래된 객체에서 젊은 객체로의 참조는 아주 적게 존재한다. 이러한 가설을 ‘weak generational hy

0

process and thread

date: 2018-12-05 11:03:07 ProcessA Process is a program in execution.It has its own address space, a call stack, and link to any resources such as open files.A computer system normally has multiple pr

0

git squash

date: 2018-12-02 20:26:59 준비1234567891011121314151617181920212223242526272829 jake.ko  ~/Dev  cd git-study jake.ko  ~/Dev/git-study  ll jake.ko  ~/Dev/git-study  git initInitialized empty Git re