fusion-bench 0.2.29__tar.gz → 0.2.30__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.29 → fusion_bench-0.2.30}/PKG-INFO +7 -7
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/README.md +6 -6
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/__init__.py +9 -1
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/base_algorithm.py +29 -19
- fusion_bench-0.2.30/fusion_bench/metrics/model_kinship/__init__.py +2 -0
- fusion_bench-0.2.30/fusion_bench/metrics/model_kinship/calculate.py +77 -0
- fusion_bench-0.2.30/fusion_bench/metrics/model_kinship/calculate_split.py +171 -0
- fusion_bench-0.2.30/fusion_bench/metrics/model_kinship/utility.py +184 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/masks/mask_model.py +8 -2
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/open_clip/modeling.py +7 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/wrappers/layer_wise_fusion.py +41 -3
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/wrappers/task_wise_fusion.py +14 -3
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/scripts/cli.py +14 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/devices.py +3 -1
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/instantiate_utils.py +29 -18
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/misc.py +16 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/rich_utils.py +123 -6
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench.egg-info/PKG-INFO +7 -7
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench.egg-info/SOURCES.txt +4 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/pyproject.toml +1 -1
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/LICENSE +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/__main__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/_get_started/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/_get_started/greeting_program.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/method/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/method/base_algorithm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/modelpool/AutoModelForSeq2SeqLM.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/modelpool/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/modelpool/base_pool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/modelpool/huggingface_clip_vision.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/taskpool/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/taskpool/base_pool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/taskpool/clip_image_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/compat/taskpool/flan_t5_glue_text_generation.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/constants/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/constants/banner.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/constants/clip_vision.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/constants/paths.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/constants/runtime.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/arc_agi/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/arc_agi/arc.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/arc_agi/arc_agi.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/arc_agi/augmenters.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/arc_agi/messagers.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/arc_agi/np_cache.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/arc_agi/preprocess.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/arc_agi/representers.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/clip_dataset.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/fer2013.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/gpt2_glue.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/gsm8k.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/image_corruption/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/image_corruption/make_corruption.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/image_dataset.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/imdb.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/alpaca.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/collate.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/metamathqa.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/openai.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/preference_700k.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/sharegpt.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/squad.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/stanford_shp.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/ultrachat.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/llama/wikitext.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/dataset/nyuv2.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/ada_svd/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/ada_svd/clip_vision.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/clip_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/clip_task_wise_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/entropy_loss.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/flan_t5_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/gpt2_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/llama_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/resnet_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/task_wise_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/adamerging/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/analysis/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/analysis/task_vector_cos_similarity.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/analysis/task_vector_violin_plot.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/bitdelta/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/bitdelta/bitdelta.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/bitdelta/bitdelta_utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/bitdelta/bitdelta_utils/binary_gemm_kernel.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/bitdelta/bitdelta_utils/data.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/bitdelta/bitdelta_utils/diff.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/classification/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/classification/clip_finetune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/classification/continual_clip_finetune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/classification/image_classification_finetune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/concrete_subspace/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/concrete_subspace/clip_concrete_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/concrete_subspace/clip_concrete_task_arithmetic.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/concrete_subspace/clip_post_defense.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/concrete_subspace/clip_safe_concrete_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dare/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dare/simple_average.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dare/task_arithmetic.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dare/ties_merging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dare/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dawe/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dawe/dawe_for_clip.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dawe/warppers/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dawe/warppers/dawe_model.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/depth_upscaling/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/depth_upscaling/depth_upscaling.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/depth_upscaling/depth_upscaling_for_llama.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/doge_ta/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/doge_ta/clip_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/doge_ta/doge_ta.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/doge_ta/layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dop/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dop/dop.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dop/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dop/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/dummy.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/ensemble.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/expert_sparsity/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/expert_sparsity/mixtral/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/expert_sparsity/mixtral/dynamic_skipping.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/expert_sparsity/mixtral/layer_wise_pruning.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/expert_sparsity/mixtral/progressive_pruning.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/expert_sparsity/utils/calibration_data.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/fisher_merging/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/fisher_merging/clip_fisher_merging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/fisher_merging/fisher_merging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/fisher_merging/gpt2_fisher_merging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/fw_merging/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/fw_merging/fw_hard.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/fw_merging/fw_soft.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/fw_merging/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/clip_layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/clip_task_wise_gossip.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/entropy_loss.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/flan_t5_layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/task_wise_gossip.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/gossip/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/isotropic_merging/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/isotropic_merging/iso.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/isotropic_merging/iso_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/knots/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/knots/knots_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/linear/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/linear/expo.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/linear/linear_interpolation.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/linear/llama_expo.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/linear/simple_average_for_causallm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/linear/task_arithmetic_for_causallm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/linear/ties_merging_for_causallm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/lm_finetune/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/lm_finetune/bradley_terry_rm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/lm_finetune/causal_lm_pretrain.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/lm_finetune/fullfinetune_sft.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/lm_finetune/peftfinetune_sft.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/mixture_of_experts/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/mixture_of_experts/mixtral_merging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/mixture_of_experts/mixtral_upcycling.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/model_recombination.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/model_stock/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/model_stock/model_stock.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/hooks/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/hooks/deepseek_v2.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/hooks/hook.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/hooks/mixtral.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/moe_pruner.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/utils/data.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/utils/layerwrapper.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/utils/prune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/moe_pruner/utils/score.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/opcm/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/opcm/opcm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/opcm/task_arithmetic.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/opcm/ties_merging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/opcm/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/opcm/weight_average.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/llama_magnitude_prune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/llama_random_prune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/llama_sparsegpt_prune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/llama_wanda_prune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/magnitude_diff_pruning.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/prune_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/sparsegpt_utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/sparsegpt_utils/sparsegpt.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/wanda_utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/wanda_utils/ablate.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/wanda_utils/data.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/wanda_utils/eval.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/wanda_utils/layerwrapper.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/wanda_utils/prune.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/wanda_utils/prune_opt.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pruning/wanda_utils/sparsegpt.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pwe_moe/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pwe_moe/clip_pwe_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pwe_moe/module.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pwe_moe/openclip_pwe_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pwe_moe/phn/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pwe_moe/phn/solvers.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/pwe_moe/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/randes/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/randes/base_algorithm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/randes/modelsoup.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/randes/task_arithmetic.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/rankone_moe/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/rankone_moe/clip_rankone_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/rankone_moe/rankone_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/regmean/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/regmean/clip_regmean.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/regmean/gpt2_regmean.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/regmean/regmean.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/regmean/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/regmean_plusplus/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/regmean_plusplus/clip_regmean_plusplus.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/regmean_plusplus/regmean_plusplus.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/simple_average.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/slerp/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/slerp/slerp.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/slerp/slerp_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/smile_upscaling/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/smile_upscaling/causal_lm_upscaling.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/smile_upscaling/error_accumulation.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/smile_upscaling/projected_energy.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/smile_upscaling/singular_projection_merging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/smile_upscaling/smile_mistral_upscaling.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/smile_upscaling/smile_qwen2_upscaling.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/smile_upscaling/smile_upscaling.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/sparse_we_moe/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/sparse_we_moe/sparse_clip_we_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/sparse_we_moe/sparse_we_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/sparselo/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/sparselo/sparselo.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/surgery/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/surgery/clip_layer_wise_adamerging_surgery.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/tall_mask/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/tall_mask/task_arithmetic.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/tall_mask/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_arithmetic/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_arithmetic/task_arithmetic.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_singular_vector/TSVC.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_singular_vector/TSVM.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_singular_vector/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_singular_vector/utils/TSVC_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_singular_vector/utils/TSVM_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_singular_vector/utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/task_singular_vector/utils/task_singular_interference.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/ties_merging/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/ties_merging/ties_merging.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/ties_merging/ties_merging_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/trust_region/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/trust_region/clip_task_arithmetic.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/trust_region/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/we_moe/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/we_moe/clip_we_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/we_moe/entropy_loss.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/we_moe/flan_t5_we_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/we_moe/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/we_moe/we_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/weighted_average/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/weighted_average/llama.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/weighted_average/weighted_average.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/wudi/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/method/wudi/wudi.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/continual_learning/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/continual_learning/backward_transfer.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/nyuv2/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/nyuv2/depth.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/nyuv2/loss.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/nyuv2/noise.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/nyuv2/normal.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/nyuv2/segmentation.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/text_to_image_generation/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/text_to_image_generation/aesthetic_scorer.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/text_to_image_generation/compressibility.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/metrics/text_to_image_generation/pickscore_scorer.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/clip_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/fabric_training.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/hydra_config.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/lightning_fabric.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/openclip_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/optim/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/optim/adamw_with_warmup.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/pyinstrument.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/rich_live.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/serialization.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/mixins/simple_profiler.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/PeftModelForSeq2SeqLM.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/base_pool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/causal_lm/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/causal_lm/causal_lm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/clip_vision/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/clip_vision/modelpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/convnext_for_image_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/dinov2_for_image_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/huggingface_automodel.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/huggingface_gpt2_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/lazy_state_dict_pool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/nyuv2_modelpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/openclip_vision/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/openclip_vision/modelpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/resnet_for_image_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/seq2seq_lm/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/seq2seq_lm/modelpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/seq_classification_lm/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/seq_classification_lm/reward_model.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/modelpool/seq_classification_lm/seq_classification_lm.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/chat_templates/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/chat_templates/llama_3_Instruct.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/chat_templates/load_tokenizer.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/expert_sparsity/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/expert_sparsity/mixtral/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/expert_sparsity/mixtral/dataset.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/expert_sparsity/mixtral/modeling_mixtral.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/expert_sparsity/mixtral/wrapper.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/hf_clip.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/hf_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/linearized/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/linearized/linearized_model_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/linearized/vision_model.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/model_utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/model_utils/embedding.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/model_utils/liger_kernel.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/model_utils/misc.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/model_utils/mod.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/model_utils/visual.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/patcher.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/llama/tokenizer_loader.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/masks/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/model_card_templates/default.md +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_deepseek_v2/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_deepseek_v2/configuration_deepseek.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_deepseek_v2/modeling_deepseek.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_deepseek_v2/tokenization_deepseek_fast.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_losparse_llama/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_losparse_llama/configuration_losparse_llama.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_losparse_llama/losparse_linear.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_losparse_llama/modeling_losparse_llama.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_losparse_llama/register.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_losparse_llama/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_gemma2/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_gemma2/configuration_smile_gemma2.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_gemma2/modeling_smile_gemma2.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_gemma2/register.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_llama/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_llama/configuration_smile_llama.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_llama/modeling_smile_llama.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_llama/register.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_mistral/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_mistral/configuration_smile_mistral.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_mistral/modeling_smile_mistral.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_mistral/register.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_qwen2/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_qwen2/configuration_smile_qwen2.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_qwen2/modeling_smile_qwen2.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/modeling_smile_qwen2/register.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/nyuv2/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/nyuv2/aspp.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/nyuv2/lightning_module.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/nyuv2/resnet.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/nyuv2/resnet_dilated.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/open_clip/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/open_clip/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/open_clip/variables_and_paths.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/parameter_dict.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/rankone_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/separate_io.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/smile_moe/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/smile_moe/linear_from_hf_config.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/smile_moe/linear_from_module.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/smile_moe/utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/smile_moe/utils/svd_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/sparse_we_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/surgery/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/surgery/surgerymodelwrapper.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/we_moe.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/wrappers/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/wrappers/ensemble.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/models/wrappers/layer_wise_fusion_doge_ta.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/optim/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/optim/exception.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/optim/lr_scheduler/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/optim/lr_scheduler/linear_warmup.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/optim/lr_scheduler/utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/optim/lr_scheduler/utils/visualization.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/optim/mezo.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/optim/muon.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/programs/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/programs/base_program.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/programs/fabric_fusion_program.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/programs/fusion_program.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/scripts/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/scripts/clip/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/scripts/clip/convert_checkpoint.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/scripts/imgui.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/scripts/nyuv2_mtl_train.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/scripts/webui.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/base_pool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/clip_vision/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/clip_vision/clip_rankone_moe_taskpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/clip_vision/clip_smile_taskpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/clip_vision/clip_sparse_wemoe_taskpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/clip_vision/taskpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/clip_vision/utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/clip_vision/utils/routing_analysis_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/dummy.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/gpt2_text_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/llama/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/llama/reward_model.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/llama/test_generation.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/lm_eval_harness/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/lm_eval_harness/taskpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/nyuv2_taskpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/openclip_vision/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/openclip_vision/openclip_taskpool.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/taskpool/resnet_for_image_classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/base_task.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/classification.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/cifar10.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/cifar100.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/clip_dataset.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/cub_200_2011.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/dtd.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/emnist_letters.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/emnist_mnist.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/eurosat.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/fashion_mnist.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/fer2013.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/flower102.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/food101.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/gtsrb.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/imagenet.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/kmnist.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/mnist.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/mongo_leaf_disease.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/oxford_iiit_pet.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/pcam.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/rendered_sst2.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/resisc45.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/stanford_cars.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/stl10.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/sun397.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/svhn.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/clip_classification/tiny_imagenet.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/flan_t5_text_generation/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/flan_t5_text_generation/datasets_preprocess.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/flan_t5_text_generation/glue_evaluation.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/flan_t5_text_generation/glue_load_dataset.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/flan_t5_text_generation/glue_preprocessors.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/tasks/flan_t5_text_generation/glue_prompt_templates.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/cache_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/data.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/dict.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/dtype.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/expr.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/fabric.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/functools.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/hydra_utils.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/json.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/lazy_imports.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/lazy_state_dict.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/modelscope.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/packages.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/parameters.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/path.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/plot/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/plot/color_data.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/plot/token.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/plot/token_notebook.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/pylogger.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/set.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/state_dict_arithmetic.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/strenum/__init__.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/strenum/_name_mangler.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/strenum/_version.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/tensorboard.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/timer.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/type.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench/utils/validation.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench.egg-info/dependency_links.txt +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench.egg-info/entry_points.txt +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench.egg-info/requires.txt +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench.egg-info/top_level.txt +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/README.md +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/_get_started/clip_evaluate_single_model.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/_get_started/clip_simple_average.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/_get_started/clip_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/_get_started/greeting_program.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/_get_started/llm_slerp.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/README.md +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/TALL10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/TALL12.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/TALL16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/TALL18.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/cub-200-2011.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/emnist_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/mango-leaf-disease.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/test/tiny-imagenet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/TALL10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/TALL12.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/TALL16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/TALL18.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/cub-200-2011.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/emnist_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/mango-leaf-disease.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/train/tiny-imagenet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/image_classification/val/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/llm_sft/alpaca_cleaned.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/llm_sft/ultrachat_200k.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/question_answering/search_qa.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/question_answering/test/search_qa.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/question_answering/train/MetaMathQA.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/question_answering/train/search_qa.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/question_answering/val/search_qa.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/summarization/test/xsum.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/summarization/train/xsum.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/summarization/val/xsum.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/summarization/xsum.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/text_generation/test/gsm-hard.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/text_generation/test/gsm8k.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/text_generation/test/gsm8k_question_label.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/text_generation/train/CodeAlpaca-20k.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/text_generation/train/gsm8k.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/dataset/text_generation/train/gsm8k_question_label.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/auto.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/llama_ddp.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/llama_fsdp.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/llama_peft_fsdp.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/loggers/csv_logger.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/loggers/mlflow_logger.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/loggers/swandb_logger.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/loggers/tensorboard_logger.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/loggers/wandb_logger.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/strategy/deepspeed.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/strategy/llama_fsdp.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric/strategy/llama_peft_fsdp.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/fabric_model_fusion.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/hydra/default.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/hydra/help/fusion_bench_help.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/hydra/job_logging/rich_logging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/llama_full_finetune.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/llama_magnitude_pruning.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/llama_model_fusion.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/ada_svd/clip_vision.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/adamerging/clip.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/adamerging/layer_wise_flan_t5.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/adamerging/layer_wise_gpt2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/adamerging/llama_sft.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/adamerging/resnet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/analysis/task_vector_cos_similarity.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/analysis/task_vector_violin_plot.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/bitdelta/bitdelta.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/classification/clip_continual_finetune.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/classification/clip_finetune.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/classification/image_classification_finetune.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/classification/image_classification_finetune_test.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/concrete_subspace/clip_concrete_layer_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/concrete_subspace/clip_concrete_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/concrete_subspace/clip_concrete_task_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/concrete_subspace/clip_post_defense_AWM.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/concrete_subspace/clip_post_defense_SAU.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/concrete_subspace/clip_safe_concrete_layer_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/concrete_subspace/clip_safe_concrete_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/dare/simple_average.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/dare/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/dare/ties_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/dawe/dawe_for_clip.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/depth_upscaling.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/doge_ta/doge_ta.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/dop/dop.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/dummy.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/ensemble/max_model_predictor.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/ensemble/simple_ensemble.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/ensemble/weighted_ensemble.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/expert_sparsity/README.md +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/expert_sparsity/mixtral.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/fisher_merging/clip_fisher_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/fisher_merging/fisher_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/fisher_merging/gpt2_fisher_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/fw_merging/fw_hard.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/fw_merging/fw_soft.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/gossip/layer_wise_clip.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/gossip/layer_wise_flan_t5.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/isotropic_merging/iso_c.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/isotropic_merging/iso_cts.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/expo.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/linear_interpolation.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/llama_expo.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/llama_expo_with_dare.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/simple_average_for_causallm.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/task_arithmetic_for_causallm.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/ties_merging_for_causallm.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/weighted_average.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/linear/weighted_average_for_llama.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/lm_finetune/bradley_terry_rm.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/lm_finetune/fullfinetune_sft.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/lm_finetune/peftfinetune_sft.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/mixtral_moe_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/mixtral_moe_upscaling.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/model_recombination.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/model_stock/model_stock.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/moe_pruner/moe_pruner.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/opcm/opcm.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/opcm/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/opcm/ties_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/opcm/weight_average.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/pruning/llama_magnitude_pruning.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/pruning/llama_random_pruning.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/pruning/llama_sparsegpt_pruning.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/pruning/llama_wanda_pruning.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/pruning/magnitude_diff_pruning.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/pwe_moe/epo_for_openclip.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/pwe_moe/ls_for_openclip.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/pwe_moe/pwe_moe_ls_for_clip.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/randes/superposed_model_soup.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/randes/superposed_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/randes/superposed_task_arithmetic_lora.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/rankone_moe/rankone_moe.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/regmean/clip_regmean.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/regmean/gpt2_regmean.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/regmean/regmean.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/regmean_plusplus/clip_regmean_plusplus.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/simple_average.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/slerp/slerp.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/slerp/slerp_lm.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/smile_upscaling/causal_lm_upscaling.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/smile_upscaling/error_accumulation.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/smile_upscaling/projected_energy.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/smile_upscaling/singular_projection_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/smile_upscaling/smile_mistral_upscaling.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/smile_upscaling/smile_qwen2_upscaling.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/smile_upscaling/smile_upscaling.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/sparselo_pruning/llama_iterative_sparselo.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/sparselo_pruning/llama_pcp_sparselo.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/sparselo_pruning/llama_sparselo.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/surgery/adamerging_surgery.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/tall_mask/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/task_singular_vector/TaskSingularVectorMerging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/ties_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/trust_region/clip_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/wemoe/flan_t5_weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/wemoe/sparse_weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/wemoe/weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/method/wudi/wudi.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/README.md +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL12.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL18.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/download_TALL20_models.sh +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/clip-vit/generate_vit_model_config.sh +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-cola.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-cola_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mnli.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mrpc.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mrpc_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qnli.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qqp.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qqp_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-rte.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-rte_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-sst2_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-stsb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-stsb_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-cola_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-mnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-mrpc_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-qnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-qqp_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-rte_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-sst2_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-stsb_lora-16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model/flan-t5/generate_flan-t5.sh +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/model_fusion.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/_template.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8_lora.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_individual.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_individual_lora.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8_control_task.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL12.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL18.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_cars_and_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_generalization_exp1.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_generalization_exp2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_individual.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_mtl.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_robustness_clean.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_single_finetuned.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_single_task_projection.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_and_cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_and_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_cars_and_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_svhn_and_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_two_tasks_control_task.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_individual.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_math_and_code.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_three_models.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-7B-math_and_coder.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/deepseek-v2-lite.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/llama-7b_3-models_v1.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/llama_alpaca_cleaned.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/llama_codealpaca.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/llama_for_causallm.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/llama_metamathqa.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/llama_ultrachat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.1-8B-Instruct.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.1-8B.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.2-3B-Instruct.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.2-3B.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-2b-it.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-2b.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-9b-it.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-9b.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mistral-7b.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mixtral-8x7b.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/mixtral_moe_merging.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/qwen2_math_1.5B_and_R1.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/simle_mixtral_exp_v4.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/single_llama_model.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/CausalLMPool/vicuna-7b-v1.5.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ConvNextForImageClassification/convnext-base-224.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/Dinov2ForImageClassification/dinov2-base-imagenet1k-1-layer.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/README.md +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-16_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_cars_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_sun397_cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_sun397_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_individual.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-L-14_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/_generate_config.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/Seq2SeqLMPool/_template.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_lora16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_lora16_tta.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_tta.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_individual.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-large_glue_lora16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/SequenceClassificationModelPool/llama_preference700k.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/SequenceClassificationModelPool/roberta-base_glue.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/SequenceClassificationModelPool/single_reward_model.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/automodelpool.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/gpt-2_glue.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/nyuv2_modelpool.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/smile_mistral_exp_v1.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/smile_mistral_exp_v2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/smile_mistral_exp_v3.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/modelpool/smile_mistral_exp_v4.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/nyuv2_config.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/nyuv2_mtl_train.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/path/default.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/_template.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-base-patch32_svhn_and_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_B16.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_L14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_val.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_with_control_task.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TALL14.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TALL20.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_cifar10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_cifar100.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_dtd.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_eurosat.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_fer2013.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_food101.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_gtsrb.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_kmnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_mnist.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford_flowers102_val.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_pcam.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_resisc45.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_stl10.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_sun397.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_svhn.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip_rankone_wemoe_clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip_sparse_wemoe_clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/LMEvalHarnessTaskPool/lm_eval.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-B-16_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-B-32_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-L-14_TA8.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/clip-vit-base-patch32_robustness_clean.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/dummy.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/flan-t5_glue_text_generation.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/gpt-2_glue.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/nyuv2_taskpool.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/fusion_bench_config/taskpool/reward_model_evaluation.yaml +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/setup.cfg +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/tests/test_depth_upscaling.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/tests/test_simple_average.py +0 -0
- {fusion_bench-0.2.29 → fusion_bench-0.2.30}/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.30
|
|
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
|
|
@@ -255,9 +255,9 @@ First, create a new Python file for the algorithm in the `fusion_bench/method` d
|
|
|
255
255
|
Following the naming convention, the file should be named `{method_name_or_class}/{variant}.py`.
|
|
256
256
|
|
|
257
257
|
```python
|
|
258
|
-
from fusion_bench import
|
|
258
|
+
from fusion_bench import BaseAlgorithm, BaseModelPool
|
|
259
259
|
|
|
260
|
-
class DerivedModelFusionAlgorithm(
|
|
260
|
+
class DerivedModelFusionAlgorithm(BaseAlgorithm):
|
|
261
261
|
"""
|
|
262
262
|
An example of a derived model fusion algorithm.
|
|
263
263
|
"""
|
|
@@ -265,7 +265,7 @@ class DerivedModelFusionAlgorithm(BaseModelFusionAlgorithm):
|
|
|
265
265
|
# _config_mapping maps the attribution to the corresponding key in the configuration file.
|
|
266
266
|
# this is optional and can be used to serialize the object to a configuration file.
|
|
267
267
|
# `self.config.hyperparam_1` will be mapped to the attribute `hyperparam_attr_1`.
|
|
268
|
-
_config_mapping =
|
|
268
|
+
_config_mapping = BaseAlgorithm._config_mapping | {
|
|
269
269
|
"hyperparam_attr_1": "hyperparam_1",
|
|
270
270
|
"hyperparam_attr_2": "hyperparam_2",
|
|
271
271
|
}
|
|
@@ -344,9 +344,9 @@ If you find this benchmark useful, please consider citing our work:
|
|
|
344
344
|
```bibtex
|
|
345
345
|
@article{tang2024fusionbench,
|
|
346
346
|
title={Fusionbench: A comprehensive benchmark of deep model fusion},
|
|
347
|
-
author={Tang, Anke and Shen, Li and Luo, Yong and Hu, Han and Du, Bo and Tao, Dacheng},
|
|
348
|
-
journal={
|
|
349
|
-
year={
|
|
347
|
+
author={Tang, Anke and Shen, Li and Luo, Yong and Yang, Enneng and Hu, Han and Zhang, Lefei and Du, Bo and Tao, Dacheng},
|
|
348
|
+
journal={Journal of Machine Learning Research},
|
|
349
|
+
year={2025}
|
|
350
350
|
}
|
|
351
351
|
```
|
|
352
352
|
|
|
@@ -215,9 +215,9 @@ First, create a new Python file for the algorithm in the `fusion_bench/method` d
|
|
|
215
215
|
Following the naming convention, the file should be named `{method_name_or_class}/{variant}.py`.
|
|
216
216
|
|
|
217
217
|
```python
|
|
218
|
-
from fusion_bench import
|
|
218
|
+
from fusion_bench import BaseAlgorithm, BaseModelPool
|
|
219
219
|
|
|
220
|
-
class DerivedModelFusionAlgorithm(
|
|
220
|
+
class DerivedModelFusionAlgorithm(BaseAlgorithm):
|
|
221
221
|
"""
|
|
222
222
|
An example of a derived model fusion algorithm.
|
|
223
223
|
"""
|
|
@@ -225,7 +225,7 @@ class DerivedModelFusionAlgorithm(BaseModelFusionAlgorithm):
|
|
|
225
225
|
# _config_mapping maps the attribution to the corresponding key in the configuration file.
|
|
226
226
|
# this is optional and can be used to serialize the object to a configuration file.
|
|
227
227
|
# `self.config.hyperparam_1` will be mapped to the attribute `hyperparam_attr_1`.
|
|
228
|
-
_config_mapping =
|
|
228
|
+
_config_mapping = BaseAlgorithm._config_mapping | {
|
|
229
229
|
"hyperparam_attr_1": "hyperparam_1",
|
|
230
230
|
"hyperparam_attr_2": "hyperparam_2",
|
|
231
231
|
}
|
|
@@ -304,9 +304,9 @@ If you find this benchmark useful, please consider citing our work:
|
|
|
304
304
|
```bibtex
|
|
305
305
|
@article{tang2024fusionbench,
|
|
306
306
|
title={Fusionbench: A comprehensive benchmark of deep model fusion},
|
|
307
|
-
author={Tang, Anke and Shen, Li and Luo, Yong and Hu, Han and Du, Bo and Tao, Dacheng},
|
|
308
|
-
journal={
|
|
309
|
-
year={
|
|
307
|
+
author={Tang, Anke and Shen, Li and Luo, Yong and Yang, Enneng and Hu, Han and Zhang, Lefei and Du, Bo and Tao, Dacheng},
|
|
308
|
+
journal={Journal of Machine Learning Research},
|
|
309
|
+
year={2025}
|
|
310
310
|
}
|
|
311
311
|
```
|
|
312
312
|
|
|
@@ -144,7 +144,15 @@ _extra_objects = {
|
|
|
144
144
|
|
|
145
145
|
if TYPE_CHECKING:
|
|
146
146
|
from .ada_svd import AdaSVDMergingForCLIPVisionModel
|
|
147
|
-
from .adamerging import
|
|
147
|
+
from .adamerging import (
|
|
148
|
+
CLIPLayerWiseAdaMergingAlgorithm,
|
|
149
|
+
CLIPTaskWiseAdaMergingAlgorithm,
|
|
150
|
+
FlanT5LayerWiseAdaMergingAlgorithm,
|
|
151
|
+
GPT2LayerWiseAdaMergingAlgorithm,
|
|
152
|
+
LayerWiseAdaMergingForLlamaSFT,
|
|
153
|
+
ResNetLayerWiseAdamerging,
|
|
154
|
+
ResNetTaskWiseAdamerging,
|
|
155
|
+
)
|
|
148
156
|
from .analysis import TaskVectorCosSimilarity, TaskVectorViolinPlot
|
|
149
157
|
from .base_algorithm import BaseAlgorithm, BaseModelFusionAlgorithm
|
|
150
158
|
from .bitdelta import BitDeltaAlgorithm
|
|
@@ -40,6 +40,7 @@ from typing import Optional # noqa: F401
|
|
|
40
40
|
|
|
41
41
|
from fusion_bench.mixins import BaseYAMLSerializable
|
|
42
42
|
from fusion_bench.modelpool import BaseModelPool
|
|
43
|
+
from fusion_bench.utils.misc import DeprecationWarningMeta
|
|
43
44
|
|
|
44
45
|
__all__ = ["BaseAlgorithm", "BaseModelFusionAlgorithm"]
|
|
45
46
|
|
|
@@ -202,27 +203,36 @@ class BaseAlgorithm(BaseYAMLSerializable):
|
|
|
202
203
|
pass
|
|
203
204
|
|
|
204
205
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
206
|
+
# Create a deprecated wrapper class that inherits from BaseAlgorithm
|
|
207
|
+
class BaseModelFusionAlgorithm(BaseAlgorithm, metaclass=DeprecationWarningMeta):
|
|
208
|
+
"""
|
|
209
|
+
Alias for BaseAlgorithm class.
|
|
208
210
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
tasks, while others may prefer the shorter 'BaseAlgorithm' name.
|
|
211
|
+
.. deprecated::
|
|
212
|
+
BaseModelFusionAlgorithm is deprecated and will be removed in a future version.
|
|
213
|
+
Use :class:`BaseAlgorithm` instead.
|
|
213
214
|
|
|
214
|
-
|
|
215
|
+
This alias was provided for backward compatibility and semantic clarity.
|
|
216
|
+
Both names refer to the same base class and can be used interchangeably,
|
|
217
|
+
but BaseAlgorithm is now the preferred name for all implementations.
|
|
215
218
|
|
|
216
|
-
Examples:
|
|
217
|
-
|
|
218
|
-
>>> class MyAlgorithm(BaseAlgorithm):
|
|
219
|
-
... def run(self, modelpool): pass
|
|
219
|
+
Examples:
|
|
220
|
+
Preferred (using BaseAlgorithm):
|
|
220
221
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
... def run(self, modelpool): pass
|
|
222
|
+
>>> class MyAlgorithm(BaseAlgorithm):
|
|
223
|
+
... def run(self, modelpool): pass
|
|
224
224
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
225
|
+
Deprecated (using BaseModelFusionAlgorithm):
|
|
226
|
+
|
|
227
|
+
>>> class MyAlgorithm(BaseModelFusionAlgorithm): # Will trigger deprecation warning
|
|
228
|
+
... def run(self, modelpool): pass
|
|
229
|
+
|
|
230
|
+
Note:
|
|
231
|
+
New implementations should use :class:`BaseAlgorithm` exclusively.
|
|
232
|
+
The BaseModelFusionAlgorithm alias will be removed in a future release.
|
|
233
|
+
|
|
234
|
+
Warning:
|
|
235
|
+
Using BaseModelFusionAlgorithm will trigger a DeprecationWarning.
|
|
236
|
+
"""
|
|
237
|
+
|
|
238
|
+
pass
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
from typing import List
|
|
3
|
+
|
|
4
|
+
import numpy
|
|
5
|
+
import torch
|
|
6
|
+
|
|
7
|
+
from .utility import Metric
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def cosine_similarity(a, b):
|
|
11
|
+
similarity = numpy.sqrt(numpy.dot(a, b) ** 2 / (numpy.dot(a, a) * numpy.dot(b, b)))
|
|
12
|
+
return similarity
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def calculate_model_kinship(
|
|
16
|
+
delta1: numpy.ndarray, delta2: numpy.ndarray, metrics: List[str]
|
|
17
|
+
) -> dict:
|
|
18
|
+
"""
|
|
19
|
+
Calculate model kinship using specified metrics.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
delta1: Delta parameters for first model
|
|
23
|
+
delta2: Delta parameters for second model
|
|
24
|
+
metrics: List of metrics to calculate
|
|
25
|
+
|
|
26
|
+
Returns:
|
|
27
|
+
dict: Dictionary of metric names and their calculated values
|
|
28
|
+
"""
|
|
29
|
+
results = {}
|
|
30
|
+
for metric in metrics:
|
|
31
|
+
try:
|
|
32
|
+
if metric not in Metric.list():
|
|
33
|
+
raise ValueError(f"Unsupported metric: {metric}")
|
|
34
|
+
results[metric] = calculate_metric(delta1, delta2, metric)
|
|
35
|
+
except Exception as e:
|
|
36
|
+
results[metric] = f"Error calculating {metric}: {str(e)}"
|
|
37
|
+
return results
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def calculate_metric(
|
|
41
|
+
d_vector_1: torch.Tensor, d_vector_2: torch.Tensor, metric: str
|
|
42
|
+
) -> str:
|
|
43
|
+
"""
|
|
44
|
+
Calculate the specified metric between two delta vectors.
|
|
45
|
+
|
|
46
|
+
Args:
|
|
47
|
+
d_vector_1 (torch.Tensor): Delta parameters for model 1.
|
|
48
|
+
d_vector_2 (torch.Tensor): Delta parameters for model 2.
|
|
49
|
+
metric (str): The metric to calculate ('pcc', 'ed', 'cs').
|
|
50
|
+
|
|
51
|
+
Returns:
|
|
52
|
+
str: A formatted string with the result of the chosen metric.
|
|
53
|
+
"""
|
|
54
|
+
logging.info(f"Starting calculation of {metric.upper()} metric...")
|
|
55
|
+
|
|
56
|
+
# Pearson Correlation Coefficient (PCC)
|
|
57
|
+
if metric == "pcc":
|
|
58
|
+
# Stack the two vectors and calculate the Pearson correlation coefficient
|
|
59
|
+
stack = torch.stack((d_vector_1, d_vector_2), dim=0)
|
|
60
|
+
pcc = torch.corrcoef(stack)[0, 1].item()
|
|
61
|
+
return f"Model Kinship based on Pearson Correlation Coefficient: {pcc}"
|
|
62
|
+
|
|
63
|
+
# Euclidean Distance (ED)
|
|
64
|
+
elif metric == "ed":
|
|
65
|
+
# Compute the Euclidean distance between the vectors
|
|
66
|
+
distance = torch.dist(d_vector_1, d_vector_2).item()
|
|
67
|
+
return f"Model Kinship based on Euclidean Distance: {distance}"
|
|
68
|
+
|
|
69
|
+
# Cosine Similarity (CS)
|
|
70
|
+
elif metric == "cs":
|
|
71
|
+
# Compute cosine similarity
|
|
72
|
+
cs = cosine_similarity(d_vector_1, d_vector_2)
|
|
73
|
+
return f"Model Kinship based on Cosine Similarity: {cs}"
|
|
74
|
+
|
|
75
|
+
# If metric is not recognized
|
|
76
|
+
else:
|
|
77
|
+
return "Invalid metric specified."
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
from typing import Dict, List
|
|
3
|
+
|
|
4
|
+
import numpy
|
|
5
|
+
import torch
|
|
6
|
+
from tqdm import tqdm
|
|
7
|
+
|
|
8
|
+
from .utility import Metric, load_model_state_dict, quantize_8bit
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def cosine_similarity(a, b):
|
|
12
|
+
similarity = numpy.sqrt(numpy.dot(a, b) ** 2 / (numpy.dot(a, a) * numpy.dot(b, b)))
|
|
13
|
+
return similarity
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def calculate_model_kinship_split(
|
|
17
|
+
model_1_name: str,
|
|
18
|
+
model_2_name: str,
|
|
19
|
+
model_base_name: str,
|
|
20
|
+
low_precision: bool,
|
|
21
|
+
metrics: List[str],
|
|
22
|
+
device: str = "cuda" if torch.cuda.is_available() else "cpu",
|
|
23
|
+
) -> dict:
|
|
24
|
+
|
|
25
|
+
# Extract state dictionaries from models
|
|
26
|
+
state_dict_1 = load_model_state_dict(model_1_name, device)
|
|
27
|
+
state_dict_2 = load_model_state_dict(model_2_name, device)
|
|
28
|
+
state_dict_base = load_model_state_dict(model_base_name, device)
|
|
29
|
+
results = {}
|
|
30
|
+
|
|
31
|
+
# Validate metrics before processing
|
|
32
|
+
valid_metrics = Metric.list()
|
|
33
|
+
for metric in metrics:
|
|
34
|
+
try:
|
|
35
|
+
if metric not in valid_metrics:
|
|
36
|
+
raise ValueError(
|
|
37
|
+
f"Unsupported metric: {metric}. Valid metrics are: {', '.join(valid_metrics)}"
|
|
38
|
+
)
|
|
39
|
+
results[metric] = calculate_metrics_by_split(
|
|
40
|
+
state_dict_1, state_dict_2, state_dict_base, low_precision, metric
|
|
41
|
+
)
|
|
42
|
+
except Exception as e:
|
|
43
|
+
logging.error(f"Error calculating {metric}: {str(e)}")
|
|
44
|
+
results[metric] = f"Error calculating {metric}: {str(e)}"
|
|
45
|
+
|
|
46
|
+
return results
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def calculate_metrics_by_split(
|
|
50
|
+
state_dict_1: dict,
|
|
51
|
+
state_dict_2: dict,
|
|
52
|
+
state_dict_base: dict,
|
|
53
|
+
low_precision: bool,
|
|
54
|
+
metric: str,
|
|
55
|
+
) -> str:
|
|
56
|
+
"""
|
|
57
|
+
Calculate metrics for each key and integrate results.
|
|
58
|
+
|
|
59
|
+
Args:
|
|
60
|
+
state_dict_1 (dict): State dictionary of first model
|
|
61
|
+
state_dict_2 (dict): State dictionary of second model
|
|
62
|
+
state_dict_base (dict): State dictionary of base model
|
|
63
|
+
low_precision (bool): Whether to use 8-bit quantization
|
|
64
|
+
metric (str): Metric to calculate ('pcc', 'ed', 'cs')
|
|
65
|
+
|
|
66
|
+
Returns:
|
|
67
|
+
str: Integrated metric result as formatted string
|
|
68
|
+
"""
|
|
69
|
+
total_similarity = 0.0
|
|
70
|
+
total_weight = 0.0
|
|
71
|
+
split_results = {}
|
|
72
|
+
|
|
73
|
+
# Determine the number of layers
|
|
74
|
+
num_layers = state_dict_base["lm_head.weight"].shape[0]
|
|
75
|
+
|
|
76
|
+
# Check architectures
|
|
77
|
+
if (
|
|
78
|
+
state_dict_1["lm_head.weight"].shape[0]
|
|
79
|
+
!= state_dict_2["lm_head.weight"].shape[0]
|
|
80
|
+
):
|
|
81
|
+
shape_1 = state_dict_1["lm_head.weight"].shape
|
|
82
|
+
shape_2 = state_dict_2["lm_head.weight"].shape
|
|
83
|
+
logging.warning(
|
|
84
|
+
f"Warning: Model architectures do not match. "
|
|
85
|
+
f"Using sub weight space instead.\n"
|
|
86
|
+
f"Vocab sizes in model 1: {shape_1[0]}, "
|
|
87
|
+
f"Vocab sizes in model 2: {shape_2[0]}"
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
# Process each key
|
|
91
|
+
for key, base_params in tqdm(
|
|
92
|
+
state_dict_base.items(), desc=f"Processing {metric.upper()} by key"
|
|
93
|
+
):
|
|
94
|
+
try:
|
|
95
|
+
if key not in state_dict_1 or key not in state_dict_2:
|
|
96
|
+
logging.warning(f"Key {key} not found in one of the models")
|
|
97
|
+
continue
|
|
98
|
+
|
|
99
|
+
# Get parameters and calculate deltas
|
|
100
|
+
params_1 = state_dict_1[key][:num_layers]
|
|
101
|
+
params_2 = state_dict_2[key][:num_layers]
|
|
102
|
+
|
|
103
|
+
delta_1 = (params_1 - base_params).view(-1)
|
|
104
|
+
delta_2 = (params_2 - base_params).view(-1)
|
|
105
|
+
|
|
106
|
+
if low_precision:
|
|
107
|
+
delta_1 = quantize_8bit(delta_1)
|
|
108
|
+
delta_2 = quantize_8bit(delta_2)
|
|
109
|
+
|
|
110
|
+
# Calculate weight based on parameter count
|
|
111
|
+
weight = delta_1.numel()
|
|
112
|
+
|
|
113
|
+
# Calculate metric for current key
|
|
114
|
+
if metric == "pcc":
|
|
115
|
+
stack = torch.stack((delta_1, delta_2), dim=0)
|
|
116
|
+
split_similarity = torch.corrcoef(stack)[0, 1].item()
|
|
117
|
+
elif metric == "ed":
|
|
118
|
+
split_similarity = torch.dist(delta_1, delta_2).item()
|
|
119
|
+
elif metric == "cs":
|
|
120
|
+
split_similarity = cosine_similarity(delta_1, delta_2)
|
|
121
|
+
else:
|
|
122
|
+
raise ValueError(f"Unsupported metric: {metric}")
|
|
123
|
+
|
|
124
|
+
# Skip NaN values
|
|
125
|
+
if torch.isnan(torch.tensor(split_similarity)):
|
|
126
|
+
logging.warning(f"Skipping key {key} due to NaN result")
|
|
127
|
+
continue
|
|
128
|
+
|
|
129
|
+
# Store valid result
|
|
130
|
+
split_results[key] = split_similarity
|
|
131
|
+
|
|
132
|
+
# Update weighted average only for valid results
|
|
133
|
+
weight = delta_1.numel()
|
|
134
|
+
total_similarity += split_similarity * weight
|
|
135
|
+
total_weight += weight
|
|
136
|
+
|
|
137
|
+
# Log progress for large layers
|
|
138
|
+
if weight > 1000000:
|
|
139
|
+
logging.info(
|
|
140
|
+
f"Layer {key}: {metric.upper()} = {split_similarity:.4f}, parameters = {weight}"
|
|
141
|
+
)
|
|
142
|
+
|
|
143
|
+
# Free memory
|
|
144
|
+
del delta_1, delta_2
|
|
145
|
+
|
|
146
|
+
except Exception as e:
|
|
147
|
+
logging.error(f"Error processing key {key}: {str(e)}")
|
|
148
|
+
continue
|
|
149
|
+
|
|
150
|
+
# Calculate final weighted average
|
|
151
|
+
if total_weight > 0:
|
|
152
|
+
final_result = total_similarity / total_weight
|
|
153
|
+
|
|
154
|
+
# Log summary statistics
|
|
155
|
+
logging.info(f"\nSummary for {metric.upper()}:")
|
|
156
|
+
logging.info(f"Total parameters: {total_weight}")
|
|
157
|
+
|
|
158
|
+
# Log detailed results for valid splits
|
|
159
|
+
logging.info(f"\nDetailed {metric.upper()} results by key:")
|
|
160
|
+
for key, value in split_results.items():
|
|
161
|
+
logging.info(f"{key}: {value:.4f}")
|
|
162
|
+
|
|
163
|
+
metric_names = {
|
|
164
|
+
"pcc": "Pearson Correlation Coefficient",
|
|
165
|
+
"ed": "Euclidean Distance",
|
|
166
|
+
"cs": "Cosine Similarity",
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
return f"Model Kinship based on {metric_names[metric]} (weighted average): {final_result:.4f}"
|
|
170
|
+
else:
|
|
171
|
+
return f"Error: No valid parameters found for {metric.upper()} calculation"
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
from enum import Enum
|
|
3
|
+
from typing import List
|
|
4
|
+
|
|
5
|
+
import click
|
|
6
|
+
import torch
|
|
7
|
+
from tqdm import tqdm
|
|
8
|
+
from transformers import (
|
|
9
|
+
AutoConfig,
|
|
10
|
+
AutoModelForCausalLM,
|
|
11
|
+
AutoTokenizer,
|
|
12
|
+
PretrainedConfig,
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class Metric(str, Enum):
|
|
17
|
+
"""Enumeration of supported metrics"""
|
|
18
|
+
|
|
19
|
+
PCC = "pcc"
|
|
20
|
+
ED = "ed"
|
|
21
|
+
CS = "cs"
|
|
22
|
+
|
|
23
|
+
@classmethod
|
|
24
|
+
def list(cls) -> List[str]:
|
|
25
|
+
"""Return list of supported metric values"""
|
|
26
|
+
return [metric.value for metric in cls]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def get_config(model: str, trust_remote_code: bool = False) -> PretrainedConfig:
|
|
30
|
+
"""
|
|
31
|
+
Fetch the configuration of a pretrained model from HuggingFace.
|
|
32
|
+
|
|
33
|
+
Args:
|
|
34
|
+
model (str): The name or path of the model to load configuration for.
|
|
35
|
+
trust_remote_code (bool, optional): Whether to trust remote code during loading.
|
|
36
|
+
Defaults to False.
|
|
37
|
+
|
|
38
|
+
Returns:
|
|
39
|
+
PretrainedConfig: The configuration object of the specified model.
|
|
40
|
+
"""
|
|
41
|
+
# Fetch the configuration from HuggingFace's model hub.
|
|
42
|
+
config = AutoConfig.from_pretrained(
|
|
43
|
+
model,
|
|
44
|
+
trust_remote_code=trust_remote_code, # Whether to allow remote code execution.
|
|
45
|
+
)
|
|
46
|
+
return config
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def validate_models(model_1: str, model_2: str, base_model: str) -> None:
|
|
50
|
+
"""
|
|
51
|
+
Validate model names to ensure they are different and exist.
|
|
52
|
+
|
|
53
|
+
Args:
|
|
54
|
+
model_1: Name of the first model
|
|
55
|
+
model_2: Name of the second model
|
|
56
|
+
base_model: Name of the base model
|
|
57
|
+
|
|
58
|
+
Raises:
|
|
59
|
+
click.BadParameter: If validation fails
|
|
60
|
+
"""
|
|
61
|
+
if model_1 == model_2 or model_1 == base_model or model_2 == base_model:
|
|
62
|
+
raise click.BadParameter("All model names must be different")
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def quantize_8bit(x: torch.Tensor) -> torch.Tensor:
|
|
66
|
+
# Get absolute min and max values
|
|
67
|
+
abs_max = torch.max(torch.abs(x))
|
|
68
|
+
|
|
69
|
+
# Scale to [-127, 127] range for 8-bit signed integers
|
|
70
|
+
# Using 127 instead of 128 to keep zero exactly representable
|
|
71
|
+
scaled = 127 * (x / abs_max)
|
|
72
|
+
|
|
73
|
+
# Round to nearest integer
|
|
74
|
+
quantized = torch.round(scaled)
|
|
75
|
+
|
|
76
|
+
# Clamp values to ensure they stay in valid range
|
|
77
|
+
quantized = torch.clamp(quantized, -127, 127)
|
|
78
|
+
|
|
79
|
+
return quantized
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
def load_model_state_dict(model_name: str, device: str) -> dict:
|
|
83
|
+
"""
|
|
84
|
+
Load a model and return its state dictionary.
|
|
85
|
+
|
|
86
|
+
Args:
|
|
87
|
+
model_name (str): Name or path of the model to load
|
|
88
|
+
device (str): Device to load the model on ('cuda' or 'cpu')
|
|
89
|
+
|
|
90
|
+
Returns:
|
|
91
|
+
dict: State dictionary of the loaded model
|
|
92
|
+
"""
|
|
93
|
+
logging.info(f"Loading model: {model_name}")
|
|
94
|
+
model = AutoModelForCausalLM.from_pretrained(model_name).to(device)
|
|
95
|
+
state_dict = model.state_dict()
|
|
96
|
+
del model # Free memory
|
|
97
|
+
return state_dict
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def extract_delta_parameters(
|
|
101
|
+
model_1_name: str,
|
|
102
|
+
model_2_name: str,
|
|
103
|
+
model_base_name: str,
|
|
104
|
+
low_precision: bool,
|
|
105
|
+
device: str = "cuda" if torch.cuda.is_available() else "cpu",
|
|
106
|
+
) -> tuple[torch.Tensor, torch.Tensor]:
|
|
107
|
+
"""
|
|
108
|
+
Extract the delta parameters (weight differences) between two models
|
|
109
|
+
relative to a base model.
|
|
110
|
+
|
|
111
|
+
Args:
|
|
112
|
+
model_1_name (str): Name or path of the first model.
|
|
113
|
+
model_2_name (str): Name or path of the second model.
|
|
114
|
+
model_base_name (str): Name or path of the base model for comparison.
|
|
115
|
+
low_precision (bool): Whether to use low precision weights
|
|
116
|
+
|
|
117
|
+
Returns:
|
|
118
|
+
(torch.Tensor, torch.Tensor): Delta parameters of model_1 and model_2 relative to base model.
|
|
119
|
+
"""
|
|
120
|
+
|
|
121
|
+
# Extract state dictionaries from models
|
|
122
|
+
state_dict_1 = load_model_state_dict(model_1_name, device)
|
|
123
|
+
state_dict_2 = load_model_state_dict(model_2_name, device)
|
|
124
|
+
state_dict_base = load_model_state_dict(model_base_name, device)
|
|
125
|
+
|
|
126
|
+
# Determine the number of layers
|
|
127
|
+
num_layers = state_dict_base["lm_head.weight"].shape[0]
|
|
128
|
+
|
|
129
|
+
# Check if model architectures match, log a warning if not
|
|
130
|
+
if (
|
|
131
|
+
state_dict_1["lm_head.weight"].shape[0]
|
|
132
|
+
!= state_dict_2["lm_head.weight"].shape[0]
|
|
133
|
+
):
|
|
134
|
+
shape_1 = state_dict_1["lm_head.weight"].shape
|
|
135
|
+
shape_2 = state_dict_2["lm_head.weight"].shape
|
|
136
|
+
logging.warning(
|
|
137
|
+
f"Warning: Model architectures do not match. "
|
|
138
|
+
f"Using sub weight space instead.\n"
|
|
139
|
+
f"Vocab sizes in model 1: {shape_1[0]}, "
|
|
140
|
+
f"Vocab sizes in model 2: {shape_2[0]}"
|
|
141
|
+
)
|
|
142
|
+
|
|
143
|
+
# Initialize lists to store delta parameters for both models
|
|
144
|
+
d_vector_1, d_vector_2 = [], []
|
|
145
|
+
|
|
146
|
+
# Iterate over keys in the base model's state dictionary with tqdm
|
|
147
|
+
for key, base_params in tqdm(
|
|
148
|
+
state_dict_base.items(), desc="Processing keys", unit="key"
|
|
149
|
+
):
|
|
150
|
+
# Only proceed if key exists in both models
|
|
151
|
+
try:
|
|
152
|
+
if key not in state_dict_1 or key not in state_dict_2:
|
|
153
|
+
logging.warning(f"Key {key} not found in one of the models")
|
|
154
|
+
continue
|
|
155
|
+
except Exception as e:
|
|
156
|
+
logging.error(f"Error processing key {key}: {str(e)}")
|
|
157
|
+
|
|
158
|
+
# Get the parameters for each model (truncate to num_layers for consistency)
|
|
159
|
+
params_1 = state_dict_1[key][:num_layers]
|
|
160
|
+
params_2 = state_dict_2[key][:num_layers]
|
|
161
|
+
|
|
162
|
+
# Compute the deltas relative to the base model
|
|
163
|
+
delta_1 = (params_1 - base_params).view(-1)
|
|
164
|
+
delta_2 = (params_2 - base_params).view(-1)
|
|
165
|
+
|
|
166
|
+
# Accumulate deltas
|
|
167
|
+
d_vector_1.append(delta_1)
|
|
168
|
+
d_vector_2.append(delta_2)
|
|
169
|
+
|
|
170
|
+
# Clear memory
|
|
171
|
+
del state_dict_1, state_dict_2, state_dict_base
|
|
172
|
+
|
|
173
|
+
logging.info("Concatenating delta vectors...")
|
|
174
|
+
|
|
175
|
+
d_vector_1 = torch.cat(d_vector_1)
|
|
176
|
+
d_vector_2 = torch.cat(d_vector_2)
|
|
177
|
+
|
|
178
|
+
if low_precision:
|
|
179
|
+
logging.info("Quantizing delta vectors to 8-bit precision...")
|
|
180
|
+
d_vector_1 = quantize_8bit(d_vector_1)
|
|
181
|
+
d_vector_2 = quantize_8bit(d_vector_2)
|
|
182
|
+
logging.info("Quantization complete")
|
|
183
|
+
|
|
184
|
+
return d_vector_1, d_vector_2
|
|
@@ -113,21 +113,27 @@ class MaskModel(ParameterDictModel):
|
|
|
113
113
|
def get_distribution(
|
|
114
114
|
self,
|
|
115
115
|
mask_type: Literal["discrete", "continuous"],
|
|
116
|
+
temperature: float = 0.5,
|
|
116
117
|
**kwargs,
|
|
117
118
|
):
|
|
118
119
|
return {
|
|
119
|
-
name: self._param_to_distribution(
|
|
120
|
+
name: self._param_to_distribution(
|
|
121
|
+
param, mask_type=mask_type, temperature=temperature, **kwargs
|
|
122
|
+
)
|
|
120
123
|
for name, param in self.named_parameters()
|
|
121
124
|
}
|
|
122
125
|
|
|
123
126
|
def sample_mask(
|
|
124
127
|
self,
|
|
125
128
|
mask_type: Literal["discrete", "continuous"] = "discrete",
|
|
129
|
+
temperature: float = 0.5,
|
|
126
130
|
**kwargs,
|
|
127
131
|
):
|
|
128
132
|
mask = {}
|
|
129
133
|
for name, param in self.named_parameters():
|
|
130
|
-
dist = self._param_to_distribution(
|
|
134
|
+
dist = self._param_to_distribution(
|
|
135
|
+
param, mask_type, temperature=temperature, **kwargs
|
|
136
|
+
)
|
|
131
137
|
if mask_type == "discrete":
|
|
132
138
|
mask[name] = dist.sample()
|
|
133
139
|
elif mask_type == "continuous":
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
from fusion_bench.utils.packages import is_open_clip_available
|
|
2
|
+
|
|
3
|
+
if not is_open_clip_available():
|
|
4
|
+
raise ImportError(
|
|
5
|
+
"open_clip is not installed. Please install it with `pip install open_clip_torch`."
|
|
6
|
+
)
|
|
7
|
+
|
|
1
8
|
from typing import Callable, List
|
|
2
9
|
|
|
3
10
|
import open_clip
|