Artificial Intelligence/Basic12 Chapter 1 - 1 퍼셉트론(Perceptron), single layer 아주 기본적인 머신러닝 조차 잘 모른다면 아래의 글을 읽어보길 바란다. 2020/03/21 - [AI/ML & DL] - 머신 러닝(Machine learning)이란 무엇인가? (supervised? or unsupervised?) 머신 러닝(Machine learning)이란 무엇인가? (supervised? or unsupervised?) 머신 러닝이란? 다양한 정의가 있지만 가장 유명한 두 가지 정의로 설명하겠다. Arthur Smuel(1959) : 구체적인 프로그래밍 없이도 컴퓨터가 학습할 수 있는 능력을 주는 것을 연구하는 영역이다. Tom Mitchell(1.. supermemi.tistory.com 2022.04.21 - [AI/Ai Series] - [ AI 기초 ] 3. Linear .. 2020. 3. 6. Mnist / Neural Net / Relu by jupyter Mnist 파일을 Neural Net을 이용하여 학습시킵니다. Edwith의 부스트코스 를 바탕으로 작성했습니다. 조언과 가르침은 언제나 환영입니다. 1. import import numpy as np import tensorflow as tf from tensorflow.keras.utils import to_categorical from tensorflow.keras.datasets import mnist tensorflow 2.0 이후로는 eager mode를 권고한다. tf.enable_eager_excution() 2. Load data & pre-processing def load_mnist() : (train_data, train_labels),(test_data, test_labels) =.. 2020. 3. 5. 이전 1 ··· 3 4 5 6 다음