AutoArk/TinyEngram

★ 1,376⑂ 89

Research of DeepSeek Engram Architecture based on Qwen-3 and Stable Diffusion series.

About AutoArk/TinyEngram

AutoArk/TinyEngram is an open-source project on GitHub, mainly written in Python. Research of DeepSeek Engram Architecture based on Qwen-3 and Stable Diffusion series. It currently holds 1,376 stars and 89 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

AI Homed tracks it on the AI Agent Memory board.

GitHub Repository Details

Repository AutoArk/TinyEngram · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

https://github.com/AutoArk/TinyEngram/blob/HEAD/TinyEngram Logo

TinyEngram: Exploring New Axis of Scaling and Memory Injection

Open research on DeepSeek-AI's Engram and memory injection in Qwen, StableDiffusion and more.

https://github.com/AutoArk/TinyEngram/blob/HEAD/Qwen https://github.com/AutoArk/TinyEngram/blob/HEAD/DeepSeek Engram

https://github.com/AutoArk/TinyEngram/blob/HEAD/Stable Diffusion

https://github.com/AutoArk/TinyEngram/blob/HEAD/License

https://github.com/AutoArk/TinyEngram/blob/HEAD/arXiv:2605.20309

Report Issues

[!NOTE]
TL;DR: TinyEngram demonstrates that Engram-based memory injection outperforms LoRA in both parameter efficiency and catastrophic forgetting resistance—and extends seamlessly to vision (e.g., Stable Diffusion) for lightweight, composable concept injection. All code, logs, and experiments are open!
> If you find TinyEngram useful, a ⭐ helps support the project.


📢 Latest Announcements
  • 2026.05.20 — 📝 TinyEngram-Vision technical report is ready. We organized the vision findings into a complete technical report to invite discussion and further exploration. Read the report, or check out the arXiv version if you prefer.
  • 2026.02.12 — 🖼️ TinyEngram meets Vision! We injected visual concepts into Stable Diffusion through Engram, check our new cross-modal experiment!
  • 2026.02.02 — 📌 Released reproduction scripts for Engram vs LoRA experiment.
  • 2026.01.30 — 📌 Added comparison of catastrophic forgetting between TinyEngram and LoRA.
  • 2026.01.30 — 📌 Added parameter ablation studies of TinyEngram with convergence observations.
  • 2026.01.23 — 🎉 Initial TinyEngram commit.


🔍 Quick Navigation

Key Finding 1: Engram as Parameter Efficient Fine-Tuning Method
Key Finding 2: Engram Outperforms LoRA in Catastrophic Forgetting
TinyEngram-Vision: Engram Goes Multimodal

⚙️ Quick Environment Setup

TinyEngram provides a clean, pinned direct-dependency file for training and vision reproduction:

conda create -n tinyengram python=3.10 -y
conda activate tinyengram
pip install --upgrade pip
pip install -r requirements.txt

For CUDA notes and optional evaluation dependencies, see doc/reproduction/environment.md.

📖 Introduction

TinyEngram is an open research project exploring the Engram architecture—an LLM enhancement that boosts phrase-level understanding by integrating a compact N-gram memory module and a gated retrieval mechanism into key transformer layers.

Built on Qwen, TinyEngram provides a lightweight, ready-to-train codebase for anyone to reproduce, experiment with, or extend Engram-style models. We actively share new experiments, training logs, and findings right here—making this repo both a toolkit and a living research notebook.

Beyond LLMs, we propose a modality-agnostic memory architecture. Engram in Stable Diffusion serves as one instantiation, proving that non-textual concepts can be retrieved and integrated as efficiently as language.

[!TIP]
Join the Research
You are welcome to propose any questions in the Issues. We will burn our own GPUs to research on any interesting questions. Join us in evolving how LLMs remember what matters! 🧠✨

🖼️ TinyEngram-Vision: Engram Goes Multimodal

Technical Report: We have organized the TinyEngram-Vision findings into a complete technical report. Read the report for the full methodology, experiments, and conclusions, or check out the arXiv version if you prefer.

Can Engram's memory mechanism work beyond text?

