hjkkkl / machine-learning

0 stars 0 forks source link

124p 데이터의 정규화를 통한 분석 성능 개선하기 #13

Open hjkkkl opened 1 month ago

hjkkkl commented 1 month ago

from skleran.preprocessing import norlalize n_X = normalize(X, axis = 0) #정규화 0번 축 기준으로 실시

nXtrain, nXtest, y_train, y_test = train_test_split(n_X, y, test_size=0.2) lin_model.fit(nXtrain, y_train)

hjkkkl commented 1 month ago

KakaoTalk_20241002_101515213