NOTE: FoldFlow experiments code and running guide available here: https://github.com/adamkutak/foldflow-inferencescaling
git clone git@github.com:adamkutak/tree-flow-matching.git
cd tree-flow-matchinggit submodule add https://github.com/willisma/SiT.git third_party/SiTmkdir saved_models
wget -O saved_models/SiT-XL-2-256.pt "https://www.dl.dropboxusercontent.com/scl/fi/as9oeomcbub47de5g4be0/SiT-XL-2-256.pt?rlkey=uxzxmpicu46coq3msb17b9ofa&dl=0"pip install -r requirements.txtCreate data directory and download ImageNet validation set (for calculating FID):
mkdir data
cd data
wget https://image-net.org/data/ILSVRC/2012/ILSVRC2012_img_val.tar --no-check-certificate
wget https://image-net.org/data/ILSVRC/2012/ILSVRC2012_devkit_t12.tar.gz --no-check-certificateExtract and organize the dataset:
mkdir val && mv ILSVRC2012_img_val.tar val/ && cd val && tar -xvf ILSVRC2012_img_val.tar
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bashpython compute_dataset_stats.py --dataset imagenet256Run experiments from the root directory:
python run_experiments.py