Any-to-Any
CheXmix
Safetensors
English
Ashwin Kumar commited on
Commit
593fab5
Β·
1 Parent(s): 5ce258c

updated readme

Browse files
Files changed (1) hide show
  1. README.md +44 -2
README.md CHANGED
@@ -1,7 +1,49 @@
1
  ---
2
  license: cc-by-nc-4.0
 
 
 
 
3
  ---
4
 
5
- ### CheXmix: Unified Generative Pretraining for Vision Language Models in Medical Imaging
6
 
7
- CheXmix is a unified early-fusion generative model trained on a large corpus of chest X-rays paired with radiology reports
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ library_name: chexmix
6
+ pipeline_tag: any-to-any
7
  ---
8
 
9
+ # CheXmix: Unified Generative Pretraining for Vision Language Models in Medical Imaging
10
 
11
+ CheXmix is a unified early-fusion generative model trained on a large corpus of chest X-rays paired with radiology reports. The huggingface repository here provides the model weights and an example file (CVPR findings 2026).
12
+
13
+ [[πŸ’» Github]](https://github.com/StanfordMIMI/CheXmix) [[πŸ“„ Paper]](https://arxiv.org/abs/2604.22989)
14
+
15
+ ## ⚑️ Installation
16
+
17
+ For an editable installation, use the following commands to clone and install this repository.
18
+
19
+ ```python
20
+ git clone https://github.com/StanfordMIMI/CheXmix.git
21
+ cd CheXmix
22
+ pip install -e .
23
+ ```
24
+
25
+ For usage instructions, please visit the github [repository](https://github.com/StanfordMIMI/CheXmix).
26
+
27
+ ## πŸ“ Project Structure:
28
+
29
+ ```
30
+ .
31
+ β”œβ”€β”€ README.md
32
+ β”œβ”€β”€ model.safetensors <CheXmix (S1 + S2) checkpoint>
33
+ β”œβ”€β”€ vqgan.ckpt <Image Tokenizer checkpoint>
34
+ ```
35
+
36
+ ## πŸ“Ž Citation
37
+
38
+ If you find this repository useful for your work, please cite the cite the [paper](https://arxiv.org/abs/2604.22989):
39
+
40
+ ```bibtex
41
+ @inproceedings{kumar2026chexmix,
42
+ author = {Kumar, Ashwin and Holland, Robbie and Barrett, Corey and Kim, Jangwon and Varma, Maya and Chen, Zhihong and Gao, Yunhe and Zaharchuk, Greg and Taghavi, Tara and Kenthapadi, Krishnaram and Chaudhari, Akshay},
43
+ title = {CheXmix: Unified Generative Pretraining for Vision Language Models in Medical Imaging},
44
+ booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Findings},
45
+ pages = {9466--9476},
46
+ year = {2026},
47
+ note = {arXiv preprint arXiv:2604.22989}
48
+ }
49
+ ```