I’m running a face recognition model and want to monitor actual memory usage.
The free command only shows overall system memory, not model-specific usage and i can not use it while running main code on larger core.
gc module shows cache memory, not total memory used while execution.
I need a way to measure real memory consumed by the model.
Looking for tools or methods to get process-level memory stats during runtime.