일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- q-former
- long video understanding
- jmeter
- ma-lmm
- error
- Artificial Intelligence
- Server
- transference
- Linux
- multimodal machine learning
- 코딩테스트
- 용어
- Github
- MySQL
- sliding video q-former
- Kaggle
- quantification
- timechat
- tensorflow
- LeNet-5
- autogluon
- hackerrank
- Anaconda
- leetcode
- 백준
- timestamp-aware frame encoder
- Python
- memory bank
- CNN
- secure-file-priv
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
- q-former
- long video understanding
- jmeter
- ma-lmm
- error
- Artificial Intelligence
- Server
- transference
- Linux
- multimodal machine learning
- 코딩테스트
- 용어
- Github
- MySQL
- sliding video q-former
- Kaggle
- quantification
- timechat
- tensorflow
- LeNet-5
- autogluon
- hackerrank
- Anaconda
- leetcode
- 백준
- timestamp-aware frame encoder
- Python
- memory bank
- CNN
- secure-file-priv
Archives
- Today
- Total
목록Preprocessing (1)
Juni_DEV
1. Tabular 데이터 모델링 (전처리 및 시각화)
df.info() : 데이터프레임 형태, 타입, null 여부를 한 번에 보기 df.index : 데이터프레임의 인덱스 df.columns : 데이터프레임의 컬럼명 df.values : 데이터프레임의 값 df.isnull() : 데이터프레임 모든 컬럼에 대한 null 한 번에 확인 df.isnull().sum() : 컬럼 - 개수로 표시 df.describe() : 데이터프레임에서 숫자형에 대한 통계정보 보기 df['특정컬럼'] : 특정 컬럼의 값만 확인, 검색 (df ['컬럼'] == '') | (df['컬럼'] == ' ') : 해당 컬럼에 공백이 있는지 확인 df['컬럼'].replace(' ', 0, inplace = True) : 컬럼의 공백을 0으로 변경 df['컬럼'] = df['컬럼'].a..
Artificial Intelligence
2022. 7. 5. 16:58