fusion-bench 0.2.30__tar.gz → 0.2.32__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/PKG-INFO +3 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/README.md +2 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/__init__.py +6 -0
- fusion_bench-0.2.32/fusion_bench/__main__.py +4 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/constants/runtime.py +4 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/__init__.py +2 -0
- fusion_bench-0.2.32/fusion_bench/dataset/clip_dataset.py +13 -0
- fusion_bench-0.2.30/fusion_bench/dataset/clip_dataset.py → fusion_bench-0.2.32/fusion_bench/dataset/image_dataset.py +22 -22
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/base_algorithm.py +4 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/classification/image_classification_finetune.py +1 -0
- fusion_bench-0.2.32/fusion_bench/method/concrete_subspace/clip_concrete_tsvm.py +285 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dop/dop.py +0 -22
- fusion_bench-0.2.32/fusion_bench/method/dop/dop_general.py +489 -0
- {fusion_bench-0.2.30/fusion_bench/method/opcm → fusion_bench-0.2.32/fusion_bench/method/dop}/utils.py +24 -4
- fusion_bench-0.2.32/fusion_bench/method/emr_merging/__init__.py +1 -0
- fusion_bench-0.2.32/fusion_bench/method/emr_merging/emr_merging.py +53 -0
- fusion_bench-0.2.32/fusion_bench/method/emr_merging/utils.py +162 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/opcm/opcm.py +6 -2
- fusion_bench-0.2.32/fusion_bench/method/opcm/opcm_general.py +356 -0
- {fusion_bench-0.2.30/fusion_bench/method/dop → fusion_bench-0.2.32/fusion_bench/method/opcm}/utils.py +1 -4
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/simple_average.py +52 -18
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_arithmetic/task_arithmetic.py +1 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_singular_vector/TSVM.py +7 -6
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_singular_vector/utils/TSVM_utils.py +0 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/lightning_fabric.py +110 -11
- fusion_bench-0.2.32/fusion_bench/mixins/openclip_classification.py +165 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/serialization.py +1 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/base_pool.py +37 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/convnext_for_image_classification.py +5 -2
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/openclip_vision/modelpool.py +12 -3
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/hf_clip.py +20 -0
- fusion_bench-0.2.32/fusion_bench/models/modulator/__init__.py +1 -0
- fusion_bench-0.2.32/fusion_bench/models/modulator/base.py +123 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/open_clip/modeling.py +61 -5
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/open_clip/utils.py +13 -2
- fusion_bench-0.2.32/fusion_bench/models/parameter_dict.py +211 -0
- fusion_bench-0.2.32/fusion_bench/models/utils.py +294 -0
- fusion_bench-0.2.32/fusion_bench/models/wrappers/switch.py +90 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/programs/base_program.py +6 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/programs/fabric_fusion_program.py +4 -0
- fusion_bench-0.2.32/fusion_bench/py.typed +1 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/scripts/cli.py +25 -23
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/scripts/imgui.py +2 -2
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/scripts/webui.py +2 -2
- fusion_bench-0.2.32/fusion_bench/taskpool/image_classification.py +270 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/__init__.py +20 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/data.py +1 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/dict.py +19 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/dtype.py +19 -0
- fusion_bench-0.2.32/fusion_bench/utils/hydra_utils.py +103 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/misc.py +1 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/packages.py +4 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/parameters.py +33 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/rich_utils.py +42 -19
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/state_dict_arithmetic.py +183 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/tensorboard.py +21 -3
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench.egg-info/PKG-INFO +3 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench.egg-info/SOURCES.txt +17 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench.egg-info/entry_points.txt +1 -1
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/README.md +9 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/auto.yaml +1 -0
- fusion_bench-0.2.32/fusion_bench_config/fabric/loggers/mlflow_logger.yaml +6 -0
- fusion_bench-0.2.32/fusion_bench_config/hydra/default.yaml +14 -0
- fusion_bench-0.2.32/fusion_bench_config/method/concrete_subspace/clip_concrete_tsvm.yaml +38 -0
- fusion_bench-0.2.32/fusion_bench_config/method/dop/dop_general.yaml +33 -0
- fusion_bench-0.2.32/fusion_bench_config/method/emr_merging/emr_merging.yaml +1 -0
- fusion_bench-0.2.32/fusion_bench_config/method/opcm/opcm_general.yaml +18 -0
- fusion_bench-0.2.32/fusion_bench_config/modelpool/ConvNextForImageClassification/convnext-base-224_8-tasks.yaml +15 -0
- fusion_bench-0.2.32/fusion_bench_config/taskpool/ImageClassificationTaskPool/convnext-base-224_8-tasks.yaml +17 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/pyproject.toml +2 -2
- fusion_bench-0.2.32/tests/test_simple_average.py +217 -0
- fusion_bench-0.2.30/fusion_bench/__main__.py +0 -4
- fusion_bench-0.2.30/fusion_bench/dataset/image_dataset.py +0 -55
- fusion_bench-0.2.30/fusion_bench/mixins/openclip_classification.py +0 -11
- fusion_bench-0.2.30/fusion_bench/models/parameter_dict.py +0 -121
- fusion_bench-0.2.30/fusion_bench/models/utils.py +0 -106
- fusion_bench-0.2.30/fusion_bench/utils/hydra_utils.py +0 -28
- fusion_bench-0.2.30/fusion_bench_config/fabric/loggers/mlflow_logger.yaml +0 -2
- fusion_bench-0.2.30/fusion_bench_config/hydra/default.yaml +0 -12
- fusion_bench-0.2.30/tests/test_simple_average.py +0 -47
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/LICENSE +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/_get_started/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/_get_started/greeting_program.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/method/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/method/base_algorithm.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/modelpool/AutoModelForSeq2SeqLM.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/modelpool/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/modelpool/base_pool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/modelpool/huggingface_clip_vision.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/taskpool/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/taskpool/base_pool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/taskpool/clip_image_classification.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/compat/taskpool/flan_t5_glue_text_generation.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/constants/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/constants/banner.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/constants/clip_vision.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/constants/paths.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/arc_agi/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/arc_agi/arc.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/arc_agi/arc_agi.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/arc_agi/augmenters.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/arc_agi/messagers.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/arc_agi/np_cache.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/arc_agi/preprocess.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/arc_agi/representers.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/fer2013.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/gpt2_glue.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/gsm8k.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/image_corruption/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/image_corruption/make_corruption.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/imdb.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/alpaca.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/collate.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/metamathqa.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/openai.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/preference_700k.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/sharegpt.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/squad.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/stanford_shp.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/ultrachat.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/llama/wikitext.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/dataset/nyuv2.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/ada_svd/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/ada_svd/clip_vision.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/clip_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/clip_task_wise_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/entropy_loss.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/flan_t5_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/gpt2_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/llama_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/resnet_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/task_wise_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/adamerging/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/analysis/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/analysis/task_vector_cos_similarity.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/analysis/task_vector_violin_plot.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/bitdelta/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/bitdelta/bitdelta.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/bitdelta/bitdelta_utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/bitdelta/bitdelta_utils/binary_gemm_kernel.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/bitdelta/bitdelta_utils/data.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/bitdelta/bitdelta_utils/diff.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/classification/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/classification/clip_finetune.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/classification/continual_clip_finetune.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/concrete_subspace/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/concrete_subspace/clip_concrete_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/concrete_subspace/clip_concrete_task_arithmetic.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/concrete_subspace/clip_post_defense.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/concrete_subspace/clip_safe_concrete_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dare/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dare/simple_average.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dare/task_arithmetic.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dare/ties_merging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dare/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dawe/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dawe/dawe_for_clip.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dawe/warppers/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dawe/warppers/dawe_model.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/depth_upscaling/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/depth_upscaling/depth_upscaling.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/depth_upscaling/depth_upscaling_for_llama.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/doge_ta/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/doge_ta/clip_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/doge_ta/doge_ta.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/doge_ta/layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dop/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dop/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/dummy.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/ensemble.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/expert_sparsity/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/expert_sparsity/mixtral/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/expert_sparsity/mixtral/dynamic_skipping.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/expert_sparsity/mixtral/layer_wise_pruning.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/expert_sparsity/mixtral/progressive_pruning.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/expert_sparsity/utils/calibration_data.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/fisher_merging/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/fisher_merging/clip_fisher_merging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/fisher_merging/fisher_merging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/fisher_merging/gpt2_fisher_merging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/fw_merging/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/fw_merging/fw_hard.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/fw_merging/fw_soft.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/fw_merging/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/clip_layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/clip_task_wise_gossip.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/entropy_loss.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/flan_t5_layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/task_wise_gossip.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/gossip/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/isotropic_merging/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/isotropic_merging/iso.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/isotropic_merging/iso_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/knots/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/knots/knots_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/linear/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/linear/expo.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/linear/linear_interpolation.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/linear/llama_expo.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/linear/simple_average_for_causallm.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/linear/task_arithmetic_for_causallm.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/linear/ties_merging_for_causallm.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/lm_finetune/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/lm_finetune/bradley_terry_rm.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/lm_finetune/causal_lm_pretrain.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/lm_finetune/fullfinetune_sft.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/lm_finetune/peftfinetune_sft.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/mixture_of_experts/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/mixture_of_experts/mixtral_merging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/mixture_of_experts/mixtral_upcycling.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/model_recombination.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/model_stock/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/model_stock/model_stock.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/hooks/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/hooks/deepseek_v2.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/hooks/hook.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/hooks/mixtral.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/moe_pruner.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/utils/data.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/utils/layerwrapper.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/utils/prune.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/moe_pruner/utils/score.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/opcm/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/opcm/task_arithmetic.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/opcm/ties_merging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/opcm/weight_average.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/llama_magnitude_prune.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/llama_random_prune.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/llama_sparsegpt_prune.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/llama_wanda_prune.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/magnitude_diff_pruning.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/prune_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/sparsegpt_utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/sparsegpt_utils/sparsegpt.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/wanda_utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/wanda_utils/ablate.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/wanda_utils/data.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/wanda_utils/eval.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/wanda_utils/layerwrapper.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/wanda_utils/prune.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/wanda_utils/prune_opt.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pruning/wanda_utils/sparsegpt.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pwe_moe/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pwe_moe/clip_pwe_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pwe_moe/module.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pwe_moe/openclip_pwe_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pwe_moe/phn/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pwe_moe/phn/solvers.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/pwe_moe/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/randes/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/randes/base_algorithm.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/randes/modelsoup.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/randes/task_arithmetic.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/rankone_moe/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/rankone_moe/clip_rankone_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/rankone_moe/rankone_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/regmean/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/regmean/clip_regmean.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/regmean/gpt2_regmean.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/regmean/regmean.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/regmean/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/regmean_plusplus/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/regmean_plusplus/clip_regmean_plusplus.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/regmean_plusplus/regmean_plusplus.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/slerp/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/slerp/slerp.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/slerp/slerp_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/smile_upscaling/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/smile_upscaling/causal_lm_upscaling.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/smile_upscaling/error_accumulation.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/smile_upscaling/projected_energy.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/smile_upscaling/singular_projection_merging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/smile_upscaling/smile_mistral_upscaling.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/smile_upscaling/smile_qwen2_upscaling.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/smile_upscaling/smile_upscaling.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/sparse_we_moe/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/sparse_we_moe/sparse_clip_we_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/sparse_we_moe/sparse_we_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/sparselo/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/sparselo/sparselo.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/surgery/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/surgery/clip_layer_wise_adamerging_surgery.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/tall_mask/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/tall_mask/task_arithmetic.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/tall_mask/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_arithmetic/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_singular_vector/TSVC.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_singular_vector/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_singular_vector/utils/TSVC_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_singular_vector/utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/task_singular_vector/utils/task_singular_interference.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/ties_merging/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/ties_merging/ties_merging.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/ties_merging/ties_merging_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/trust_region/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/trust_region/clip_task_arithmetic.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/trust_region/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/we_moe/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/we_moe/clip_we_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/we_moe/entropy_loss.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/we_moe/flan_t5_we_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/we_moe/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/we_moe/we_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/weighted_average/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/weighted_average/llama.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/weighted_average/weighted_average.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/wudi/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/method/wudi/wudi.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/continual_learning/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/continual_learning/backward_transfer.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/model_kinship/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/model_kinship/calculate.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/model_kinship/calculate_split.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/model_kinship/utility.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/nyuv2/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/nyuv2/depth.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/nyuv2/loss.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/nyuv2/noise.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/nyuv2/normal.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/nyuv2/segmentation.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/text_to_image_generation/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/text_to_image_generation/aesthetic_scorer.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/text_to_image_generation/compressibility.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/metrics/text_to_image_generation/pickscore_scorer.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/clip_classification.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/fabric_training.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/hydra_config.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/optim/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/optim/adamw_with_warmup.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/pyinstrument.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/rich_live.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/mixins/simple_profiler.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/PeftModelForSeq2SeqLM.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/causal_lm/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/causal_lm/causal_lm.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/clip_vision/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/clip_vision/modelpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/dinov2_for_image_classification.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/huggingface_automodel.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/huggingface_gpt2_classification.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/lazy_state_dict_pool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/nyuv2_modelpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/openclip_vision/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/resnet_for_image_classification.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/seq2seq_lm/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/seq2seq_lm/modelpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/seq_classification_lm/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/seq_classification_lm/reward_model.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/modelpool/seq_classification_lm/seq_classification_lm.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/chat_templates/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/chat_templates/llama_3_Instruct.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/chat_templates/load_tokenizer.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/expert_sparsity/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/expert_sparsity/mixtral/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/expert_sparsity/mixtral/dataset.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/expert_sparsity/mixtral/modeling_mixtral.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/expert_sparsity/mixtral/wrapper.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/hf_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/linearized/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/linearized/linearized_model_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/linearized/vision_model.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/model_utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/model_utils/embedding.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/model_utils/liger_kernel.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/model_utils/misc.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/model_utils/mod.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/model_utils/visual.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/patcher.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/llama/tokenizer_loader.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/masks/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/masks/mask_model.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/model_card_templates/default.md +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_deepseek_v2/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_deepseek_v2/configuration_deepseek.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_deepseek_v2/modeling_deepseek.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_deepseek_v2/tokenization_deepseek_fast.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_losparse_llama/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_losparse_llama/configuration_losparse_llama.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_losparse_llama/losparse_linear.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_losparse_llama/modeling_losparse_llama.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_losparse_llama/register.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_losparse_llama/utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_gemma2/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_gemma2/configuration_smile_gemma2.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_gemma2/modeling_smile_gemma2.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_gemma2/register.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_llama/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_llama/configuration_smile_llama.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_llama/modeling_smile_llama.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_llama/register.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_mistral/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_mistral/configuration_smile_mistral.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_mistral/modeling_smile_mistral.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_mistral/register.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_qwen2/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_qwen2/configuration_smile_qwen2.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_qwen2/modeling_smile_qwen2.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/modeling_smile_qwen2/register.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/nyuv2/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/nyuv2/aspp.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/nyuv2/lightning_module.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/nyuv2/resnet.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/nyuv2/resnet_dilated.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/open_clip/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/open_clip/variables_and_paths.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/rankone_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/separate_io.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/smile_moe/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/smile_moe/linear_from_hf_config.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/smile_moe/linear_from_module.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/smile_moe/utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/smile_moe/utils/svd_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/sparse_we_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/surgery/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/surgery/surgerymodelwrapper.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/we_moe.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/wrappers/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/wrappers/ensemble.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/wrappers/layer_wise_fusion.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/wrappers/layer_wise_fusion_doge_ta.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/models/wrappers/task_wise_fusion.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/optim/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/optim/exception.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/optim/lr_scheduler/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/optim/lr_scheduler/linear_warmup.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/optim/lr_scheduler/utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/optim/lr_scheduler/utils/visualization.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/optim/mezo.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/optim/muon.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/programs/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/programs/fusion_program.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/scripts/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/scripts/clip/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/scripts/clip/convert_checkpoint.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/scripts/nyuv2_mtl_train.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/base_pool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/clip_vision/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/clip_vision/clip_rankone_moe_taskpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/clip_vision/clip_smile_taskpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/clip_vision/clip_sparse_wemoe_taskpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/clip_vision/taskpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/clip_vision/utils/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/clip_vision/utils/routing_analysis_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/dummy.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/gpt2_text_classification.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/llama/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/llama/reward_model.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/llama/test_generation.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/lm_eval_harness/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/lm_eval_harness/taskpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/nyuv2_taskpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/openclip_vision/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/openclip_vision/openclip_taskpool.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/taskpool/resnet_for_image_classification.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/base_task.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/classification.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/cifar10.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/cifar100.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/clip_dataset.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/cub_200_2011.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/dtd.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/emnist_letters.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/emnist_mnist.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/eurosat.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/fashion_mnist.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/fer2013.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/flower102.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/food101.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/gtsrb.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/imagenet.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/kmnist.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/mnist.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/mongo_leaf_disease.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/oxford_iiit_pet.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/pcam.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/rendered_sst2.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/resisc45.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/stanford_cars.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/stl10.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/sun397.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/svhn.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/clip_classification/tiny_imagenet.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/flan_t5_text_generation/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/flan_t5_text_generation/datasets_preprocess.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/flan_t5_text_generation/glue_evaluation.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/flan_t5_text_generation/glue_load_dataset.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/flan_t5_text_generation/glue_preprocessors.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/tasks/flan_t5_text_generation/glue_prompt_templates.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/cache_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/devices.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/expr.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/fabric.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/functools.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/instantiate_utils.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/json.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/lazy_imports.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/lazy_state_dict.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/modelscope.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/path.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/plot/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/plot/color_data.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/plot/token.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/plot/token_notebook.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/pylogger.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/set.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/strenum/__init__.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/strenum/_name_mangler.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/strenum/_version.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/timer.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/type.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench/utils/validation.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench.egg-info/dependency_links.txt +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench.egg-info/requires.txt +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench.egg-info/top_level.txt +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/_get_started/clip_evaluate_single_model.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/_get_started/clip_simple_average.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/_get_started/clip_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/_get_started/greeting_program.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/_get_started/llm_slerp.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/README.md +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/TALL10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/TALL12.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/TALL16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/TALL18.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/cub-200-2011.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/emnist_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/mango-leaf-disease.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/test/tiny-imagenet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/TALL10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/TALL12.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/TALL16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/TALL18.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/cub-200-2011.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/emnist_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/mango-leaf-disease.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/train/tiny-imagenet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/image_classification/val/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/llm_sft/alpaca_cleaned.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/llm_sft/ultrachat_200k.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/question_answering/search_qa.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/question_answering/test/search_qa.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/question_answering/train/MetaMathQA.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/question_answering/train/search_qa.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/question_answering/val/search_qa.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/summarization/test/xsum.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/summarization/train/xsum.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/summarization/val/xsum.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/summarization/xsum.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/text_generation/test/gsm-hard.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/text_generation/test/gsm8k.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/text_generation/test/gsm8k_question_label.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/text_generation/train/CodeAlpaca-20k.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/text_generation/train/gsm8k.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/dataset/text_generation/train/gsm8k_question_label.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/llama_ddp.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/llama_fsdp.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/llama_peft_fsdp.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/loggers/csv_logger.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/loggers/swandb_logger.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/loggers/tensorboard_logger.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/loggers/wandb_logger.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/strategy/deepspeed.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/strategy/llama_fsdp.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric/strategy/llama_peft_fsdp.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/fabric_model_fusion.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/hydra/help/fusion_bench_help.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/hydra/job_logging/rich_logging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/llama_full_finetune.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/llama_magnitude_pruning.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/llama_model_fusion.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/ada_svd/clip_vision.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/adamerging/clip.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/adamerging/layer_wise_flan_t5.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/adamerging/layer_wise_gpt2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/adamerging/llama_sft.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/adamerging/resnet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/analysis/task_vector_cos_similarity.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/analysis/task_vector_violin_plot.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/bitdelta/bitdelta.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/classification/clip_continual_finetune.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/classification/clip_finetune.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/classification/image_classification_finetune.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/classification/image_classification_finetune_test.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/concrete_subspace/clip_concrete_layer_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/concrete_subspace/clip_concrete_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/concrete_subspace/clip_concrete_task_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/concrete_subspace/clip_post_defense_AWM.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/concrete_subspace/clip_post_defense_SAU.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/concrete_subspace/clip_safe_concrete_layer_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/concrete_subspace/clip_safe_concrete_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/dare/simple_average.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/dare/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/dare/ties_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/dawe/dawe_for_clip.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/depth_upscaling.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/doge_ta/doge_ta.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/dop/dop.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/dummy.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/ensemble/max_model_predictor.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/ensemble/simple_ensemble.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/ensemble/weighted_ensemble.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/expert_sparsity/README.md +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/expert_sparsity/mixtral.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/fisher_merging/clip_fisher_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/fisher_merging/fisher_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/fisher_merging/gpt2_fisher_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/fw_merging/fw_hard.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/fw_merging/fw_soft.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/gossip/layer_wise_clip.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/gossip/layer_wise_flan_t5.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/isotropic_merging/iso_c.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/isotropic_merging/iso_cts.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/expo.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/linear_interpolation.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/llama_expo.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/llama_expo_with_dare.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/simple_average_for_causallm.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/task_arithmetic_for_causallm.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/ties_merging_for_causallm.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/weighted_average.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/linear/weighted_average_for_llama.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/lm_finetune/bradley_terry_rm.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/lm_finetune/fullfinetune_sft.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/lm_finetune/peftfinetune_sft.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/mixtral_moe_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/mixtral_moe_upscaling.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/model_recombination.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/model_stock/model_stock.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/moe_pruner/moe_pruner.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/opcm/opcm.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/opcm/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/opcm/ties_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/opcm/weight_average.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/pruning/llama_magnitude_pruning.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/pruning/llama_random_pruning.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/pruning/llama_sparsegpt_pruning.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/pruning/llama_wanda_pruning.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/pruning/magnitude_diff_pruning.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/pwe_moe/epo_for_openclip.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/pwe_moe/ls_for_openclip.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/pwe_moe/pwe_moe_ls_for_clip.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/randes/superposed_model_soup.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/randes/superposed_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/randes/superposed_task_arithmetic_lora.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/rankone_moe/rankone_moe.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/regmean/clip_regmean.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/regmean/gpt2_regmean.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/regmean/regmean.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/regmean_plusplus/clip_regmean_plusplus.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/simple_average.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/slerp/slerp.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/slerp/slerp_lm.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/smile_upscaling/causal_lm_upscaling.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/smile_upscaling/error_accumulation.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/smile_upscaling/projected_energy.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/smile_upscaling/singular_projection_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/smile_upscaling/smile_mistral_upscaling.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/smile_upscaling/smile_qwen2_upscaling.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/smile_upscaling/smile_upscaling.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/sparselo_pruning/llama_iterative_sparselo.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/sparselo_pruning/llama_pcp_sparselo.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/sparselo_pruning/llama_sparselo.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/surgery/adamerging_surgery.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/tall_mask/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/task_singular_vector/TaskSingularVectorMerging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/ties_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/trust_region/clip_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/wemoe/flan_t5_weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/wemoe/sparse_weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/wemoe/weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/method/wudi/wudi.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/README.md +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL12.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL18.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/download_TALL20_models.sh +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/clip-vit/generate_vit_model_config.sh +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-cola.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-cola_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mnli.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mrpc.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mrpc_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qnli.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qqp.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qqp_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-rte.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-rte_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-sst2_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-stsb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-stsb_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-cola_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-mnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-mrpc_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-qnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-qqp_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-rte_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-sst2_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-stsb_lora-16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model/flan-t5/generate_flan-t5.sh +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/model_fusion.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/_template.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8_lora.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_individual.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_individual_lora.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8_control_task.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL12.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL18.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_cars_and_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_generalization_exp1.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_generalization_exp2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_individual.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_mtl.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_robustness_clean.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_single_finetuned.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_single_task_projection.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_and_cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_and_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_cars_and_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_svhn_and_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_two_tasks_control_task.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_individual.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_math_and_code.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_three_models.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-7B-math_and_coder.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/deepseek-v2-lite.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/llama-7b_3-models_v1.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/llama_alpaca_cleaned.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/llama_codealpaca.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/llama_for_causallm.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/llama_metamathqa.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/llama_ultrachat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.1-8B-Instruct.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.1-8B.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.2-3B-Instruct.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.2-3B.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-2b-it.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-2b.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-9b-it.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-9b.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mistral-7b.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mixtral-8x7b.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/mixtral_moe_merging.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/qwen2_math_1.5B_and_R1.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/simle_mixtral_exp_v4.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/single_llama_model.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/CausalLMPool/vicuna-7b-v1.5.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ConvNextForImageClassification/convnext-base-224.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/Dinov2ForImageClassification/dinov2-base-imagenet1k-1-layer.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/README.md +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-16_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_cars_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_sun397_cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_sun397_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_individual.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-L-14_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/_generate_config.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/Seq2SeqLMPool/_template.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_lora16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_lora16_tta.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_tta.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_individual.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-large_glue_lora16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/SequenceClassificationModelPool/llama_preference700k.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/SequenceClassificationModelPool/roberta-base_glue.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/SequenceClassificationModelPool/single_reward_model.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/automodelpool.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/gpt-2_glue.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/nyuv2_modelpool.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/smile_mistral_exp_v1.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/smile_mistral_exp_v2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/smile_mistral_exp_v3.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/modelpool/smile_mistral_exp_v4.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/nyuv2_config.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/nyuv2_mtl_train.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/path/default.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/_template.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-base-patch32_svhn_and_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_B16.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_L14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_val.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_with_control_task.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TALL14.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TALL20.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_cifar10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_cifar100.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_dtd.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_eurosat.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_fer2013.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_food101.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_gtsrb.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_kmnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_mnist.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford_flowers102_val.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_pcam.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_resisc45.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_stl10.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_sun397.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_svhn.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip_rankone_wemoe_clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip_sparse_wemoe_clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/LMEvalHarnessTaskPool/lm_eval.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-B-16_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-B-32_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-L-14_TA8.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/clip-vit-base-patch32_robustness_clean.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/dummy.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/flan-t5_glue_text_generation.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/gpt-2_glue.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/nyuv2_taskpool.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/fusion_bench_config/taskpool/reward_model_evaluation.yaml +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/setup.cfg +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/tests/test_depth_upscaling.py +0 -0
- {fusion_bench-0.2.30 → fusion_bench-0.2.32}/tests/test_weighed_ensemble.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fusion-bench
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.32
|
|
4
4
|
Summary: A Comprehensive Benchmark of Deep Model Fusion
|
|
5
5
|
Author-email: Anke Tang <tang.anke@foxmail.com>
|
|
6
6
|
Project-URL: Repository, https://github.com/tanganke/fusion_bench
|
|
@@ -61,6 +61,8 @@ Dynamic: license-file
|
|
|
61
61
|
|
|
62
62
|
FusionBench is a benchmark suite designed to evaluate the performance of various deep model fusion techniques. It aims to provide a comprehensive comparison of different methods on a variety of datasets and tasks.
|
|
63
63
|
|
|
64
|
+
## :newspaper: News and Related
|
|
65
|
+
|
|
64
66
|
Projects based on FusionBench and news from the community (descending order of date. If you have any work based on FusionBench, please feel free to let us know, we are willing to add it to the list. :partying_face:):
|
|
65
67
|
|
|
66
68
|
<details>
|
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
|
|
22
22
|
FusionBench is a benchmark suite designed to evaluate the performance of various deep model fusion techniques. It aims to provide a comprehensive comparison of different methods on a variety of datasets and tasks.
|
|
23
23
|
|
|
24
|
+
## :newspaper: News and Related
|
|
25
|
+
|
|
24
26
|
Projects based on FusionBench and news from the community (descending order of date. If you have any work based on FusionBench, please feel free to let us know, we are willing to add it to the list. :partying_face:):
|
|
25
27
|
|
|
26
28
|
<details>
|
|
@@ -86,6 +86,9 @@ _import_structure = {
|
|
|
86
86
|
"set_print_function_call",
|
|
87
87
|
"set_print_function_call_permeanent",
|
|
88
88
|
"timeit_context",
|
|
89
|
+
"initialize_hydra_config",
|
|
90
|
+
"get_default_config_path",
|
|
91
|
+
"get_hydra_output_dir",
|
|
89
92
|
],
|
|
90
93
|
}
|
|
91
94
|
|
|
@@ -144,8 +147,11 @@ if TYPE_CHECKING:
|
|
|
144
147
|
StateDictType,
|
|
145
148
|
TorchModelType,
|
|
146
149
|
cache_with_joblib,
|
|
150
|
+
get_default_config_path,
|
|
151
|
+
get_hydra_output_dir,
|
|
147
152
|
get_rankzero_logger,
|
|
148
153
|
import_object,
|
|
154
|
+
initialize_hydra_config,
|
|
149
155
|
instantiate,
|
|
150
156
|
parse_dtype,
|
|
151
157
|
print_parameters,
|
|
@@ -89,7 +89,10 @@ class RuntimeConstants:
|
|
|
89
89
|
self._initialized = True
|
|
90
90
|
|
|
91
91
|
debug = False
|
|
92
|
-
"""
|
|
92
|
+
"""
|
|
93
|
+
Global debug flag for enabling verbose logging and debugging features.
|
|
94
|
+
Use `RuntimeConstants().debug` instead of `RuntimeConstants.debug`
|
|
95
|
+
"""
|
|
93
96
|
|
|
94
97
|
@property
|
|
95
98
|
def cache_dir(self) -> Path:
|
|
@@ -38,10 +38,12 @@ _extra_objects = {
|
|
|
38
38
|
}
|
|
39
39
|
_import_structure = {
|
|
40
40
|
"clip_dataset": ["CLIPDataset"],
|
|
41
|
+
"image_dataset": ["ImageClassificationDataset"],
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
if TYPE_CHECKING:
|
|
44
45
|
from .clip_dataset import CLIPDataset
|
|
46
|
+
from .image_dataset import ImageClassificationDataset
|
|
45
47
|
|
|
46
48
|
else:
|
|
47
49
|
sys.modules[__name__] = LazyImporter(
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
This module provides a class to convert a dataset whose object is a list of dictionaries with keys "image" and "label" to a dataset whose object is a tuple of tensors (inputs, label) for CLIP models.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from fusion_bench.utils import DeprecationWarningMeta
|
|
6
|
+
|
|
7
|
+
from .image_dataset import ImageClassificationDataset
|
|
8
|
+
|
|
9
|
+
__all__ = ["CLIPDataset"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class CLIPDataset(ImageClassificationDataset, metaclass=DeprecationWarningMeta):
|
|
13
|
+
pass
|
|
@@ -1,35 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
This module provides a class to convert a dataset whose object is a list of dictionaries with keys "image" and "label" to a dataset whose object is a tuple of tensors (inputs, label) for CLIP models.
|
|
3
|
-
"""
|
|
4
|
-
|
|
5
|
-
from typing import Optional, Tuple
|
|
1
|
+
from typing import TYPE_CHECKING, Any, Callable, Optional, Tuple, Union
|
|
6
2
|
|
|
7
3
|
import torch
|
|
8
4
|
from torch.utils.data import Dataset
|
|
9
|
-
from transformers import BaseImageProcessor,
|
|
10
|
-
|
|
11
|
-
__all__ = ["CLIPDataset"]
|
|
5
|
+
from transformers import BaseImageProcessor, ProcessorMixin
|
|
12
6
|
|
|
13
7
|
|
|
14
|
-
class
|
|
8
|
+
class ImageClassificationDataset(Dataset):
|
|
15
9
|
"""
|
|
16
|
-
A dataset class for
|
|
17
|
-
into a format suitable for
|
|
10
|
+
A dataset class for image classification models that converts a dataset of dictionaries or tuples
|
|
11
|
+
into a format suitable for model processing.
|
|
18
12
|
|
|
19
|
-
This class wraps an existing dataset and applies
|
|
13
|
+
This class wraps an existing dataset and applies preprocessing to the images.
|
|
20
14
|
It expects each item in the dataset to be either a dictionary with 'image' and 'label' keys,
|
|
21
15
|
or a tuple/list of (image, label).
|
|
22
|
-
|
|
23
|
-
Args:
|
|
24
|
-
dataset: The original dataset to wrap.
|
|
25
|
-
processor (CLIPProcessor): The CLIP processor for preparing inputs. If None, no preprocessing is applied and raw images are returned.
|
|
26
|
-
|
|
27
|
-
Attributes:
|
|
28
|
-
dataset: The wrapped dataset.
|
|
29
|
-
processor (CLIPProcessor): The CLIP processor used for image preprocessing.
|
|
30
16
|
"""
|
|
31
17
|
|
|
32
|
-
def __init__(
|
|
18
|
+
def __init__(
|
|
19
|
+
self,
|
|
20
|
+
dataset: Dataset,
|
|
21
|
+
processor: Optional[Union["ProcessorMixin", "BaseImageProcessor"]] = None,
|
|
22
|
+
):
|
|
23
|
+
"""
|
|
24
|
+
Args:
|
|
25
|
+
dataset (Dataset): The original dataset to wrap.
|
|
26
|
+
processor (Optional[Union[ProcessorMixin, BaseImageProcessor]]): The processor for preparing inputs.
|
|
27
|
+
If None, no preprocessing is applied and raw images are returned.
|
|
28
|
+
"""
|
|
33
29
|
self.dataset = dataset
|
|
34
30
|
self.processor = processor
|
|
35
31
|
|
|
@@ -50,6 +46,8 @@ class CLIPDataset(torch.utils.data.Dataset):
|
|
|
50
46
|
Raises:
|
|
51
47
|
ValueError: If the item is neither a dictionary nor a tuple/list of length 2.
|
|
52
48
|
"""
|
|
49
|
+
# Standardize the item to a dictionary format
|
|
50
|
+
# {"image": ..., "label": ...}
|
|
53
51
|
item = self.dataset[idx]
|
|
54
52
|
if isinstance(item, dict):
|
|
55
53
|
item = item
|
|
@@ -58,6 +56,8 @@ class CLIPDataset(torch.utils.data.Dataset):
|
|
|
58
56
|
item = {"image": item[0], "label": item[1]}
|
|
59
57
|
else:
|
|
60
58
|
raise ValueError("Each item should be a dictionary or a tuple of length 2")
|
|
59
|
+
|
|
60
|
+
# Process the image using the provided processor, if any
|
|
61
61
|
image = item["image"]
|
|
62
62
|
if self.processor is not None:
|
|
63
63
|
if isinstance(self.processor, (ProcessorMixin, BaseImageProcessor)):
|
|
@@ -70,7 +70,7 @@ class CLIPDataset(torch.utils.data.Dataset):
|
|
|
70
70
|
inputs = self.processor(image)
|
|
71
71
|
else:
|
|
72
72
|
raise ValueError(
|
|
73
|
-
"The processor should be a
|
|
73
|
+
"The processor should be a transformers Processor or a callable function"
|
|
74
74
|
)
|
|
75
75
|
else:
|
|
76
76
|
# if processor is None, return the raw image directly
|
|
@@ -59,6 +59,10 @@ class BaseAlgorithm(BaseYAMLSerializable):
|
|
|
59
59
|
core fusion logic in the `run` method, while optional lifecycle hooks allow for
|
|
60
60
|
setup and cleanup operations.
|
|
61
61
|
|
|
62
|
+
If model has `_fusion_bench_target_modules` attribute, the algorithm will only fuse
|
|
63
|
+
the specified target modules. This is useful for models where only certain layers
|
|
64
|
+
should be fused (e.g., classification heads on top of a shared backbone are not merged).
|
|
65
|
+
|
|
62
66
|
Attributes:
|
|
63
67
|
_program: Optional program reference for algorithm execution context.
|
|
64
68
|
_config_key (str): Configuration key used for YAML serialization, defaults to "method".
|
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
import os
|
|
3
|
+
from copy import deepcopy
|
|
4
|
+
from typing import TYPE_CHECKING, Dict, Iterable, List, Literal, Optional
|
|
5
|
+
|
|
6
|
+
import torch
|
|
7
|
+
from omegaconf import DictConfig
|
|
8
|
+
from tqdm import tqdm
|
|
9
|
+
|
|
10
|
+
from fusion_bench import (
|
|
11
|
+
BaseAlgorithm,
|
|
12
|
+
OpenCLIPClassificationMixin,
|
|
13
|
+
OpenCLIPVisionModelPool,
|
|
14
|
+
SimpleProfilerMixin,
|
|
15
|
+
StateDictType,
|
|
16
|
+
auto_register_config,
|
|
17
|
+
get_rankzero_logger,
|
|
18
|
+
instantiate,
|
|
19
|
+
)
|
|
20
|
+
from fusion_bench.method.adamerging.entropy_loss import entropy_loss
|
|
21
|
+
from fusion_bench.method.task_singular_vector import TaskSingularVectorMerging
|
|
22
|
+
from fusion_bench.method.task_singular_vector.utils import (
|
|
23
|
+
TSVM_utils,
|
|
24
|
+
check_parameterNamesMatch,
|
|
25
|
+
check_state_dicts_equal,
|
|
26
|
+
state_dict_to_vector,
|
|
27
|
+
vector_to_state_dict,
|
|
28
|
+
)
|
|
29
|
+
from fusion_bench.models.masks import MaskModel, mask_sparsity
|
|
30
|
+
from fusion_bench.models.open_clip import (
|
|
31
|
+
ClassificationHead,
|
|
32
|
+
ImageClassifier,
|
|
33
|
+
ImageEncoder,
|
|
34
|
+
)
|
|
35
|
+
from fusion_bench.models.wrappers.task_wise_fusion import (
|
|
36
|
+
TaskWiseMergedModel,
|
|
37
|
+
get_task_wise_weights,
|
|
38
|
+
)
|
|
39
|
+
from fusion_bench.utils.devices import clear_cuda_cache
|
|
40
|
+
from fusion_bench.utils.dtype import parse_dtype
|
|
41
|
+
from fusion_bench.utils.parameters import print_parameters, print_trainable_parameters
|
|
42
|
+
from fusion_bench.utils.rich_utils import print_config_yaml
|
|
43
|
+
from fusion_bench.utils.state_dict_arithmetic import (
|
|
44
|
+
_validate_state_dict_same_keys,
|
|
45
|
+
state_dict_add,
|
|
46
|
+
state_dict_hadamard_product,
|
|
47
|
+
state_dict_mul,
|
|
48
|
+
state_dict_sub,
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
log = get_rankzero_logger(__name__)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
@auto_register_config
|
|
55
|
+
class ConcreteTSVMForOpenCLIP(
|
|
56
|
+
OpenCLIPClassificationMixin,
|
|
57
|
+
SimpleProfilerMixin,
|
|
58
|
+
BaseAlgorithm,
|
|
59
|
+
):
|
|
60
|
+
def __init__(
|
|
61
|
+
self,
|
|
62
|
+
dataloader_kwargs: DictConfig,
|
|
63
|
+
optimizer: DictConfig,
|
|
64
|
+
lr_scheduler: DictConfig,
|
|
65
|
+
max_steps: int,
|
|
66
|
+
save_interval: int,
|
|
67
|
+
initial_logits: float,
|
|
68
|
+
temperature: float,
|
|
69
|
+
eval_mask_type: Literal["continuous", "discrete"],
|
|
70
|
+
mask_checkpoint: Optional[str],
|
|
71
|
+
merge_dtype: str,
|
|
72
|
+
clamp_weights: bool,
|
|
73
|
+
tie_weights: bool,
|
|
74
|
+
strict: bool,
|
|
75
|
+
skip_training: bool,
|
|
76
|
+
# === TSVM parameters ===
|
|
77
|
+
exclude_keys: Optional[List[str]],
|
|
78
|
+
alpha: float,
|
|
79
|
+
return_single_task_models: bool = True,
|
|
80
|
+
**kwargs,
|
|
81
|
+
):
|
|
82
|
+
super().__init__(**kwargs)
|
|
83
|
+
if not return_single_task_models:
|
|
84
|
+
log.warning("return_single_task_models is forced to be True here.")
|
|
85
|
+
self.return_single_task_models = True
|
|
86
|
+
|
|
87
|
+
@torch.no_grad()
|
|
88
|
+
def setup_models(self):
|
|
89
|
+
"""
|
|
90
|
+
load the pre-trained model, task vectors, and construct the mask model.
|
|
91
|
+
"""
|
|
92
|
+
merge_dtype = parse_dtype(self.merge_dtype)
|
|
93
|
+
modelpool = self.modelpool
|
|
94
|
+
|
|
95
|
+
# load the pre-trained model
|
|
96
|
+
pretrained_model = modelpool.load_pretrained_model()
|
|
97
|
+
self.set_clip_processor(stage="test", processor=pretrained_model.val_preprocess)
|
|
98
|
+
|
|
99
|
+
# constrcute mask model
|
|
100
|
+
mask_model = MaskModel(
|
|
101
|
+
pretrained_model, ignore_untrained_params=True, parameter_type="logits"
|
|
102
|
+
)
|
|
103
|
+
if merge_dtype is not None:
|
|
104
|
+
mask_model.to(merge_dtype)
|
|
105
|
+
mask_model.fill_(self.initial_logits)
|
|
106
|
+
|
|
107
|
+
if self.fabric.is_global_zero:
|
|
108
|
+
print("summary of mask model:")
|
|
109
|
+
print_parameters(mask_model)
|
|
110
|
+
|
|
111
|
+
if self.fabric.is_global_zero:
|
|
112
|
+
tsvm_algo = TaskSingularVectorMerging(
|
|
113
|
+
alpha=self.alpha,
|
|
114
|
+
exclude_keys=self.exclude_keys,
|
|
115
|
+
return_single_task_models=self.return_single_task_models,
|
|
116
|
+
)
|
|
117
|
+
tsvm_algo._fabric_instance = self.fabric
|
|
118
|
+
models = tsvm_algo.run(modelpool)
|
|
119
|
+
|
|
120
|
+
finetuned_models = [models[name] for name in modelpool.model_names]
|
|
121
|
+
|
|
122
|
+
task_wise_weight = get_task_wise_weights(
|
|
123
|
+
num_models=len(modelpool.model_names),
|
|
124
|
+
init_values=self.alpha,
|
|
125
|
+
)
|
|
126
|
+
|
|
127
|
+
# create a wrapped model
|
|
128
|
+
module = TaskWiseMergedModel(
|
|
129
|
+
task_wise_weight=task_wise_weight,
|
|
130
|
+
pretrained_model=pretrained_model,
|
|
131
|
+
finetuned_models=finetuned_models,
|
|
132
|
+
clamp_weights=self.clamp_weights,
|
|
133
|
+
tie_weights=self.tie_weights,
|
|
134
|
+
strict=self.strict,
|
|
135
|
+
task_vector_dtype=merge_dtype,
|
|
136
|
+
)
|
|
137
|
+
module = module.to(dtype=merge_dtype)
|
|
138
|
+
|
|
139
|
+
print("trainable parameter summary of merged model (TaskWiseMergedModel):")
|
|
140
|
+
print_trainable_parameters(module)
|
|
141
|
+
else:
|
|
142
|
+
module = None
|
|
143
|
+
|
|
144
|
+
with torch.no_grad():
|
|
145
|
+
self.fabric.barrier()
|
|
146
|
+
module = self.fabric.broadcast(module, src=0)
|
|
147
|
+
|
|
148
|
+
return module, mask_model
|
|
149
|
+
|
|
150
|
+
def train_mask(self, module: TaskWiseMergedModel, mask_model: MaskModel):
|
|
151
|
+
"""
|
|
152
|
+
Train the mask model using the provided module.
|
|
153
|
+
|
|
154
|
+
This method configures the optimizer, sets up the mask model, and performs test-time adaptation to train the mask model.
|
|
155
|
+
|
|
156
|
+
Args:
|
|
157
|
+
module (TaskWiseMergedModel): The wrapped model with task-wise weights.
|
|
158
|
+
mask_model (MaskModel): The mask model to be trained.
|
|
159
|
+
"""
|
|
160
|
+
config = self.config
|
|
161
|
+
merge_dtype = parse_dtype(self.merge_dtype)
|
|
162
|
+
log.info(f"Using merge dtype: {merge_dtype}")
|
|
163
|
+
|
|
164
|
+
optimizer: "torch.optim.Optimizer" = instantiate(
|
|
165
|
+
self.optimizer,
|
|
166
|
+
params=filter(lambda p: p.requires_grad, mask_model.parameters()),
|
|
167
|
+
)
|
|
168
|
+
print(f"{optimizer=}")
|
|
169
|
+
if self.lr_scheduler is not None:
|
|
170
|
+
lr_scheduler = instantiate(
|
|
171
|
+
self.lr_scheduler,
|
|
172
|
+
optimizer=optimizer,
|
|
173
|
+
)
|
|
174
|
+
print(f"{lr_scheduler=}")
|
|
175
|
+
else:
|
|
176
|
+
lr_scheduler = None
|
|
177
|
+
|
|
178
|
+
log.info("Setup models and optimizer with Fabric.")
|
|
179
|
+
mask_model, optimizer = self.fabric.setup(mask_model, optimizer)
|
|
180
|
+
|
|
181
|
+
log.info("Move the merged module to the correct device and disable gradients.")
|
|
182
|
+
module.requires_grad_(False)
|
|
183
|
+
module.to(mask_model.device)
|
|
184
|
+
|
|
185
|
+
mask_model.train()
|
|
186
|
+
optimizer.zero_grad()
|
|
187
|
+
for step_idx in (
|
|
188
|
+
pbar := tqdm(
|
|
189
|
+
range(self.config.max_steps if not self.is_debug_mode else 5),
|
|
190
|
+
("[DEBUG MODE] " if self.is_debug_mode else "")
|
|
191
|
+
+ "Concrete TSVM Test-Time Adaptation",
|
|
192
|
+
dynamic_ncols=True,
|
|
193
|
+
disable=not self.fabric.is_global_zero,
|
|
194
|
+
)
|
|
195
|
+
):
|
|
196
|
+
metrics = {}
|
|
197
|
+
# sample a shared mask and merge weights
|
|
198
|
+
with self.profile("sample mask"):
|
|
199
|
+
mask = mask_model.sample_mask(
|
|
200
|
+
mask_type="continuous", temperature=config.temperature
|
|
201
|
+
)
|
|
202
|
+
metrics["train/sparsity"] = mask_sparsity(mask)
|
|
203
|
+
with self.profile("merge weights"):
|
|
204
|
+
# rescale mask
|
|
205
|
+
for name, m in mask.items():
|
|
206
|
+
mask[name] = m / torch.mean(m)
|
|
207
|
+
module.merge_weights(task_vector_mask=mask)
|
|
208
|
+
|
|
209
|
+
# ------ inner optimization goes here ------
|
|
210
|
+
# NOTE:
|
|
211
|
+
# Because the algorithmic parameters of TSVM are assumed to be chosen on a validation test
|
|
212
|
+
# set, we do not need to perform inner optimization here. So here we skip the inner optimization step.
|
|
213
|
+
# ------------------------------------------
|
|
214
|
+
|
|
215
|
+
total_loss = None
|
|
216
|
+
for task in self.modelpool.model_names:
|
|
217
|
+
with self.profile("data loading"):
|
|
218
|
+
batch = next(self.get_shuffled_test_loader_iter(task))
|
|
219
|
+
# NOTE: The labels are not allowed to be used during test-time adaptation
|
|
220
|
+
images = batch[0].to(dtype=merge_dtype)
|
|
221
|
+
with self.profile("forward pass"):
|
|
222
|
+
logits = self.compute_logits(module, images, task)
|
|
223
|
+
loss = entropy_loss(logits)
|
|
224
|
+
total_loss = loss if total_loss is None else total_loss + loss
|
|
225
|
+
|
|
226
|
+
with self.profile("compute grad"):
|
|
227
|
+
self.fabric.backward(total_loss)
|
|
228
|
+
|
|
229
|
+
with self.profile("optimizer step"):
|
|
230
|
+
optimizer.step()
|
|
231
|
+
optimizer.zero_grad()
|
|
232
|
+
|
|
233
|
+
if lr_scheduler is not None:
|
|
234
|
+
lr_scheduler.step()
|
|
235
|
+
|
|
236
|
+
metrics.update({"train/loss": loss.item()})
|
|
237
|
+
self.fabric.log_dict(metrics, step=step_idx)
|
|
238
|
+
pbar.set_postfix(metrics)
|
|
239
|
+
|
|
240
|
+
if (step_idx + 1) % self.config.save_interval == 0:
|
|
241
|
+
with self.profiler.profile("save checkpoint"):
|
|
242
|
+
save_dir = os.path.join(self.fabric.logger.log_dir, "checkpoints")
|
|
243
|
+
if not os.path.exists(save_dir):
|
|
244
|
+
os.makedirs(save_dir, exist_ok=True)
|
|
245
|
+
save_path = os.path.join(save_dir, f"mask_steps_{step_idx}.pt")
|
|
246
|
+
print(f"saving checkpoint to {save_path}")
|
|
247
|
+
state = {"model": mask_model}
|
|
248
|
+
self.fabric.save(save_path, state)
|
|
249
|
+
|
|
250
|
+
# Create or update a symbolic link to the latest checkpoint
|
|
251
|
+
if self.fabric.is_global_zero:
|
|
252
|
+
symlink_path = os.path.join(save_dir, "latest_checkpoint.pt")
|
|
253
|
+
if os.path.exists(symlink_path):
|
|
254
|
+
os.remove(symlink_path)
|
|
255
|
+
os.link(os.path.abspath(save_path), symlink_path)
|
|
256
|
+
|
|
257
|
+
self.print_profile_summary()
|
|
258
|
+
|
|
259
|
+
def run(self, modelpool: OpenCLIPVisionModelPool):
|
|
260
|
+
self.modelpool = modelpool
|
|
261
|
+
merge_dtype = parse_dtype(self.merge_dtype)
|
|
262
|
+
|
|
263
|
+
with self.profile("setup models"):
|
|
264
|
+
module, mask_model = self.setup_models()
|
|
265
|
+
self.setup_zero_shot_classification_head(freeze=True, dtype=merge_dtype)
|
|
266
|
+
|
|
267
|
+
if self.mask_checkpoint is None:
|
|
268
|
+
if not self.skip_training:
|
|
269
|
+
clear_cuda_cache()
|
|
270
|
+
self.train_mask(module, mask_model=mask_model)
|
|
271
|
+
else:
|
|
272
|
+
if self.fabric.is_global_zero:
|
|
273
|
+
print("loading mask from checkpoint", self.mask_checkpoint)
|
|
274
|
+
self.fabric.load(self.mask_checkpoint, {"model": mask_model})
|
|
275
|
+
|
|
276
|
+
with torch.no_grad():
|
|
277
|
+
clear_cuda_cache()
|
|
278
|
+
mask = mask_model.sample_mask(
|
|
279
|
+
mask_type=self.eval_mask_type, temperature=self.temperature
|
|
280
|
+
)
|
|
281
|
+
# rescale mask
|
|
282
|
+
for name, m in mask.items():
|
|
283
|
+
mask[name] = m / torch.mean(m)
|
|
284
|
+
model = module.merge_and_unload(mask)
|
|
285
|
+
return model.to(dtype=torch.float32)
|
|
@@ -79,28 +79,6 @@ class ContinualDOPForCLIP(BaseAlgorithm, LightningFabricMixin):
|
|
|
79
79
|
), "The alpha should be in the range of [0, 1]"
|
|
80
80
|
super().__init__(**kwargs)
|
|
81
81
|
|
|
82
|
-
def print_params(self, pretrained_model):
|
|
83
|
-
total_params = 0
|
|
84
|
-
linear_params = 0
|
|
85
|
-
linear_weight_params = 0
|
|
86
|
-
for module_name, module in pretrained_model.named_modules():
|
|
87
|
-
if not is_leaf_module(module):
|
|
88
|
-
continue
|
|
89
|
-
if isinstance(module, nn.Linear):
|
|
90
|
-
linear_params += sum(p.numel() for n, p in module.named_parameters())
|
|
91
|
-
linear_weight_params += sum(
|
|
92
|
-
p.numel() for n, p in module.named_parameters() if "weight" in n
|
|
93
|
-
)
|
|
94
|
-
total_params += sum(p.numel() for p in module.parameters())
|
|
95
|
-
|
|
96
|
-
linear_ratio = linear_params / total_params * 100
|
|
97
|
-
linear_weight_ratio = linear_weight_params / total_params * 100
|
|
98
|
-
print(f"Total Parameters: {total_params}")
|
|
99
|
-
print(f"Linear Parameters: {linear_params}")
|
|
100
|
-
print(f"Linear Weight Parameters: {linear_weight_params}")
|
|
101
|
-
print(f"Linear Ratio: {linear_ratio:.2f}%")
|
|
102
|
-
print(f"Linear Weight Ratio: {linear_weight_ratio:.2f}%")
|
|
103
|
-
|
|
104
82
|
def run(self, modelpool: BaseModelPool):
|
|
105
83
|
if self.seed is not None:
|
|
106
84
|
L.seed_everything(self.seed)
|