Add model card for LatentChem

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - chemistry
7
+ - reasoning
8
+ - latent-thinking
9
+ ---
10
+
11
+ # LatentChem: From Textual CoT to Latent Thinking in Chemical Reasoning
12
+
13
+ LatentChem is a latent reasoning interface that decouples chemical computation from textual generation. It enables models to perform multi-step reasoning directly in continuous latent space, overcoming the representation mismatch between discrete language tokens and continuous chemical logic.
14
+
15
+ ## Summary
16
+ Chemical large language models traditionally rely on explicit Chain-of-Thought (CoT) in natural language. LatentChem introduces a shift toward implicit latent computation. When optimized for task success, the model progressively internalizes reasoning, abandoning verbose textual derivations in favor of more efficient continuous latent dynamics. This approach delivers significant performance gains and a substantial inference speedup (averaging 10.84x) across chemical reasoning benchmarks.
17
+
18
+ ## Resources
19
+ - **Paper:** [LatentChem: From Textual CoT to Latent Thinking in Chemical Reasoning](https://huggingface.co/papers/2602.07075)
20
+ - **GitHub Repository:** [https://github.com/xinwuye/LatentChem](https://github.com/xinwuye/LatentChem)
21
+
22
+ ## Installation
23
+
24
+ To set up the environment for LatentChem, follow the instructions from the official repository:
25
+
26
+ ```bash
27
+ git clone https://github.com/xinwuye/LatentChem.git
28
+ cd LatentChem
29
+ conda env create -f env.yml
30
+ conda activate latentchem_dev
31
+ ```
32
+
33
+ ## Citation
34
+ ```bibtex
35
+ @article{ye2026latentchem,
36
+ title={LatentChem: From Textual CoT to Latent Thinking in Chemical Reasoning},
37
+ author={Ye, Xinwu and Mao, Yicheng and Zhang, Jia and Liu, Yimeng Houses and Hao, Li and Wu, Fang and Li, Zhiwei and Liao, Yuxuan and Wang, Zehong and Liu, Zhiyuan and others},
38
+ journal={arXiv preprint arXiv:2602.07075},
39
+ year={2026}
40
+ }
41
+ ```