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] Best practices for Multi-task Learning where labels exist for only a subset of the total tasks (partial coverage)

Say, for example, I have a goal to do a multi-task learning workflow where I have a network that predicts both foreground/background segmentation, specific object segmentation, and bounding box regression.

Suppose that there are only labels for 1-2 of the tasks per image (i.e. one input image has labels for bounding boxes and fg/bg segmentation, but no specific object segmentation; one input image has specific objects and bounding boxes, but no fg/bg). Also, suppose that there isn’t a lot of training data to use, so I would like to utilize all of the training data even without full label coverage (especially because the feature extraction portions of the network probably benefit from mutual information).

Is there an area of research or some best practices to train an entire network end-to-end in this regard? Something involving finetuning/turning training ‘off’ for certain branches of the network related to the parts that don’t have labels for that input image?

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

[D] Copy of Lecture videos of Advanced Machine Learning from ETH Zurich Autumn 2018

The lecture videos from Advanced Machine Learning from ETH Zurich Autumn 2018 were previously available in the youtube link below, but they removed it. I was wondering if someone managed to save a copy and would be willing to share it? =)

https://www.youtube.com/playlist?list=PLzn6LN6WhlN1x68-5GEzAflTBQrSoKcAJ

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

[D] What would constitute as high quality research and technical work in ML (production)?

Say you are evaluating an AI researcher or a ML engineer in a company; what would you constitute as (realistic) high quality research or technical work from them? How can you tell a good AI practitioner from a bad one? How about a great one from good ones? What advice can you give for somebody if they wish to increase the value that they can provide to their company?

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

How to represent a polygon uniquely using fixed number of parameters?

I am working on the problem of generation of plausible looking layout regions. Right now we are working by generating the region areas as rectangles, but want to extend it to polygons. Working on rectangles is easy since it can be uniquely represented using a fixed number of parameters (x and y coords of top left corner, width and height). Is there any way to represent general polygons using some fixed number of parameters?

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

[P] Predicting Academic Collaboration with Logistic Regression

Predicting Academic Collaboration with Logistic Regression

My capstone project for my last year of undergrad has to do with Social Network Analysis of networks formed by co-authorship in research communities. Since I have a growing interest for machine learning I wanted to see if I could apply various machine learning methods to the networks in order to gather more insight into how they work. In this post I applied a logistic regression model in order to predict future collaboration, and it seemed to be quite accurate over the test set! I would love any feedback on the post, and I hope you enjoy!

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

[P] Python library to work with the Visual Wake Words Dataset.

[P] Python library to work with the Visual Wake Words Dataset.

Recently Google published a paper introducing the Visual Wake Words Dataset.

Currently vision models are benchmarked on the CIFAR10 or ImageNet datasets both of which are restricted in terms of benchmarking the model accuracy and the memory costs for the common low-complexity microcontroller use-case. We present a new dataset, Visual Wake Words, that represents a common microcontroller vision use-case of identifying whether a person is present in the image or not, The proposed dataset is derived from the publicly available COCO dataset, and provides a realistic benchmark for tiny vision models.

As the dataset is derived from the COCO dataset I created a library that inherits from the pycocotools libary and that can be used in a similar fashion on the Visual Wake Words Dataset.

I’ve also included a Pytorch Dataset class that can be used like any VisionDataset.

https://github.com/Mxbonn/visualwakewords

https://i.redd.it/xxeoua9xp2931.png

https://i.redd.it/3lyaebaxp2931.png

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

[P] I made some notes on Google’s BERT paper and I would appreciate your feedback.

I am trying to read more papers and write more myself. In order to accomplish this goal I have decided to read papers on a regular basis and write small essays containing notes on the paper. I decided to start with Google’s BERT paper, which came highly recommended in a WAYR thread here.

I would love to hear any feedback you have on these notes so that I may improve my reading and writing skills.

https://stephanheijl.com/notes_on_bert.html

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

[P] From DQN to Rainbow: A step-by-step Colab + Pytorch tutorial

Hi, ML redditors all around the world! I made a Pytorch RL tutorial which consists of all methods from DQN to Rainbow:

  1. DQN
  2. Double DQN
  3. Prioritized Experience Replay
  4. Dueling Networks
  5. Noisy Network
  6. Categorical DQN (C51)
  7. N-step Learning
  8. Rainbow

Every chapter contains both theoretical backgrounds and object-oriented implementation, and thanks to Colab, you can execute them and render the results without any installation even on your smartphone!

I hope it will be helpful for someone. 🙂

Cheers.

submitted by /u/Curt-Park
[link] [comments]