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 |
Tags
- MySQL
- 코딩테스트
- Join
- type hint
- NumPy
- 정보처리기사 c언어
- 노마드코딩
- 선그래프
- 알고리즘 스터디
- dataframe
- Selenium
- 가상환경
- openCV
- queue
- 알고리즘스터디
- programmers
- Algorithm
- 백준
- Matplotlib
- String Method
- 자료구조
- Stack
- aws jupyter notebook
- 파이썬
- 프로그래머스
- pandas
- python
- javascript
- 알고리즘
- 데이터시각화
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