If you have worked with point clouds in the past (or, for this matter, with data), you know how important it is to find patterns between your observations 📈. Indeed, we often need to extract some higher-level knowledge that heavily relies on determining “objects” formed by data points that share a pattern. This is a task that is accomplished quite comfortably by our visual … [Read more...] about How To Automate 3D Point Cloud Segmentation And Clustering With Python
Guest
Topical Language Generation With Transformers
Full Paper Codes Large-scale transformer-based language models (LMs) demonstrate impressive capabilities in open text generation. However, controlling the generated text’s properties such as the topic, style, and sentiment is challenging and often requires significant changes to the model architecture or retraining and fine-tuning the model on new supervised data. We … [Read more...] about Topical Language Generation With Transformers
Vision Transformers or Convolutional Neural Networks? Both!
The field of Computer Vision has for years been dominated by Convolutional Neural Networks (CNNs). Through the use of filters, these networks are able to generate simplified versions of the input image by creating feature maps that highlight the most relevant parts. These features are then used by a multi-layer perceptron to perform the desired classification. But recently … [Read more...] about Vision Transformers or Convolutional Neural Networks? Both!
Should Machine Learning Experts Respond to Climate Change Call To Action?
Our planet's proper functioning and survival rely on a delicate balance of a vast heterogeneity of animal, plant, and microorganism species that contribute to the ecosystem established on Earth. Of all the organisms, there is one that has had a great impact on the planet, so great that it was capable of upsetting its balance, causing entire ecosystems to disappear and … [Read more...] about Should Machine Learning Experts Respond to Climate Change Call To Action?
How AI Can Help Us Recycle
Authors: Duncan Wang, Arnaud Guzman-Annès, Sophie Courtemanche-Martel & James Hogan The recycling problem Reduce, Reuse, and Recycle. Otherwise known as the three Rs of waste management, this aphorism has been largely popularized as the solution for solving the rising waste crisis. In North America, rising environmental awareness amongst the general public and the … [Read more...] about How AI Can Help Us Recycle
The Secret Guide To Human-Like Text Summarization
Summarization has become a very helpful way of tackling the issue of data overburden. In my earlier story, I shared how you can create your personal text summarizer using the extractive method — if you have tried that, you may have noticed that, because no new sentences were generated from the original content, at times you may have difficulties understanding the generated … [Read more...] about The Secret Guide To Human-Like Text Summarization
Is Attention What You Really Need In Transformers?
In recent years there has been an explosion of methods based on self-attention and in particular Transformers, first in the field of Natural Language Processing and recently also in the field of Computer Vision. If you don’t know what Transformers are, or if you want to know more about the mechanism of self-attention, I suggest you have a look at my first article on this … [Read more...] about Is Attention What You Really Need In Transformers?
On DINO, Self-Distillation With No Labels
It has been clear for some time that the Transformers had arrived in the field of computer vision to amaze, but hardly anyone could have imagined such astonishing results from a Vision Transformer in such a short time since their first application. In this article, we discuss one of the most interesting advances in the field of computer vision, DINO, announced a few days … [Read more...] about On DINO, Self-Distillation With No Labels
Graph Convolutional Network Implementation With the PROTEINS Benchmark Dataset
This is part four in a series on graph theory and graph convolutional networks. If you’ve been reading this whole series, you’ve been with me on this entire journey — through discussing what graph theory is and why it matters, what a graph convolutional network even is and how they work, and now we’re here, to the fun part — building our own GCN. If … [Read more...] about Graph Convolutional Network Implementation With the PROTEINS Benchmark Dataset
What Makes Graph Convolutional Networks Work?
This is the third part of a series on graphs and graph theory in machine learning. By now, if you’ve been following this series, you may have learned a bit about graph theory, why we care about graph structured data in data science, and what the heck a “Graph Convolutional Network” is. Now, I’d like to briefly introduce you to what makes these things work. For my … [Read more...] about What Makes Graph Convolutional Networks Work?