paper-with-me

Papers

A Parallel Implementation of Computing Mean Average Precision

2022-06-19 · Beinan Wang

Mean Average Precision (mAP) has been widely used for evaluating the quality of object detectors, but an efficient implementation is still absent. Current implementations can only count true positives (TP's) and false positives (FP's) for one class at a time by looping through every detection of that class sequentially. Not only are these approaches inefficient, but they are also inconvenient for reporting validation mAP during training. We propose a parallelized alternative that can process mini-batches of detected bounding boxes (DTBB's) and ground truth bounding boxes (GTBB's) as inference goes such that mAP can be instantly calculated after inference is finished. Loops and control statements in sequential implementations are replaced with extensive uses of broadcasting, masking, and indexing. All operators involved are supported by popular machine learning frameworks such as PyTorch and TensorFlow. As a result, our implementation is much faster and can easily fit into typical training routines. A PyTorch version of our implementation is available at https://github.com/bwangca/fast-map.

📄 PDF Abstract BibTeX arXiv:2206.09504

Code (1)

bwangca/fast-map 공식 구현 pytorch

Similar Papers 제목 키워드 기반

Implementation of a perception system for autonomous vehicles using a detection-segmentation network in SoC FPGA

2023-07-17 · Maciej Baczmanski, Mateusz Wasala, Tomasz Kryjak

Perception and control systems for autonomous vehicles are an active area of scientific and industrial research. These solutions should be characterised by high efficiency in recognising obstacles and other environmental…

Autonomous VehiclesCPUImage Segmentationobject-detection+2

Blaze: Simplified High Performance Cluster Computing

2019-02-04 · Junhao Li, Hang Zhang

MapReduce and its variants have significantly simplified and accelerated the process of developing parallel programs. However, most MapReduce implementations focus on data-intensive tasks while many real-world tasks are …

Vocal Bursts Intensity Prediction

Efficient Graph-Friendly COCO Metric Computation for Train-Time Model Evaluation

2022-07-21 · Luke Wood, Francois Chollet

Evaluating the COCO mean average precision (MaP) and COCO recall metrics as part of the static computation graph of modern deep learning frameworks poses a unique set of challenges. These challenges include the need for …

MCU-MixQ: A HW/SW Co-optimized Mixed-precision Neural Network Design Framework for MCUs

2024-07-17 · Junfeng Gong, Cheng Liu, Long Cheng, Huawei Li 외

Mixed-precision neural network (MPNN) that utilizes just enough data width for the neural network processing is an effective approach to meet the stringent resources constraints including memory and computing of MCUs. Ne…

Neural Architecture SearchQuantization

SHEARer: Highly-Efficient Hyperdimensional Computing by Software-Hardware Enabled Multifold Approximation

2020-07-20 · Behnam Khaleghi, Sahand Salamat, Anthony Thomas, Fatemeh Asgarinejad 외

Hyperdimensional computing (HD) is an emerging paradigm for machine learning based on the evidence that the brain computes on high-dimensional, distributed, representations of data. The main operation of HD is encoding, …

BIG-bench Machine LearningRaspberry Pi 3