Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 시스템프로그래밍
- C++
- linux
- TensorFlow
- c
- Windows10
- 딥러닝
- 턱걸이
- 텐서플로우
- 알고리즘
- 학습
- 영상처리
- python
- 회귀
- 공부
- error
- 백준
- CV
- 코딩
- 프로세스
- C언어
- 쉘
- Windows 10
- Computer Vision
- OpenCV
- 리눅스
- 운영체제
- 프로그래밍
- 백준알고리즘
- shell
Archives
- Today
- Total
목록과적합 (1)
줘이리의 인생적기

앞선 포스팅에서 사용했었던 Sequantial 모델을 사용하도록 하겠습니다. 4개의 Dense 레이어, relu, Adam, mse를 사용하겠습니다. from tensorflow.keras.datasets import boston_housing import tensorflow as tf import numpy as np import matplotlib.pyplot as plt #데이터셋 가져오기 (train_X, train_Y), (test_X, test_Y) = boston_housing.load_data() ###########정규화 (Standardization) ############# # X 값 Standardization X_mean = train_X.mean(axis=0) X_std = tr..
공부/tensorflow
2021. 4. 26. 22:00