Add model card, pipeline tag, and links to paper/code

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +31 -0
README.md CHANGED
@@ -1,3 +1,34 @@
1
  ---
2
  license: mit
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ pipeline_tag: text-generation
4
  ---
5
+
6
+ # Self-Conditioned Flow Map Language Models via Fixed-Point Flows
7
+
8
+ This repository contains checkpoints for **ELF**, **ELF\***, and **FMLM\*** introduced in the paper [Self-conditioned Flow Map Language Models via Fixed-point Flows](https://huggingface.co/papers/2607.00714).
9
+
10
+ All models use the **ELF-B** backbone (12 layers, hidden 768, 12 heads, ~105M parameters).
11
+
12
+ ## Released Models
13
+ - **ELF**: Self-conditioned flow teacher.
14
+ - **ELF\***: Self-conditioning-free fixed-point denoiser (CDEQ).
15
+ - **FMLM\***: Few-step flow map (two-time denoiser).
16
+
17
+ ## Code and Usage
18
+
19
+ The official codebase for training, evaluation, and sampling instructions can be found on GitHub:
20
+ 👉 [self-conditioned-fmlm GitHub Repository](https://github.com/Ugness/self-conditioned-fmlm)
21
+
22
+ ### Citation
23
+
24
+ If you find this work useful, please consider citing:
25
+
26
+ ```bibtex
27
+ @article{yoo2026selfconditioned,
28
+ title={Self-Conditioned Flow Map Language Models via Fixed-Point Flows},
29
+ author={Jaehoon Yoo and Wonjung Kim and Floor Eijkelboom and Chanhyuk Lee
30
+ and Nicholas M. Boffi and Seunghoon Hong and Jinwoo Kim},
31
+ journal={arXiv preprint arXiv:2607.00714},
32
+ year={2026},
33
+ }
34
+ ```