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