We extended TinyEngram to Stable Diffusion, treating visual concepts as "memories" capable of being injected into the Text Encoder. By simply recognizing specific N-grams in the prompt, we inject learned embeddings that guide the generation—all without fine-tuning the massive U-Net or DiT backbone.

It's a lightweight, composable way to "teach" the model new subjects (like specific characters) while keeping the original weights frozen.

Why is this cool?

https://github.com/AutoArk/TinyEngram/blob/HEAD/vision_engram_intro

Information Injection in Text-to-Image via Engram (Death Stranding is the best game.)

🔗 Click here to view the full report (SD1.5 & SD3.5 experiments)

Reproduce our experiments

Interested in injecting your own concepts (or even your cat 🐱) into Stable Diffusion? 👉 Check out the reproduction guide here

We provide everything needed to get started:

Have Fun!

🧪 Key Finding 1. Engram as Parameter Efficient Fine-Tuning Method

1. Engram works as Parameter Efficient Fine-Tuning Method


Training Setup

We insert several Engram modules into decoder layers of Qwen. We fine-tune the Engram module on a subset of the Biomed-Enriched dataset. Only added parameters are trainable during the fine-tuning.

The train and eval loss demonstrate robust convergence. This confirms that the Engram module effectively learns specialized biomedical knowledge while preserving the stability of the underlying pre-trained knowledge base.


Training Loss

Validation Performance

| Biomedical Task | Qwen3-0.6B | Engram SFT | |----------------------|------------------------|----------------| | MMLU_Clinical Knowledge | 0.3358 | 0.4415 | | MMLU_Medical Genetics | 0.3700 | 0.4400 | | MMLU_Prof. Medicine | 0.3199 | 0.4559 | | PubMedQA | 0.5700 | 0.6250 |

2. Catastrophic Forgetting

| Task Group | Qwen 3-0.6B | Engram SFT | |-------------------|----------------|-------------------------------| | mmlu (overall)| 0.4034 | 0.4500 (⬆️ +0.0466) | | humanities | 0.4433 | 0.4691 (⬆️ +0.0258) | | other | 0.4271 | 0.4696 (⬆️ +0.0425) | | social sciences| 0.4826 | 0.5389 (⬆️ +0.0563) | | stem | 0.3508 | 0.4088 (⬆️ +0.0580) |

📌 Update (2026.01.30): We have added a new set of experiments comparing Engram and LoRA on catastrophic forgetting. Please refer to Engram vs LoRA Catastrophic Forgetting Experiment for details.

3. Vocabulary Scalability Analysis

In our experiments, we observe an apparent trade-off: smaller capacities may suffer from semantic collisions, while larger ones can become difficult to fully utilize given limited data. Click here to view detailed results
https://github.com/AutoArk/TinyEngram/blob/HEAD/engram_scaling

| Task | Nano (2k/0.2k) | Small (10k/1k) | Medium (20k/2k) | Large (100k/10k) | Qwen3-0.6B (Baseline) | Winner | |----------------------|----------------|----------------|------------------|-------------------|------------------------|------------------| | MMLU_Clinical Knowledge | 0.3736 | 0.4415 | 0.4302 | 0.4226 | 0.3358 | Small 🏆 | | MMLU_Medical Genetics | 0.3900 | 0.4400 | 0.4400 | 0.4100 | 0.3700 | Small/Med 🤝 | | MMLU_Prof. Medicine | 0.4081 | 0.4559 | 0.4228 | 0.4412 | 0.3199 | Small 🏆 | | PubMedQA | 0.6240 | 0.6250 | 0.6170 | 0.6150 | 0.5700 | Small 🏆 |

📌 Update (2026.01.30):
We have expanded our study with a comprehensive ablation of TinyEngram’s configurable hyperparameters. Please refer to Engram Systematic Hyperparameter Tuning Experiment for details.

Reproduce our experiments

To reproduce the experiments conducted in Key Finging 1, please refer to this guide.

🧪 Key Finding 2. Engram Outperforms LoRA in Catastrophic Forgetting

LoRA is the de-facto PEFT method, So how does Engram compare? We also conduct systematic hyperparameter tuning to understand Engram better.

1. Engram vs LoRA Catastrophic Forgetting Experiment

