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

딥러닝 데이터 그래프를 그리기 전에 matplotlib.pyplot와 친해져보도록 하겠습니다. import matplotlib.pyplot as plt import tensorflow as tf x = range(20) y = tf.random.normal([20], 0, 1) #1 plt.plot(x, y) plt.show() #2 plt.plot(x, y, 'ko') plt.show() #3 plt.plot(x, y, 'k-') plt.show() #4 plt.plot(x, y, 'k--') plt.show() #5 plt.plot(x, y, 'ro') plt.show() #6 plt.plot(x, y, 'y-') plt.show() #7 plt.plot(x, y, 'b--') plt.show() 빨..
공부/tensorflow
2021. 4. 12. 22:00