일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Neural Network
- sort
- DFS
- TensorFlow
- CSAP
- 큐
- 알고리즘 고득점 kit
- ML
- deep learning
- 모두를 위한 딥러닝
- 백준
- BOJ
- 프로그래머스
- sung kim
- 시간초과
- deque
- 한화오션
- join
- softmax
- Programmers
- 모두를 위한 머신러닝
- SQL
- stl
- 정렬
- Queue
- c++
- PIR
- Machine learning
- Linear Regression
- mysql
Archives
- Today
- Total
목록accuracy (1)
hello, world!

[Simple CNN] import numpy as np import tensorflow as tf import random mnist = tf.keras.datasets.mnist (x_train, y_train), (x_test, y_test) = mnist.load_data() x_test = x_test / 255 x_train = x_train / 255 x_train = x_train.reshape(x_train.shape[0], 28, 28, 1) x_test = x_test.reshape(x_test.shape[0], 28, 28, 1) # one hot encode y data y_train = tf.keras.utils.to_categorical(y_train, 10) y_test = ..
AI/모두를 위한 ML (SungKim)
2021. 2. 24. 13:08