mirror of
https://github.com/zenlm/papers.git
synced 2026-07-27 03:34:41 +00:00
paper/honest-media-provenance
Rewrite 5 media whitepapers to truthfully attribute their permissively-licensed upstreams (dropping the fabricated "Zen MoDE" architecture + invented benchmarks): - zen-3d -> Microsoft TRELLIS (MIT) - zen-video-i2v -> Alibaba Wan2.2-I2V-A14B (Apache-2.0) - zen-world -> Alibaba Wan2.1-T2V-14B (Apache-2.0) - zen-director -> Alibaba Wan2.2-TI2V-5B (Apache-2.0) - zen-musician -> M-A-P YuE (Apache-2.0) Withdraw 4 fabricated/discontinued papers: - zen-mixture-of-experts (the fabricated "Zen MoDE" architecture) - zen-voyager (mislabeled Qwen3-32B LLM; repo deleted) - zen-foley (no permissively-licensed foley model exists) - zen-video (deleted Tencent-mix repo) Drop the withdrawn papers from INDEX.md and PAPER_TIMELINE.md. Co-authored-by: Hanzo Dev <dev@hanzo.ai>
Zen Model Research Papers
Technical papers and whitepapers for the Zen family of language models (600M--480B+ parameters), covering model architectures, training methodologies, benchmarks, and deployment specifications. Co-developed by Hanzo AI and Zoo Labs Foundation.
Structure
Each paper lives in its own subdirectory:
papers/
├── shared/ # cover styles, lstlang.tex, paperkit
│ ├── zencover.sty
│ └── lstlang.tex
├── <paper-slug>/
│ ├── <paper-slug>.tex # main file (\input's sections)
│ ├── <paper-slug>.pdf # compiled output
│ └── sections/ # modular sections
│ ├── 01-intro.tex
│ ├── 02-architecture.tex
│ ├── 03-protocol.tex
│ ├── ...
│ └── 99-bibliography.tex
└── INDEX.md # auto-generated catalogue
Building
cd <paper-slug>
TEXINPUTS=".:..:" latexmk -pdf <paper-slug>.tex
Or build all:
make all
Index
See INDEX.md for full catalogue of papers.
Conventions
- One paper, one directory. No top-level .tex files.
- Modular sections. Main .tex \input's
sections/NN-name.texfiles for easy editing. - Shared cover. All papers use
\usepackage{shared/zencover}and\zencoverpage. - Shared lstlang. All papers use
\input{shared/lstlang}after\usepackage{listings}. - No AI slop. Technical, dense, citation-supported.
- One paper per concept. Updates over time via versioning, not duplication.
Languages
TeX
68.2%
TypeScript
29.4%
Makefile
1.5%
CSS
0.7%
JavaScript
0.2%