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
- type hint
- dataframe
- queue
- Algorithm
- MySQL
- Join
- 선그래프
- 알고리즘스터디
- aws jupyter notebook
- Matplotlib
- python
- Selenium
- javascript
- 파이썬
- 알고리즘
- 백준
- 코딩테스트
- 데이터시각화
- 알고리즘 스터디
- NumPy
- 자료구조
- programmers
- 노마드코딩
- openCV
- 가상환경
- String Method
- pandas
- 프로그래머스
- 정보처리기사 c언어
- Stack
Archives
- Today
- Total
목록다중분류 (1)
조금씩 꾸준히 완성을 향해

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