Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- type hint
- 코딩테스트
- 알고리즘
- String Method
- openCV
- dataframe
- Selenium
- 선그래프
- 알고리즘 스터디
- Stack
- 프로그래머스
- MySQL
- NumPy
- pandas
- 데이터시각화
- aws jupyter notebook
- Matplotlib
- 가상환경
- javascript
- queue
- python
- 노마드코딩
- 정보처리기사 c언어
- 알고리즘스터디
- Algorithm
- Join
- 자료구조
- programmers
- 백준
- 파이썬
Archives
- Today
- Total
목록다중분류 (1)
조금씩 꾸준히 완성을 향해
[Sklearn] 로지스틱 회귀(Logistic Regression)
Logistic Regression # 데이터 준비 import pandas as pd fish = pd.read_csv('http://bit.ly/fish_csv_data') fish.head() z = a*무게 + b*길이 + c*대각선 + d*높이 + e두께 + f from sklearn.model_selection import train_test_split fish_input = fish[['Weight', 'Length', 'Diagonal', 'Height', 'Width']].to_numpy() fish_target = fish['Species'].to_numpy() train_input, test_input, train_target, test_target = train_test_split(..
AI/Machine Learning
2022. 10. 29. 23:32