<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Deep Learning on Yang</title><link>/en/tags/deep-learning/</link><description>Recent content in Deep Learning on Yang</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><lastBuildDate>Fri, 06 Mar 2026 21:35:00 +0800</lastBuildDate><atom:link href="/en/tags/deep-learning/index.xml" rel="self" type="application/rss+xml"/><item><title>Introduction to Classic Deepfake Detection Models</title><link>/en/research/deepfake-detection-models/</link><pubDate>Fri, 06 Mar 2026 21:35:00 +0800</pubDate><guid>/en/research/deepfake-detection-models/</guid><description>&lt;h2 id="introduction"&gt;&lt;a href="#introduction" class="header-anchor"&gt;&lt;/a&gt;Introduction
&lt;/h2&gt;&lt;p&gt;With the rapid development of Generative Adversarial Networks (GANs) and Diffusion Models, Deepfake content is becoming increasingly prevalent on the internet. Effectively identifying these forged images and videos has become a critical issue in multimedia forensics and information security.&lt;/p&gt;
&lt;h2 id="core-content"&gt;&lt;a href="#core-content" class="header-anchor"&gt;&lt;/a&gt;Core Content
&lt;/h2&gt;&lt;p&gt;This article introduces some milestone works in the field of Deepfake detection:&lt;/p&gt;
&lt;h3 id="1-spatial-feature-based-models"&gt;&lt;a href="#1-spatial-feature-based-models" class="header-anchor"&gt;&lt;/a&gt;1. Spatial Feature-based Models
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;MesoNet&lt;/strong&gt;: Focuses on macroscopic burial artifacts in compressed facial images.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Xception-based (FaceForensics++)&lt;/strong&gt;: A representative of transfer learning, fine-tuning models pre-trained on large-scale datasets.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="2-temporal-feature-based-models"&gt;&lt;a href="#2-temporal-feature-based-models" class="header-anchor"&gt;&lt;/a&gt;2. Temporal Feature-based Models
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Deepfake Stacked RNN&lt;/strong&gt;: Utilizes the continuity between video frames to capture forgery traces.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="3-frequency-domain-based-models"&gt;&lt;a href="#3-frequency-domain-based-models" class="header-anchor"&gt;&lt;/a&gt;3. Frequency Domain-based Models
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;F3-Net&lt;/strong&gt;: Identifies forgeries through frequency domain decomposition and frequency statistics.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="4-biological-feature-based-models"&gt;&lt;a href="#4-biological-feature-based-models" class="header-anchor"&gt;&lt;/a&gt;4. Biological Feature-based Models
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Lip-sync Check&lt;/strong&gt;: Observing whether lip movements are synchronized with speech.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Blink Detection&lt;/strong&gt;: Early Deepfake models often struggled to generate natural blinking.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="reflections"&gt;&lt;a href="#reflections" class="header-anchor"&gt;&lt;/a&gt;Reflections
&lt;/h2&gt;&lt;h2 id="references"&gt;&lt;a href="#references" class="header-anchor"&gt;&lt;/a&gt;References
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class="link" href="https://arxiv.org/abs/1901.00596" target="_blank" rel="noopener"
 &gt;FaceForensics++: Learning to Detect Manipulated Facial Images&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="link" href="https://arxiv.org/abs/1809.00888" target="_blank" rel="noopener"
 &gt;MesoNet: a Compact Facial Video Forgery Detection Network&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Attention Is All You Need — Deep Dive into the Transformer Architecture</title><link>/en/research/attention-is-all-you-need/</link><pubDate>Fri, 06 Mar 2026 20:00:00 +0800</pubDate><guid>/en/research/attention-is-all-you-need/</guid><description>&lt;h2 id="-background"&gt;&lt;a href="#-background" class="header-anchor"&gt;&lt;/a&gt;📄 Background
&lt;/h2&gt;&lt;p&gt;Before Transformers, sequence-to-sequence tasks relied heavily on &lt;strong&gt;RNN/LSTM&lt;/strong&gt; architectures, which suffered from two major bottlenecks:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Sequential computation&lt;/strong&gt; prevents parallelization&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Long-range dependency degradation&lt;/strong&gt; over long sequences&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Vaswani et al. proposed the &lt;strong&gt;Transformer&lt;/strong&gt; at NeurIPS 2017, relying entirely on attention mechanisms to model global dependencies — no recurrence, no convolution.&lt;/p&gt;
&lt;h2 id="-core-mechanisms"&gt;&lt;a href="#-core-mechanisms" class="header-anchor"&gt;&lt;/a&gt;🔑 Core Mechanisms
&lt;/h2&gt;&lt;h3 id="self-attention"&gt;&lt;a href="#self-attention" class="header-anchor"&gt;&lt;/a&gt;Self-Attention
&lt;/h3&gt;&lt;p&gt;For input $X \in \mathbb{R}^{n \times d}$, we compute Query, Key, Value projections:&lt;/p&gt;
&lt;p&gt;$$Q = XW^Q, \quad K = XW^K, \quad V = XW^V$$&lt;/p&gt;</description></item></channel></rss>