파이썬 실습 3

텍스트 파일 가공하기 (friends101.txt 가공)

fangj.github.io/friends/season/0101.html The One Where Monica Gets a New Roomate (The Pilot-The Uncut Version) Written by: Marta Kauffman & David Crane Transcribed by: guineapig Additional transcribing by: Eric Aasen (Note: The previously unseen parts of this episode are shown in blue text.) Joey: C'mon, you're going out with the guy! There's gotta be something wro fangj.github.io 예제 파일 다운로드 컨트롤..

파이썬 실습 2021.05.11

보스턴 주택 가격 예측 네트워크 코드 분석

from tensorflow.keras.datasets import boston_housing (train_X, train_Y), (test_X, test_Y) = boston_housing.load_data() #훈련데이터, 테스트데이터 로드 print(type(train_X)) #출력 : print(train_X.shape) #출력 : (404, 13) (404데이터, 13속성) print("정규화 전: ", train_X[0]) #출력 #정규화 전: [ 1.23247 0. 8.14 0. 0.538 6.142 91.7 # 3.9769 4. 307. 21. 396.9 18.72 ] print(train_Y[0]) #출력 : 15.2 x_mean = train_X.mean(axis=0) x_std = t..

파이썬 실습 2021.05.06