From 6e37d723b532889471a9f5b27a93f99ed18646b2 Mon Sep 17 00:00:00 2001 From: J1an5 <1592050303@qq.com> Date: Tue, 14 Jan 2025 14:12:32 +0800 Subject: [PATCH 1/2] Update docs. --- docs/source/tutorial/gnns.rst | 2 +- docs/source/tutorial/rtls.rst | 2 +- docs/source/tutorial/tnns.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/tutorial/gnns.rst b/docs/source/tutorial/gnns.rst index f7e58142..e4e0ce05 100644 --- a/docs/source/tutorial/gnns.rst +++ b/docs/source/tutorial/gnns.rst @@ -3,7 +3,7 @@ Design of GNNs What is a GNN? ---------------- -In machine learning, **Graph Neural Networks (GNNs)** are a class of neural networks specifically designed to process graph-structured data. In a GNN, the input is represented as a graph, where nodes (vertices) correspond to entities and edges represent the relationships or interactions between these entities. A typical GNN architecture consists of an initial Transform followed by multiple Convolution layers, as detailed in *Understanding Transforms* and *Understanding Convolutions*. +In machine learning, **Graph Neural Networks (GNNs)** are a class of neural networks specifically designed to process graph-structured data. In a GNN, the input is represented as a graph, where nodes (vertices) correspond to entities and edges represent the relationships or interactions between these entities. A typical GNN architecture consists of an initial Transform followed by multiple Convolution layers, as detailed in *Understanding Transform* and *Understanding Convolution*. Construct a GCN diff --git a/docs/source/tutorial/rtls.rst b/docs/source/tutorial/rtls.rst index 661738cc..35514b6f 100644 --- a/docs/source/tutorial/rtls.rst +++ b/docs/source/tutorial/rtls.rst @@ -3,7 +3,7 @@ Design of RTLs What is a RTL? ---------------- -In machine learning, **Relational Table Learnings (RTLs)** typically refers to the learning of relational table data, which consists of multiple interconnected tables with significant heterogeneity. In an RTL, the input comprises multiple table signals that are interrelated. A typical RTL architecture consists of one or more Transforms followed by multiple Convolution layers, as detailed in **Understanding Transforms** and **Understanding Convolutions**. +In machine learning, **Relational Table Learnings (RTLs)** typically refers to the learning of relational table data, which consists of multiple interconnected tables with significant heterogeneity. In an RTL, the input comprises multiple table signals that are interrelated. A typical RTL architecture consists of one or more Transforms followed by multiple Convolution layers, as detailed in *Understanding Transform* and *Understanding Convolution*. Construct a BRIDGE diff --git a/docs/source/tutorial/tnns.rst b/docs/source/tutorial/tnns.rst index 2f1de544..583805d7 100644 --- a/docs/source/tutorial/tnns.rst +++ b/docs/source/tutorial/tnns.rst @@ -2,7 +2,7 @@ Design of TNNs =============== What is a TNN? ---------------- -In machine learning, **Table/Tabular Neural Networks (TNNs)** are recently emerging neural networks specifically designed to process tabular data. In a TNN, the input is structured tabular data, usually organized in rows and columns. A typical TNN architecture consists of an initial Transform followed by multiple Convolution layers, as detailed in *Understanding Transforms* and *Understanding Convolutions*. +In machine learning, **Table/Tabular Neural Networks (TNNs)** are recently emerging neural networks specifically designed to process tabular data. In a TNN, the input is structured tabular data, usually organized in rows and columns. A typical TNN architecture consists of an initial Transform followed by multiple Convolution layers, as detailed in *Understanding Transform* and *Understanding Convolution*. Construct a TabTransformer From c448c57cd21d5be8a8d9d40c9623c75a20410b09 Mon Sep 17 00:00:00 2001 From: J1an5 <1592050303@qq.com> Date: Tue, 14 Jan 2025 14:15:01 +0800 Subject: [PATCH 2/2] Update gnns docs. --- docs/source/tutorial/gnns.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorial/gnns.rst b/docs/source/tutorial/gnns.rst index e4e0ce05..f92fa939 100644 --- a/docs/source/tutorial/gnns.rst +++ b/docs/source/tutorial/gnns.rst @@ -8,7 +8,7 @@ In machine learning, **Graph Neural Networks (GNNs)** are a class of neural netw Construct a GCN ---------------- -In this tutorial, we will discuss how to train a simple Graph Convolutional Network (GCN). Since their introduction, Graph Neural Networks (GNNs) have significantly impacted various fields such as social network analysis, recommendation systems, and link prediction. The GCN model, proposed in the paper `[Semi-supervised Classification with Graph Convolutional Networks] `__ , is one of the most classic models in GNN research. Next, we will build a simple GCN and use it to perform node classification on the Cora citation network dataset. +In this tutorial, we will discuss how to train a simple Graph Convolutional Network (GCN). Since their introduction, Graph Neural Networks (GNNs) have significantly impacted various fields such as social network analysis, recommendation systems, and link prediction. The GCN model, proposed in the paper `[Semi-supervised Classification with Graph Convolutional Networks] `__, is one of the most classic models in GNN research. Next, we will build a simple GCN and use it to perform node classification on the Cora citation network dataset. First, we need to load the Cora dataset, add self-loops to the adjacency matrix, and normalize it: