1. 데이터 전처리import numpy as npimport pandas as pdimport tensorflow as tffrom tensorflow.keras import layers #모듈(변수나 함수를 포함)만 불러오기# BMI 데이터를 읽어 들이고 정규화하기csv = pd.read_csv("bmi.csv")# 몸무게와 키 데이터(정규화)csv["weight"] /= 100 csv["height"] /= 200 X = csv[["weight", "height"]].as_matrix()print(csv)# 레이블bclass = {"thin":[1,0,0], "normal":[0,1,0], "fat":[0,0,1]}y = np.empty((20000,3)) # 2000x3 크기의 다..