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

[D] STUMPY – A Powerful and Scalable Python Package for Modern Time Series Analysis

[D] STUMPY - A Powerful and Scalable Python Package for Modern Time Series Analysis

https://preview.redd.it/j4nqkwevmx741.png?width=411&format=png&auto=webp&s=5031697c83800d27a0722f35b45fd0fe4c03e7d0

Version 1.3.0 was just released and now with multi-GPU support and is available to install:

conda install -c conda-forge stumpy 

or

python -m pip install stumpy 

This analysis package has over 13K+ downloads/installs on Github and provides a blazing fast implementation of something called the matrix profile, which can be used to find patterns, anomalies, time series chains, semantic segmentation, and much more!

Check it out and let us know what you think!

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

[P] I have built video anonymization using DSFD(Dual Shot Face Detector)

A week ago, I posted here that I have built a face detector to blur faces for videos with GitHub repository.

The entire project was based on OpenCV examples. So it’s obvious that the result can’t be good enough to use and slow.

So, I’ve been looking for better projects for face detection and one of the comments from my earlier post said using DeepPrivacy might be good. Sounds great, so I tried to run DeepPrivacy and I couldn’t run because of lack of GPU memory.

Okay…🤔 It looks like DeepPrivacy uses DSFD to detect faces. Shouldn’t I just use DSFD to detect faces and blur them?

There, I wrote the simple implementation of anonymizing videos by DSFD. https://github.com/JeiKeiLim/Anonymizing_video_by_DSFD

And I found lightDSFD which is a lightweight version of DSFD. So I also applied lightDSFD to anonymize videos. https://github.com/JeiKeiLim/Anonymizing_video_by_lightDSFD

However, lightDSFD looks less accurate(obviously). It works most of the time but it shows failure when a person is laying down or the light is too dark, etc.

So far, DSFD looks great that I feel like I can actually publish videos that I can’t upload until the faces are anonymized. The problem is that it takes 11 hours to complete for 15 minutes of 60fps video.

…. I am still waiting for the first video to be finished. And if my calculation is correct, all videos will be processed in 51 days.

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

[D] Machine Learning & Robotics: My (biased) 2019 State of the Field

At the end of every year, I like to take a look back at the different trends or papers that inspired me the most. As a researcher in the field, I find it can be quite productive to take a deeper look at where I think the research community has made surprising progress or to identify areas where, perhaps unexpectedly, we did not advance. I’ve put together a post in which I give my perspective on the state of the field from this past year. The post is no doubt a biased sample of what I think is progress, but I hope it stimulates discussion about which subfields evolved or what priorities unexpectedly shifted in 2019.

Link to post: http://www.cachestocaches.com/2019/12/my-state-of-the-field/

A short summary/outline of my post for discussion:

  • From AlphaZero to MuZero MuZero picks up where AlphaZero left off a couple years ago and makes significant advances using a learned model to enable rollouts without planning in pixel space.
  • Representation Learning I’m particularly excited to see how recent progress in representation learning (like advances in “entity abstraction”) will help to blur the lines between black-box deep learning and old-school symbolic AI & classical planning.
  • Supervised Computer Vision Research Cools (slightly) Research in this space has slowed, but related techniques, like network pruning and network compilation, have taken off this past year.
  • Maturing Technologies
    • Graph Neural Networks
    • Explainable & Interpretable AI
    • Simulation Tools & Sim-to-Real
  • Bittersweet Lessons No discussion of 2019 would be complete without a conversation about Rich Sutton’s “The Bitter Lesson” post and rebuttals.

What do you think were the most interesting advancements or shifts this year?

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

[D] 7 really neat recent survey papers in deep learning

[D] 7 really neat recent survey papers in deep learning

The intense democratization of toolkits coupled with the breakneck speed at which research is unfolding in Deep learning, the literature landscape might seem chaotic and cacophonous at times.

Hence, I truly appreciate when the well cited authors in a specific vertical of research invest time and effort to author good overview/survey/review/meta papers. Besides the obvious good of providing a comprehensive bird’s-eye view of the field, they serve 5 crucial purposes that are oft ignored.

1) These are high quality invitation notes to researchers from a different domain to contribute

2) They serve as collection of important open problems waiting to be solved

3) Immensely helpful in faster, better and up-to-date teaching course design

4) Setting the agenda for the research directions in the near future

5) Eases the burden of lengthy citation lists, especially for short communication papers.

This year, I chanced upon 7 such papers that I am sharing with the ML community here.

Happy year end reading!

List:

  1. Advances and Open Problems in Federated Learning, https://arxiv.org/pdf/1912.04977.pdf
  2. Deep learning for time series classification: a review, https://arxiv.org/pdf/1809.04356.pdf
  3. Optimization for deep learning: theory and algorithms, https://arxiv.org/pdf/1912.08957.pdf
  4. Normalizing Flows: An Introduction and Review of Current Methods, https://arxiv.org/pdf/1908.09257.pdf
  5. Normalizing Flows for Probabilistic Modeling and Inference, https://arxiv.org/pdf/1912.02762.pdf
  6. Fantastic Generalization Measures and Where to Find Them, https://arxiv.org/pdf/1912.02178.pdf
  7. Neural Style Transfer: A Review, https://arxiv.org/pdf/1705.04058.pdf

Cheat-sheet for print:

https://preview.redd.it/4y22qaqp9t741.png?width=1792&format=png&auto=webp&s=ff3aa1c76374530983cb3ae561ff777afe57db69

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