Preliminary observation: In our experiments, Engram shows noticeably better resistance to catastrophic forgetting than LoRA.

| Model Architecture | Adaptation Metric (Eval Loss) $\downarrow$ | General Capability (TruthfulQA MC1) $\uparrow$ | General Capability (TruthfulQA MC2) $\uparrow$ | $\Delta$ (MC2 vs Base) | | :--- | :--- | :--- | :--- | :--- | | Qwen-0.6B (Base) | N/A | 0.2583 | 0.4269 | - | | LoRA (Rank 16) | 0.1862 | 0.2485 | 0.4078 | -1.91% | | TinyEngram | 0.1850 | 0.2644 | 0.4340 | +0.71% |

It is worth noting that LoRA generally converges faster. In our experiments, LoRA could reach an even lower loss (0.1458) quickly, but the trade-off was severe: catastrophic forgetting worsened significantly ($MC1: 0.2472$, $MC2: 0.3993$). Engram provides a safer learning path.

We fine-tune models on "poisoned" function-call-style data (see processing script) based on the glaive-function-calling-v2 dataset, which encourages a strong bias toward structured function-call outputs. We then evaluate both LoRA and Engram on TruthfulQA, a natural language QA benchmark, to examine how well they retain general-language capabilities under this distribution shift. Click here to view detailed results.

2. Engram Systematic Hyperparameter Tuning Experiment

During initial trials, we observed that LoRA converges faster than the default Engram configuration. To enable a scientifically sound comparison, we conducted a systematic hyperparameter study to calibrate Engram such that it reaches evaluation loss levels comparable to LoRA on the same training data.

Using the small-scale, filtered glaive-function-calling-v2 dataset, we ablated key Engram parameters beyond vocabulary size, including:

https://github.com/AutoArk/TinyEngram/blob/HEAD/overview_of_parameter_exp

Detailed analysis is available via the link below.

We hope this experiment can serve as a solid starting point for parameter selection in similar small-scale supervised fine-tuning (SFT) scenarios. 🔗 Click here to view detailed results.

Reproduce our experiments

Reproduction details of experiments conducted in Key Finging 2: please refer to this guide.

🗺️ More Research is on the way!

| Category | Item | Status | | :--- | :--- | :---: | | Multimodal | Stable Diffusion Injection | ✅ | | Engram as PEFT | Engram works | ✅ | | | Catastrophic Forgetting | ✅ | | | Vocabulary Scalability | ✅ | | | vs LoRA | ✅ | | | Hyperparameter Tuning | ✅ | | More | More | ⬜ |

🙏 Acknowledgements

We borrowed a lot of code from the following excellent projects:

We thank the authors of training datasets that help our research:

🔗 Citation

If you find TinyEngram useful for your research or projects, please cite us:

@misc{cai2026tinyengramtriggerindexedconcepttables,
  title         = {Tiny-Engram: Trigger-Indexed Concept Tables for Generative Vision},
  author        = {Runyuan Cai and Yiming Wang and Yu Lin and Xiaodong Zeng},
  year          = {2026},
  eprint        = {2605.20309},
  archivePrefix = {arXiv},
  primaryClass  = {cs.CV},
  url           = {https://arxiv.org/abs/2605.20309}
}

GitHub Stars & Activity

1,376Stars
89Forks
0Open issues
PythonLanguage

GitHub Popularity

GitHub stars1,376
Forks89
Open issues0
Primary languagePython
License-
Stars gained today0
Created-
Last pushed-

Trending History

Trending statusnot on today's boards

Related AI Projects

1

666ghj / MiroFish

Python★ 74,064⑂ 0
2

mem0ai / mem0

Python★ 65,695⑂ 0
3

bojieli / ai-agent-book

Python★ 48,844⑂ 0
4

volcengine / OpenViking

Python★ 38,148⑂ 0
5

topoteretes / cognee

Python★ 30,855⑂ 0
6

MemoriLabs / Memori

Python★ 16,849⑂ 0
7

NevaMind-AI / memU

Python★ 14,418⑂ 0
8

semantica-agi / semantica

Python★ 13,301⑂ 0

More AI Rankings