<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Research Notes on Yang</title><link>/en/research/</link><description>Recent content in Research Notes 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/research/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><item><title>Research Insights: How to Read Papers Efficiently</title><link>/en/research/how-to-read-papers/</link><pubDate>Thu, 05 Mar 2026 18:00:00 +0800</pubDate><guid>/en/research/how-to-read-papers/</guid><description>&lt;h2 id="the-three-pass-approach"&gt;&lt;a href="#the-three-pass-approach" class="header-anchor"&gt;&lt;/a&gt;The Three-Pass Approach
&lt;/h2&gt;&lt;p&gt;A classic method from Keshav&amp;rsquo;s &lt;em&gt;&amp;ldquo;How to Read a Paper&amp;rdquo;&lt;/em&gt;:&lt;/p&gt;
&lt;h3 id="pass-1-510-minutes--get-the-big-picture"&gt;&lt;a href="#pass-1-510-minutes--get-the-big-picture" class="header-anchor"&gt;&lt;/a&gt;Pass 1: 5–10 minutes — Get the big picture
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Read: title, abstract, introduction&lt;/li&gt;
&lt;li&gt;Scan all figure captions and conclusions&lt;/li&gt;
&lt;li&gt;Decide: is this worth reading in depth?&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="pass-2-1-hour--grasp-the-content"&gt;&lt;a href="#pass-2-1-hour--grasp-the-content" class="header-anchor"&gt;&lt;/a&gt;Pass 2: ~1 hour — Grasp the content
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Read the body, &lt;strong&gt;skip proofs&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Focus on experimental setup and key figures&lt;/li&gt;
&lt;li&gt;Note limitations the authors acknowledge&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="pass-3-deep-read--replication-level-understanding"&gt;&lt;a href="#pass-3-deep-read--replication-level-understanding" class="header-anchor"&gt;&lt;/a&gt;Pass 3: Deep read — Replication-level understanding
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Derive every equation&lt;/li&gt;
&lt;li&gt;Challenge every assumption&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="my-note-template"&gt;&lt;a href="#my-note-template" class="header-anchor"&gt;&lt;/a&gt;My Note Template
&lt;/h2&gt;&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-markdown" data-lang="markdown"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="gu"&gt;## Problem
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="gu"&gt;## Key Insight
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="gu"&gt;## Method
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="gu"&gt;## Experiments
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="gu"&gt;## My Take
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="gu"&gt;## Action Items
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="recommended-tools"&gt;&lt;a href="#recommended-tools" class="header-anchor"&gt;&lt;/a&gt;Recommended Tools
&lt;/h2&gt;&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Tool&lt;/th&gt;
 &lt;th&gt;Purpose&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;&lt;strong&gt;Zotero&lt;/strong&gt;&lt;/td&gt;
 &lt;td&gt;Reference management&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;&lt;strong&gt;Obsidian&lt;/strong&gt;&lt;/td&gt;
 &lt;td&gt;Connected note-taking&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;&lt;strong&gt;Connected Papers&lt;/strong&gt;&lt;/td&gt;
 &lt;td&gt;Citation graph visualization&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;&lt;strong&gt;Semantic Scholar&lt;/strong&gt;&lt;/td&gt;
 &lt;td&gt;AI-assisted literature search&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;</description></item></channel></rss>