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
- 쉘
- 백준알고리즘
- 시스템프로그래밍
- OpenCV
- 코딩
- TensorFlow
- Windows 10
- shell
- c
- 운영체제
- 학습
- Windows10
- python
- Computer Vision
- error
- 턱걸이
- C++
- 영상처리
- 공부
- 딥러닝
- 프로세스
- 백준
- 알고리즘
- 프로그래밍
- 텐서플로우
- 리눅스
- 회귀
- linux
- C언어
- CV
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