본문 바로가기

반응형
SMALL

DataScience

(15)
[TREND] Imputation1. 1. 결측이란? 값이 없는것 경우를 의미한다. 즉 결측값 ( missing value)이 존재할 때, 결측값을 버리고 관측값 즉 센싱한 데이터를 분석하게 된다면 [ listwise deletion ] 데이터의 편향이 발생하기 때문에 누락데이터에 관하여 추정 대체 데이터를 대입하여 분석을 하게된다 . 이를 imputation이라고 정의한다. [ ※ Note : imputation은 missing value이고 prediction은 unknown value 이므로 정의자체가 다르다 혼동하지 말자 ] imputation의 종류로는 변수 전체를 대체하는 unit imputation과 관측 일부를 대체하는 item imputation이 있고 방법론적으로 single imputation 및 multiple impu..
Activation Function [활성함수] 활성함수란 ? 간단하게 인공신경망 딥러닝에서 입력을 변환하는 함수를 활성함수라고하며 크게 Relu , Sigmoid , Tahn함수가 존재한다. 즉 활성 함수의 선택에 따라 결과 값이 달라진다, 이 말은 다시말하면 적절한 활성함수를 사용하는 것은 매우 중요하다 할수 있다. 활성함수의 개념을 표현한 그림이다 . input data -> activation function -> output data 로 이해하면 될것이다. 1. unit step function signal & system 에서 아주 자주보던 함수다 델타함수를 적분하면 튀어나오던 함수다. 활성함수로 사용한다면 f(y) y= wx+b . f() is activation 에서 y값이 0보다 큰구간의 값만 필터로 가지겠다는 의미로 생각한다. 2. ..
Keras 정리 2 본게시물은 Keras 링크의 내용을 공부하며 한글로 번역 및 정리한 문서입니다. Keras: the Python deep learning API Keras: the Python deep learning API State-of-the-art research. Keras is used by CERN, NASA, NIH, and many more scientific organizations around the world (and yes, Keras is used at the LHC). Keras has the low-level flexibility to implement arbitrary research ideas while offering optional high keras.io import numpy as..
Keras 정리 1 본게시물은 Keras 링크의 내용을 공부하며 한글로 번역 및 정리한 문서입니다. Keras: the Python deep learning API Keras: the Python deep learning API State-of-the-art research. Keras is used by CERN, NASA, NIH, and many more scientific organizations around the world (and yes, Keras is used at the LHC). Keras has the low-level flexibility to implement arbitrary research ideas while offering optional high keras.io keras 사용 환경 및 버..
Mac OS - M1 - Tensorflow2 & Keras2 시작 Mac os M1 - setting windows랑 다르게 진짜 고생많이했다... 해당 사이트에서 많이 참고하였던 부분이다 . https://claytonpilat.medium.com/tutorial-tensorflow-on-an-m1-mac-using-jupyter-notebooks-and-miniforge-dbb0ef67bf90 Tutorial : TensorFlow on an M1 Mac using Jupyter notebooks and Miniforge If you’re like me and you got a brand new M1 Mac over the holidays and are planning to use it for machine learning, there are a few… clayt..

반응형
LIST