Views
No views yet
1from huggingface_hub import snapshot_download
2
3# Download the model
4model_path = snapshot_download(
5 repo_id="gwenweng/gemma",
6 local_dir="models/gemma"
7)
8
9# Use with TRACE
10# See: https://github.com/yidouweng/trace
11
12Citation
13
14@inproceedings{weng2025trace,
15 title={TRACE Back from the Future: A Probabilistic Reasoning Approach to Controllable
16Language Generation},
17 author={Weng, Yidou and Wang, Benjie and Van den Broeck, Guy},
18 booktitle={Proceedings of the 42nd International Conference on Machine Learning
19(ICML)},
20 year={2025}
21}
22
23License
24
25MIT License - see https://github.com/yidouweng/trace for details.
26