Skip to main content
PyG Heterogeneous Graph Practice

PyG Heterogeneous Graph Practice

Homogeneous Graph and Heterogeneous Graph

Homogeneous graph

Without distinguishing between node and edge types, there is only one type of node and one type of edge.

Node Type + Edge Type = 2

For example, in a social network, it can be imagined that nodes only have one category 'person', and edges only have one type of connection 'knows'. And people either know each other or they do not.


LizLess than 1 minutePytorchPytorch
Deep Learning Practice with PyTorch

Deep Learning Practice with PyTorch

    1. PyTorch's APIs
    1. Data Loading and Preprocessing
    1. Defining Network Models
    1. Defining Loss Function and Optimizer
    1. Training the Network
    1. Testing the Network
    1. Saving and Loading Models
    1. GPU Acceleration
    1. Visualization with TensorBoard

LizAbout 9 minPytorchPytorch
Tensor Operations

Tensor Operations

    1. Scalar, Vector, Matrix, and Tensor
    1. Initializing Tensors
    1. Attributes of Tensors
    1. Basic Operations on Tensors
    1. Summation and Averaging
    1. Product Operations
    1. Calculating the Norm of a Vector
    1. Gradient Computation

LizAbout 10 minPytorchPytorch
Neural Network Training Key Points Interpretation

Neural Network Training Key Points Interpretation

    1. Overall Objective
    1. Loss Function(Objective Function): Quantifying Model Effectiveness
    1. Optimization Algorithms (Gradient Descent): Algorithms that Adjust Model Parameters to Optimize the Objective Function
    1. Hyperparameters

LizAbout 2 minPytorchPytorch
Artificial Intelligence Concept Interpretation

Artificial Intelligence Concept Interpretation

    1. Machine Learning, Deep Learning, and Reinforcement Learning
    1. Supervised Learning, Semi-Supervised Learning, Unsupervised Learning
    1. Online Learning and Offline Learning
    1. Regression, Classification, and Multi-label Classification
    1. Recommendation and Search

LizAbout 4 minPytorchPytorch