Skip to main content

Blog

Learn About Our Meetup

5000+ Members

MEETUPS

LEARN, CONNECT, SHARE

Join our meetup, learn, connect, share, and get to know your Toronto AI community. 

JOB POSTINGS

INDEED POSTINGS

Browse through the latest deep learning, ai, machine learning postings from Indeed for the GTA.

CONTACT

CONNECT WITH US

Are you looking to sponsor space, be a speaker, or volunteer, feel free to give us a shout.

Author: torontoai

[R] Machine Learning Reproducibility Challenges and DVC

When ML models need to be regularly updated in production, a host of challenges emerges. Paramount among ML reproducibility concerns are the following:

  • Effectively versioning your models
  • Capturing the exact steps in your data munging and feature engineering pipelines
  • Dependency management (including of your data and infrastructure)
  • Configuration tracking

No one tool can do it all for you – organizations using a mix of Git, Makefiles, ad hoc scripts and reference files for reproducibility. The following overview explains how DVC enters this mix offering a cleaner solution, specifically targeting data science challenges: First Impressions of Data Science Version Control (DVC) (full tutorial)

submitted by /u/thumbsdrivesmecrazy
[link] [comments]

[R] Finalist for Best Paper Award ICRA 2019

Search-based 3D Planning and Trajectory Optimization for Safe Micro Aerial Vehicle Flight Under Sensor Visibility Constraints

The problem being tackled: Safe navigation of Micro Aerial Vehicles (MAVs) requires not only obstacle-free flight paths according to a static environment map, but also the perception of and reaction to previously unknown and dynamic objects. This implies that the onboard sensors cover the current flight direction. Due to the limited payload of MAVs, full sensor coverage of the environment has to be traded off with flight time. Thus, often only a part of the environment is covered

They present a combined allocentric complete planning and trajectory optimization approach taking sensor visibility constraints into account.

submitted by /u/himanshuragtah1
[link] [comments]

[D] PSA: OpenCV DNN inference is fast, give it a try if you only have CPU.

I was struggling to optimise my vision pipeline on iOS. It turns out the throughput of CoreML is really low on small neural network, namely it is not designed to do inference on large stream of data with a small network.

I tried OpenCV DNN out curiosity, was not expecting much, thought I hit the performance ceiling of iOS device, but it did surprised me and increase the throughput by two fold.

I also tried running OpenCV DNN on my development computer, and is able to observe similar performance increase. Major deep learning framework seems do not optimise much on CPU inferencing.

submitted by /u/RavlaAlvar
[link] [comments]