본문 바로가기
공부/Python

주피터 노트북 메모리 표시 모듈 추가

by E0 2023. 7. 31.

노트북 내 전체 메모리 사용량 표시

설치

!pip install jupyter-resource-usage

함수 메모리 사용량 표시

설치

!pip install memory_profiler
!pip install line_profiler

import

import line_profiler  
profile = line_profiler.LineProfiler()

#메모리 체크하고싶은 함수 위에  
@profile