일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- quantification
- MySQL
- memory bank
- Artificial Intelligence
- secure-file-priv
- sliding video q-former
- Linux
- leetcode
- 용어
- jmeter
- multimodal machine learning
- 백준
- transference
- tensorflow
- error
- timechat
- Kaggle
- 코딩테스트
- Server
- timestamp-aware frame encoder
- q-former
- Github
- Anaconda
- autogluon
- LeNet-5
- hackerrank
- Python
- CNN
- long video understanding
- ma-lmm
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
- quantification
- MySQL
- memory bank
- Artificial Intelligence
- secure-file-priv
- sliding video q-former
- Linux
- leetcode
- 용어
- jmeter
- multimodal machine learning
- 백준
- transference
- tensorflow
- error
- timechat
- Kaggle
- 코딩테스트
- Server
- timestamp-aware frame encoder
- q-former
- Github
- Anaconda
- autogluon
- LeNet-5
- hackerrank
- Python
- CNN
- long video understanding
- ma-lmm
Archives
- Today
- Total
목록DeepLearning (1)
Juni_DEV
3. Tabular 데이터 모델링 (딥러닝)
딥러닝 모델 프로세스 라이브러리 임포트 데이터 가져오기 데이터 분석 데이터 전처리 Train, Test 데이터셋 분할 데이터 정규화 딥러닝 모델 구현 모델 성능평가 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() # 앞에서 5개 컬럼 보여줌 df.tail() # 뒤에서 5개 컬럼 보여줌 4. 데이터 전처리 모든 데이터 값은 숫자형이어야 함, Object 타입 ->..
Artificial Intelligence
2022. 7. 18. 14:22