McMasterAI / TrafficTracker

A street traffic counter that provides efficient and ethical modelling of how people engage and interact within a given public space.
MIT License
7 stars 2 forks source link

Object Detection and Tracking #1

Open cczarnuch opened 3 years ago

cczarnuch commented 3 years ago

Create a solution to provide object tracking for each of the following categories:

cczarnuch commented 3 years ago

For this project I think we should use Deep SORT. For detection it uses YOLOv3 I believe and stored appearance information for tracking so if there is some level of occlusion the object won't be re-detected making our results more accurate. A sample git repo we can use is here.

Jzar commented 3 years ago

A recent benchmarking paper was released for optimizers. The latest revision was published on the 5th, so we should definitely reference it for our model tuning. https://arxiv.org/abs/2007.01547

From what I looked at, it seems like Adam still wins out comparatively for image recognition on CNNs

Here's the most useful graphic though:

image

You can compare an optimizer with one shot (the default parameters) vs. models trained with a small budget of time/data. Diagonal shows how the model improves with training on average with that optimizer