일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Artificial Intelligence
- jmeter
- error
- Github
- quantification
- transference
- Server
- ma-lmm
- Anaconda
- timechat
- 용어
- CNN
- Python
- memory bank
- MySQL
- 코딩테스트
- multimodal machine learning
- Kaggle
- timestamp-aware frame encoder
- 백준
- q-former
- autogluon
- tensorflow
- LeNet-5
- leetcode
- hackerrank
- secure-file-priv
- sliding video q-former
- long video understanding
- Linux
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
- Artificial Intelligence
- jmeter
- error
- Github
- quantification
- transference
- Server
- ma-lmm
- Anaconda
- timechat
- 용어
- CNN
- Python
- memory bank
- MySQL
- 코딩테스트
- multimodal machine learning
- Kaggle
- timestamp-aware frame encoder
- 백준
- q-former
- autogluon
- tensorflow
- LeNet-5
- leetcode
- hackerrank
- secure-file-priv
- sliding video q-former
- long video understanding
- Linux
Archives
- Today
- Total
목록Tabular Data (1)
Juni_DEV
2. Tabular 데이터 모델링 (머신러닝)
머신러닝 모델 프로세스 라이브러리 임포트 데이터 가져오기 데이터 분석 데이터 전처리 Train, Test 데이터셋 분할 데이터 정규화 모델 구현 단일 분류 예측 모델 : LogisticRegression, KNN, Decision Tree 앙상블 모델 : RandomForest, XGBoost, LGBM 모델 성능 평가 1. 라이브러리 임포트 import numpy as np import pandas as pd import matplotlib.pyplot as plt 2. 데이터 가져오기 df = pd.read_csv('data.csv') # data.csv 파일을 읽어와서 df 변수에 저장 3. 데이터 분석 df.info() # index, 컬럼명, Non-Null Count, Dtype df.head..
Artificial Intelligence
2022. 7. 11. 13:24