AutoLog icon indicating copy to clipboard operation
AutoLog copied to clipboard

包含自动计时,统计CPU内存、GPU显存等信息,自动生成日志等功能。

Results 6 AutoLog issues
Sort by recently updated
recently updated
newest added

att, the log will also be saved into `os.path.join(save_path, "train.log")` * usage ```python import time import auto_log from auto_log import TrainerLogger logger = TrainerLogger("./output") logger.add_record_info("acc") run_cost = time.time() reader_cost =...

请问2.3版本部署是不是依赖这个自动log

I was using the paddleseg lib at work and found this typo on the log generated by autolog and i thought it would be a simple contribution to the code,...

# Issue: Compile Project raise error: ``` g++.exe .../extern_autolog-src/auto_log/autolog.h: In member function 'void AutoLogger::report()': .../extern_autolog-src/auto_log/autolog.h:66:27: error: 'accumulate' is not a member of 'std'; did you mean 'cv::accumulate'? 66 | time_info_.begin(),...

问题描述 编译时报错:`std` 没有成员 `accumulate`。 解决方案 添加 `` 头文件以引入 `std::accumulate` 的函数定义。 影响范围 仅修复编译错误,不影响现有逻辑。