일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- NMF
- Binary classification
- tensorflow
- 자기조직화지도
- 군집화
- NER
- Python
- Attention
- Ann
- VGGNet
- Generative model
- stemming
- BERT
- Transfer Learning
- gaze estimation
- MLOps
- Clustering
- textmining
- TFX
- SOMs
- nlp
- 경사하강법
- Gradient Descent
- cross domain
- Logistic Regression
- AI 윤리
- RNN
- LSTM
- ResNet
- Support Vector Machine
- Today
- Total
목록cnn (2)
juooo1117
Part 1 - Data Preprocessing Preprocessing the Training set train_datagen: train set의 image에 모든 변화를 적용할 도구를 나타내는 image data generator의 instance rescale = 1./255: pixel의 값을 255로 나누어서 각 pixel에 feature scailing을 적용. (각 pixel은 0~255 사이의 값이기 때문에, pixel을 255로 나누면 모든 Pixel의 값이 0과 1사이의 값으로 나온다. = Normalization) train set의 image에 image augmentation을 수행할 변화들 → overfitting 방지를 위한 것! 정의한 train_datagen을 datas..
Step1 : Convolution OperationConvolution OperationFeature Detector를 이용해서 Input Image에서 중요한 특징을 찾아내서 Feature Map을 만들기 위함 (The primary purpose of a Convolution is to find features in the image, using the Feature Detector, put them into a Feature map and by having them in a Feature Map. It preserves the spacial relationships between pixels which is very important for us.)feature detector = kernel =..