Recent Posts

Computer Dictionary

less than 1 minute read

운영체제 OS (Operating System) Hardware & Software Operation Manager 컴퓨터 세계의 관리직. 자원을 할당해주고, 일을 시킨다.

Machine Learning Recipe & Dictionary

5 minute read

Outlier, Novel data Outlier, 이상한 값. 뭔가 어떠한 이유로 인해, distribution에서 나올 수 없는데, dataset에 있는 값. Outlier와 Noise는 다르다. Outlier의 경우, 패턴 내에서 특이한 양상을 보이기 때문에, 이런 특...

CERN ROOT tutorial

1 minute read

CERN의 ROOT를 사용할 때 알아두면 좋은 명령어들과 코드들을 정리했습니다.

Data Science: Data Handling

3 minute read

Standard Process of data preprocessing 거의 케글 공식입니다. (1) 데이터 로드 (Load the dataset with Pandas) train = pd.read_csv("nameOfTrainDataset.csv") test = pd....