/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

anitagraser.com
| | blog.fastforwardlabs.com
2.5 parsecs away

Travel
| | Graph Neural Networks (GNNs) are neural networks that take graphs as inputs. These models operate on the relational information in data to produce insights not possible in other neural network architectures and algorithms. While there is much excitement in the deep learning community around GNNs, in industry circles, this is sometimes less so. So, I'll review a few exciting applications empowered by GNNs. Overview of Graphs and GNNs A graph (sometimes called a network) is a data structure that highlights the relationships between components in the data.
| | www.blopig.com
3.7 parsecs away

Travel
| | [AI summary] This post explains how Graph Neural Networks and pre-trained protein language models are used to predict biological properties of proteins by modeling their structural and sequence data.
| | www.simula.no
3.6 parsecs away

Travel
| | Graph neural networks (GNNs), which extend the successful ideas of deep learning to irregularly structured data, are a recent addition to the field of artificial intelligence. While traditional deep learning has focused on regular inputs such as images composed of pixels in two-dimensional space, graph neural networks can analyze and learn from unstructured connections between objects. This gives GNNs the ability to tackle completely new classes of problems, such as analyzing social networks and power grids or uncovering molecule structures in computational chemistry.
| | jaketae.github.io
13.8 parsecs away

Travel
| Recently, a friend recommended me a book, Deep Learning with Python by Francois Chollet. As an eager learner just starting to fiddle with the Keras API, I decided it was a good starting point. I have just finished the first section of Part 2 on Convolutional Neural Networks and image processing. My impression so far is that the book is more focused on code than math. The apparent advantage of this approach is that it shows readers how to build neural networks very transparently. It's also a good introduction to many neural network models, such as CNNs or LSTMs. On the flip side, it might leave some readers wondering why these models work, concretely and mathematically. This point notwithstanding, I've been enjoying the book very much so far, and this post is...