일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 웹크롤링
- digital geography
- QGIS
- postgres
- 핫플레이스
- SQL
- 서울
- 도시계획
- digitalgeography
- 네이버
- 공간분석
- spacesyntax
- graphtheory
- connectivity
- pandas
- 베이지안
- 파이썬
- 베이지안뉴럴네트워크
- 공간데이터
- 도시인공지능
- 도시설계
- 그래프색상
- 스마트시티
- 서울데이터
- 도시공간분석
- multinomiallogitregression
- Python
- naver
- platformurbanism
- 그래프이론
Archives
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 웹크롤링
- digital geography
- QGIS
- postgres
- 핫플레이스
- SQL
- 서울
- 도시계획
- digitalgeography
- 네이버
- 공간분석
- spacesyntax
- graphtheory
- connectivity
- pandas
- 베이지안
- 파이썬
- 베이지안뉴럴네트워크
- 공간데이터
- 도시인공지능
- 도시설계
- 그래프색상
- 스마트시티
- 서울데이터
- 도시공간분석
- multinomiallogitregression
- Python
- naver
- platformurbanism
- 그래프이론
Archives
- Today
- Total
목록RandomForest (1)
이언배 연구노트
[Python] Classification 모델들
내가 쓸 모델들은 총 4개. 1. Multinomial Logit Regression from sklearn.linear_model import LogisticRegressionfrom sklearn.metrics import accuracy_score, confusion_matrix, precision_score, recall_score, f1_scorefrom sklearn.model_selection import train_test_split######################학습, 테스트 셋 구분# Split the dataset into training and testing setsX_train, X_test, y_train, y_test = train_test_split(X, Y, test..
Python
2024. 12. 11. 15:33