Zing Forum

Reading

Judgment Engine: A 430k-Parameter General Classifier with a New Paradigm of Separating Knowledge and Reasoning

Judgment Engine is a tiny general classifier with only 0.43M parameters, innovatively separating knowledge storage from reasoning capabilities. It adapts to different tasks by replacing the codebook instead of retraining the model.

分类器小模型codebook知识分离参数效率机器学习轻量级
Published 2026-05-26 03:10Recent activity 2026-05-26 03:20Estimated read 4 min
Judgment Engine: A 430k-Parameter General Classifier with a New Paradigm of Separating Knowledge and Reasoning
1

Section 01

Judgment Engine: Introduction to the 430k-Parameter General Classifier with a New Paradigm of Separating Knowledge and Reasoning

Judgment Engine is a tiny general classifier with only 0.43M parameters. Its core innovation is separating knowledge storage from reasoning capabilities, allowing it to adapt to different tasks by replacing the codebook without retraining. The original author of the project is shyju-t, sourced from GitHub, released on May 25, 2026.

2

Section 02

Project Background: Limitations of Traditional Models and Current State of Large Models

Traditional deep learning models encode domain knowledge in parameters, requiring retraining when switching tasks; current large models often have billions of parameters and consume significant resources. Judgment Engine challenges the traditional paradigm with extremely small parameters.

3

Section 03

Core Architecture: Innovative Design of Separating Knowledge and Reasoning

It adopts a "knowledge-reasoning separation" architecture: the model is a general reasoning engine (without specific domain knowledge), and task knowledge is stored in a replaceable codebook. Advantages include high modularity (the same engine adapts to multiple tasks), low update cost (only modifying the codebook), and enhanced interpretability (knowledge stored explicitly).

4

Section 04

Technical Implementation: Parameter Efficiency and Key Supporting Technologies

It achieves general classification with only 0.43M parameters, featuring extremely high parameter efficiency. It may use technologies such as architecture simplification, parameter sharing, and knowledge distillation; the codebook mechanism reduces redundant knowledge storage, making it suitable for resource-constrained environments like edge devices and mobile applications.

5

Section 05

Application Scenarios: Practical Value Across Multiple Domains

Applicable to content moderation (different types/violation classifications), intelligent customer service (user intent recognition); developers can quickly launch new tasks (no training needed, just replace the codebook); it also provides new possibilities for federated learning and privacy computing.

6

Section 06

Summary and Insights: The Value of Architectural Innovation

The "knowledge-reasoning separation" concept of Judgment Engine is of great significance, reminding us that architectural innovation can balance functionality and resource efficiency; this idea can be extended to fields such as multimodal systems and recommendation systems, and more models with similar separation architectures may emerge in the future.