Views
No views yet

1conda create -n bifrost1 python==3.11
2conda activate bifrost1
3pip install -r requirements.txtlocal_dir with code:1from huggingface_hub import snapshot_download
2
3snapshot_download(
4 repo_id="hanlincs/Bifrost-1",
5 repo_type="model",
6 local_dir="xxxxxxxx", # Replace with your local directory path
7 local_dir_use_symlinks=False
8)python inference_geneval_dpgbench.py --eval_geneval --output_dir "./outputs" --local_checkpoint_path XXXXX # Replace XXXXX with your local checkpoint path1@misc{lin2025bifrost1bridgingmultimodalllms,
2 title={Bifrost-1: Bridging Multimodal LLMs and Diffusion Models with Patch-level CLIP Latents},
3 author={Han Lin and Jaemin Cho and Amir Zadeh and Chuan Li and Mohit Bansal},
4 year={2025},
5 eprint={2508.05954},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2508.05954},
9}