From e65a7646b7da672eeb5e82fda2a1ea25b46a6400 Mon Sep 17 00:00:00 2001 From: Feng Ni Date: Sun, 29 Jan 2023 11:06:13 +0800 Subject: [PATCH] Fix install and typo (#7640) * add ppyoloe architectures * fix typos, test=document_fix --- ppdet/engine/callbacks.py | 2 +- requirements.txt | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/ppdet/engine/callbacks.py b/ppdet/engine/callbacks.py index ece2ca8b3..1f2d546d8 100644 --- a/ppdet/engine/callbacks.py +++ b/ppdet/engine/callbacks.py @@ -413,7 +413,7 @@ class WandbCallback(Callback): ips = float(batch_size) / float(batch_time.avg) data_cost = float(data_time.avg) - batch_cost = f + batch_cost = float(batch_time.avg) metrics = {"train/" + k: v for k, v in training_status.items()} diff --git a/requirements.txt b/requirements.txt index 0cdbf8e22..f6297b6f7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,11 +11,10 @@ Cython pycocotools setuptools -# for vehicleplate -pyclipper - -# for mot +# for MOT evaluation and inference lap motmetrics sklearn==0.0 -filterpy + +# for vehicleplate in deploy/pipeline/ppvehicle +pyclipper -- GitLab