Code DAO
Author

Code DAO

We deliver AI algorithm tutorials and the latest news, curated by a team of researchers from Peking University, Shanghai Jiao Tong University, Central South University, and leading AI companies such as Huawei, Kuaishou, and SenseTime. Join us in the AI alchemy—making life better!

100
Articles
0
Likes
0
Views
0
Comments
Recent Articles

Latest from Code DAO

100 recent articles max
Code DAO
Code DAO
Dec 29, 2021 · Artificial Intelligence

Inside Optuna: How Its Core Components Enable Hyper‑Parameter Optimization

This article dissects Optuna’s internal design by building three miniature versions (Minituna v1‑v3) that illustrate its main components, storage layer, sampling APIs, pruning mechanisms, and joint‑sampling concepts, while comparing them with Optuna’s full implementation.

MinitunaOptunaPython
0 likes · 24 min read
Inside Optuna: How Its Core Components Enable Hyper‑Parameter Optimization
Code DAO
Code DAO
Dec 29, 2021 · Artificial Intelligence

Understanding Stand-Alone Axial-Attention for Panoptic Segmentation

The paper proposes a stand‑alone axial‑attention mechanism that converts 2‑D attention into 1‑D to lower computational cost while preserving global context, introduces position‑sensitive self‑attention, integrates it into Axial‑ResNet and Axial‑DeepLab, and demonstrates strong results on four large segmentation datasets.

Axial AttentionComputer VisionDeepLab
0 likes · 7 min read
Understanding Stand-Alone Axial-Attention for Panoptic Segmentation
Code DAO
Code DAO
Dec 26, 2021 · Artificial Intelligence

Building a Vector‑Based Movie Recommendation System with Transformers

This tutorial walks through constructing a movie recommendation engine by downloading a dataset, cleaning and de‑duplicating entries, encoding plot summaries into vectors with transformer models, and performing nearest‑neighbor searches using scikit‑learn, while handling misspellings with Levenshtein distance.

Levenshtein distancemovie recommendationpandas
0 likes · 8 min read
Building a Vector‑Based Movie Recommendation System with Transformers
Code DAO
Code DAO
Dec 25, 2021 · Artificial Intelligence

Understanding Graph Neural Networks: Nodes, Edges, and Message Passing

This article explains the fundamentals of graph neural networks, covering graph concepts, node classification via neighborhood aggregation, message‑passing mechanics, mathematical notation, a full DGL‑PyTorch implementation on the Reddit dataset, and training results showing accuracy improvements up to 91 %.

DGLGCNGNN
0 likes · 9 min read
Understanding Graph Neural Networks: Nodes, Edges, and Message Passing
Code DAO
Code DAO
Dec 24, 2021 · Artificial Intelligence

Understanding Neural Network Predictions with Integrated Gradients

This article introduces the Integrated Gradients (IG) method for explaining deep neural networks, compares it with saliency maps and Shapley‑based approaches, discusses its axiomatic foundations, and provides a step‑by‑step guide to implementing IG using the open‑source TruLens library, including custom baselines and attribution measures.

Attribution MethodsDeep LearningIntegrated Gradients
0 likes · 14 min read
Understanding Neural Network Predictions with Integrated Gradients
Code DAO
Code DAO
Dec 23, 2021 · Artificial Intelligence

Permutation‑Invariant PIUnet Boosts Multi‑Temporal Satellite Image Super‑Resolution

The article explains how satellite images suffer from limited spatial resolution, why the ordering of multi‑temporal frames is irrelevant, and how the PIUnet model introduces permutation‑invariant equivariant layers to achieve state‑of‑the‑art super‑resolution efficiently, winning the AI4EO challenge.

Deep LearningPIUnetSatellite Imagery
0 likes · 6 min read
Permutation‑Invariant PIUnet Boosts Multi‑Temporal Satellite Image Super‑Resolution
Code DAO
Code DAO
Dec 23, 2021 · Artificial Intelligence

Deep Siamese Network for Measuring Similarity of ECG Signals

This article presents an automated neural‑network framework based on a deep Siamese architecture to learn similarity representations between ECG recordings, covering ECG fundamentals, exploratory data analysis, signal preprocessing, model construction with Keras, and demonstrates how the trained network yields similarity scores applicable to broader signal‑matching tasks.

Deep LearningECGKeras
0 likes · 10 min read
Deep Siamese Network for Measuring Similarity of ECG Signals
Code DAO
Code DAO
Dec 22, 2021 · Artificial Intelligence

How Context R-CNN Leverages Temporal Context to Detect Occluded Objects

The article reviews the Context R-CNN paper, which introduces short‑term and long‑term memory banks and an attention mechanism to incorporate temporal context from multiple frames captured by a fixed camera, enabling robust detection of partially occluded, low‑light, distant, or background‑cluttered objects, and shows quantitative gains over standard Faster R‑CNN.

Context R-CNNFaster R-CNNattention mechanism
0 likes · 6 min read
How Context R-CNN Leverages Temporal Context to Detect Occluded Objects