250x250
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 | 31 |
Tags
- API
- 주식
- CLI
- 주가예측
- 파이썬
- 흐름도
- DeepLearning
- 기초
- python
- 추천시스템
- 주식매매
- 주식연습
- 코딩
- Regression
- 딥러닝
- 게임
- 가격맞히기
- 재귀함수
- 코딩테스트
- 알고리즘
- PyTorch
- 프로그래머스
- 연습
- 머신러닝
- 템플릿
- tensorflow
- 회귀
- 선형회귀
- Linear
- 크롤링
Archives
- Today
- Total
목록메모리 (1)
코딩걸음마
[Kaggle 필수템] 데이터프레임(DataFrame) 메모리 줄이기 코드
데이터프레임(DataFrame) 메모리 줄이는 코드! 캐글에서 가장 인기있는 코드이다. 불러오는 파일의 크기가 300mb이상이고, numeric정보만 있다면 사용할 때 메모리 감소 효과가 크다 dtype 변경에 따라 일부 모듈에서 오류를 낼 수 있지만, 그때마다 astype으로 교체해주는 귀찮음보다 메모리감소 효과가 너무 크다. def reduce_mem_usage(df): """ iterate through all the columns of a dataframe and modify the data type to reduce memory usage. """ #start_mem = df.memory_usage().sum() / 1024**2 #print('Memory usage of dataframe is..
파이썬_꼭_익혀야하는_기초
2022. 6. 22. 09:36