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

앞서 배웠던 것들로 학령인구와, 노령인구의 경향을 나타내주는 딥러닝 네트워크 회귀선을 만들어 보겠습니다. import tensorflow as tf import numpy as np import matplotlib.pyplot as plt #X = school_age_population, Y = elderly_population X = [16.4, 14.7, 17.2, 16.6, 17.1, 20.3, 17.2, 15.6, 17.4, 18.7, 16.9, 17.1, 15.8, 19.3, 16.6, 15.1, 17.9] Y = [11.4, 13.2, 11.1, 17.6, 16.3, 9.2, 15.2, 18.4, 18.5, 11.6, 13.7, 9.7, 21.5, 12.0, 14.5, 15.8, 14.0] m..
공부/tensorflow
2021. 4. 22. 22:00