[TensorFlow Cert] Q2-Fully Connected Layer
Image Data 1. Fashion_Mnist import tensorflow as tf from tensorflow.keras.layers import Dense, Flatten, Dropout from...
2021, Oct 27 — 5 minute readImage Data 1. Fashion_Mnist import tensorflow as tf from tensorflow.keras.layers import Dense, Flatten, Dropout from...
2021, Oct 27 — 5 minute readimport numpy as np import tensorflow as tf from tensorflow.keras.layers import Dense from tensorflow.keras.models import...
2021, Oct 27 — 1 minute read백준 토마토 농장 : 실버 1 Solution import sys from collections import deque input =...
2021, Oct 19 — 2 minute read백준 11866 요세푸스 순열 : 실버 4 Solution import sys from collections import deque n,...
2021, Oct 19 — 1 minute read프로그래머스 LvL 3 : 여행경로 Solution from collections import defaultdict def solution(tickets): graph = defaultdict(list)...
2021, Oct 18 — 2 minute read백준 1874 스택 수열 : 실버 2 Solution import sys n = int(input()) data =...
2021, Oct 18 — 2 minute read백준 1260 DFS와 BFS : 실버 2 Solution # DFS - 재귀호출 사용 import sys...
2021, Oct 18 — 2 minute read백준 나이트의 이동 : 실버 2 Solution from collections import deque def knightMove(l, start, end):...
2021, Oct 18 — 2 minute read시작 git config –global user.name “이름” git config –global user.email “이메일” (폴더 이동 후) git...
2021, Oct 18 — 1 minute read