fusion-bench 0.2.23__tar.gz → 0.2.24__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.23 → fusion_bench-0.2.24}/PKG-INFO +10 -3
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/README.md +2 -2
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/__init__.py +8 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/ensemble.py +17 -2
- fusion_bench-0.2.24/fusion_bench/method/linear/__init__.py +10 -0
- fusion_bench-0.2.23/fusion_bench/method/linear/simple_average_for_llama.py → fusion_bench-0.2.24/fusion_bench/method/linear/simple_average_for_causallm.py +8 -4
- fusion_bench-0.2.23/fusion_bench/method/linear/task_arithmetic_for_llama.py → fusion_bench-0.2.24/fusion_bench/method/linear/task_arithmetic_for_causallm.py +22 -12
- fusion_bench-0.2.24/fusion_bench/method/linear/ties_merging_for_causallm.py +70 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/simple_average.py +2 -2
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_arithmetic/task_arithmetic.py +35 -10
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/ties_merging/ties_merging.py +22 -6
- fusion_bench-0.2.24/fusion_bench/method/wudi/__init__.py +1 -0
- fusion_bench-0.2.24/fusion_bench/method/wudi/wudi.py +105 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/lightning_fabric.py +4 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/serialization.py +25 -78
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/causal_lm/causal_lm.py +32 -10
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/hf_clip.py +4 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/hf_utils.py +2 -1
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/model_card_templates/default.md +8 -1
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/wrappers/ensemble.py +136 -7
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/scripts/cli.py +2 -2
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/clip_vision/taskpool.py +11 -4
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/devices.py +30 -8
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/lazy_state_dict.py +3 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/rich_utils.py +7 -3
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench.egg-info/PKG-INFO +10 -3
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench.egg-info/SOURCES.txt +12 -5
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench.egg-info/requires.txt +8 -0
- fusion_bench-0.2.24/fusion_bench_config/method/ensemble/simple_ensemble.yaml +2 -0
- fusion_bench-0.2.23/fusion_bench_config/method/linear/simple_average_for_llama.yaml → fusion_bench-0.2.24/fusion_bench_config/method/linear/simple_average_for_causallm.yaml +1 -1
- fusion_bench-0.2.24/fusion_bench_config/method/linear/task_arithmetic_for_causallm.yaml +4 -0
- fusion_bench-0.2.24/fusion_bench_config/method/linear/ties_merging_for_causallm.yaml +13 -0
- fusion_bench-0.2.24/fusion_bench_config/method/wudi/wudi.yaml +4 -0
- fusion_bench-0.2.23/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_math_and_coder.yaml → fusion_bench-0.2.24/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_math_and_code.yaml +1 -2
- fusion_bench-0.2.24/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_three_models.yaml +11 -0
- fusion_bench-0.2.24/fusion_bench_config/modelpool/CausalLMPool/llama-7b_3-models_v1.yaml +11 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/pyproject.toml +5 -2
- fusion_bench-0.2.23/fusion_bench/method/linear/__init__.py +0 -6
- fusion_bench-0.2.23/fusion_bench_config/method/ensemble/simple_ensemble.yaml +0 -1
- fusion_bench-0.2.23/fusion_bench_config/method/linear/task_arithmetic_for_llama.yaml +0 -4
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/LICENSE +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/__main__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/_get_started/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/_get_started/greeting_program.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/method/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/method/base_algorithm.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/modelpool/AutoModelForSeq2SeqLM.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/modelpool/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/modelpool/base_pool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/modelpool/huggingface_clip_vision.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/taskpool/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/taskpool/base_pool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/taskpool/clip_image_classification.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/compat/taskpool/flan_t5_glue_text_generation.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/constants/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/constants/banner.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/constants/clip_vision.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/constants/paths.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/constants/runtime.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/arc_agi/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/arc_agi/arc.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/arc_agi/arc_agi.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/arc_agi/augmenters.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/arc_agi/messagers.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/arc_agi/np_cache.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/arc_agi/preprocess.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/arc_agi/representers.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/clip_dataset.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/fer2013.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/gpt2_glue.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/gsm8k.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/image_corruption/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/image_corruption/make_corruption.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/image_dataset.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/imdb.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/alpaca.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/collate.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/metamathqa.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/openai.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/preference_700k.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/sharegpt.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/squad.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/stanford_shp.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/ultrachat.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/llama/wikitext.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/dataset/nyuv2.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/ada_svd/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/ada_svd/clip_vision.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/clip_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/clip_task_wise_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/entropy_loss.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/flan_t5_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/gpt2_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/llama_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/task_wise_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/adamerging/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/analysis/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/analysis/task_vector_cos_similarity.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/analysis/task_vector_violin_plot.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/base_algorithm.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/bitdelta/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/bitdelta/bitdelta.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/bitdelta/bitdelta_utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/bitdelta/bitdelta_utils/binary_gemm_kernel.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/bitdelta/bitdelta_utils/data.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/bitdelta/bitdelta_utils/diff.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/classification/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/classification/clip_finetune.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/classification/continual_clip_finetune.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/concrete_subspace/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/concrete_subspace/clip_concrete_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/concrete_subspace/clip_concrete_task_arithmetic.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/concrete_subspace/clip_post_defense.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/concrete_subspace/clip_safe_concrete_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dare/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dare/simple_average.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dare/task_arithmetic.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dare/ties_merging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dare/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dawe/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dawe/dawe_for_clip.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dawe/warppers/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dawe/warppers/dawe_model.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/depth_upscaling/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/depth_upscaling/depth_upscaling.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/depth_upscaling/depth_upscaling_for_llama.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/doge_ta/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/doge_ta/clip_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/doge_ta/doge_ta.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/doge_ta/layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/dummy.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/expert_sparsity/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/expert_sparsity/mixtral/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/expert_sparsity/mixtral/dynamic_skipping.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/expert_sparsity/mixtral/layer_wise_pruning.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/expert_sparsity/mixtral/progressive_pruning.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/expert_sparsity/utils/calibration_data.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/fisher_merging/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/fisher_merging/clip_fisher_merging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/fisher_merging/fisher_merging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/fisher_merging/gpt2_fisher_merging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/fw_merging/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/fw_merging/fw_hard.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/fw_merging/fw_soft.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/fw_merging/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/clip_layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/clip_task_wise_gossip.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/entropy_loss.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/flan_t5_layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/task_wise_gossip.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/gossip/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/isotropic_merging/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/isotropic_merging/iso.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/isotropic_merging/iso_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/knots/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/knots/knots_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/linear/expo.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/linear/linear_interpolation.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/linear/llama_expo.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/lm_finetune/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/lm_finetune/bradley_terry_rm.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/lm_finetune/causal_lm_pretrain.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/lm_finetune/fullfinetune_sft.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/lm_finetune/peftfinetune_sft.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/mixture_of_experts/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/mixture_of_experts/mixtral_merging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/mixture_of_experts/mixtral_upcycling.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/model_recombination.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/model_stock/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/model_stock/model_stock.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/hooks/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/hooks/deepseek_v2.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/hooks/hook.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/hooks/mixtral.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/moe_pruner.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/utils/data.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/utils/layerwrapper.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/utils/prune.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/moe_pruner/utils/score.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/opcm/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/opcm/opcm.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/opcm/task_arithmetic.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/opcm/ties_merging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/opcm/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/opcm/weight_average.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/llama_magnitude_prune.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/llama_random_prune.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/llama_sparsegpt_prune.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/llama_wanda_prune.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/magnitude_diff_pruning.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/prune_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/sparsegpt_utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/sparsegpt_utils/sparsegpt.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/wanda_utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/wanda_utils/ablate.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/wanda_utils/data.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/wanda_utils/eval.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/wanda_utils/layerwrapper.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/wanda_utils/prune.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/wanda_utils/prune_opt.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pruning/wanda_utils/sparsegpt.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pwe_moe/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pwe_moe/clip_pwe_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pwe_moe/module.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pwe_moe/openclip_pwe_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pwe_moe/phn/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pwe_moe/phn/solvers.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/pwe_moe/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/randes/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/randes/base_algorithm.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/randes/modelsoup.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/randes/task_arithmetic.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/rankone_moe/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/rankone_moe/clip_rankone_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/rankone_moe/rankone_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/regmean/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/regmean/clip_regmean.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/regmean/gpt2_regmean.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/regmean/regmean.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/regmean/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/regmean_plusplus/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/regmean_plusplus/clip_regmean_plusplus.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/regmean_plusplus/regmean_plusplus.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/slerp/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/slerp/slerp.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/slerp/slerp_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/smile_upscaling/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/smile_upscaling/causal_lm_upscaling.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/smile_upscaling/error_accumulation.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/smile_upscaling/projected_energy.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/smile_upscaling/singular_projection_merging.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/smile_upscaling/smile_mistral_upscaling.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/smile_upscaling/smile_qwen2_upscaling.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/smile_upscaling/smile_upscaling.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/sparse_we_moe/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/sparse_we_moe/sparse_clip_we_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/sparse_we_moe/sparse_we_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/sparselo/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/sparselo/sparselo.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/surgery/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/surgery/clip_layer_wise_adamerging_surgery.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/tall_mask/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/tall_mask/task_arithmetic.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/tall_mask/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_arithmetic/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_singular_vector/TSVC.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_singular_vector/TSVM.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_singular_vector/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_singular_vector/utils/TSVC_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_singular_vector/utils/TSVM_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_singular_vector/utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_singular_vector/utils/task_singular_interference.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/ties_merging/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/ties_merging/ties_merging_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/trust_region/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/trust_region/clip_task_arithmetic.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/trust_region/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/we_moe/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/we_moe/clip_we_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/we_moe/entropy_loss.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/we_moe/flan_t5_we_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/we_moe/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/we_moe/we_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/weighted_average/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/weighted_average/llama.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/weighted_average/weighted_average.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/continual_learning/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/continual_learning/backward_transfer.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/nyuv2/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/nyuv2/depth.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/nyuv2/loss.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/nyuv2/noise.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/nyuv2/normal.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/nyuv2/segmentation.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/text_to_image_generation/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/text_to_image_generation/aesthetic_scorer.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/text_to_image_generation/compressibility.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/metrics/text_to_image_generation/pickscore_scorer.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/clip_classification.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/fabric_training.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/hydra_config.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/openclip_classification.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/optim/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/optim/adamw_with_warmup.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/rich_live.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/mixins/simple_profiler.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/PeftModelForSeq2SeqLM.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/base_pool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/causal_lm/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/clip_vision/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/clip_vision/modelpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/huggingface_automodel.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/huggingface_gpt2_classification.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/lazy_state_dict_pool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/nyuv2_modelpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/openclip_vision/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/openclip_vision/modelpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/seq2seq_lm/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/seq2seq_lm/modelpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/seq_classification_lm/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/seq_classification_lm/reward_model.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/modelpool/seq_classification_lm/seq_classification_lm.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/chat_templates/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/chat_templates/llama_3_Instruct.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/chat_templates/load_tokenizer.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/expert_sparsity/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/expert_sparsity/mixtral/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/expert_sparsity/mixtral/dataset.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/expert_sparsity/mixtral/modeling_mixtral.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/expert_sparsity/mixtral/wrapper.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/linearized/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/linearized/linearized_model_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/linearized/vision_model.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/model_utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/model_utils/embedding.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/model_utils/liger_kernel.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/model_utils/misc.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/model_utils/mod.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/model_utils/visual.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/patcher.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/llama/tokenizer_loader.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/masks/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/masks/mask_model.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_deepseek_v2/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_deepseek_v2/configuration_deepseek.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_deepseek_v2/modeling_deepseek.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_deepseek_v2/tokenization_deepseek_fast.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_losparse_llama/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_losparse_llama/configuration_losparse_llama.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_losparse_llama/losparse_linear.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_losparse_llama/modeling_losparse_llama.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_losparse_llama/register.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_losparse_llama/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_gemma2/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_gemma2/configuration_smile_gemma2.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_gemma2/modeling_smile_gemma2.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_gemma2/register.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_llama/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_llama/configuration_smile_llama.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_llama/modeling_smile_llama.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_llama/register.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_mistral/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_mistral/configuration_smile_mistral.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_mistral/modeling_smile_mistral.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_mistral/register.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_qwen2/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_qwen2/configuration_smile_qwen2.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_qwen2/modeling_smile_qwen2.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/modeling_smile_qwen2/register.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/nyuv2/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/nyuv2/aspp.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/nyuv2/lightning_module.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/nyuv2/resnet.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/nyuv2/resnet_dilated.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/open_clip/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/open_clip/modeling.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/open_clip/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/open_clip/variables_and_paths.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/parameter_dict.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/rankone_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/separate_io.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/smile_moe/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/smile_moe/linear_from_hf_config.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/smile_moe/linear_from_module.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/smile_moe/utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/smile_moe/utils/svd_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/sparse_we_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/surgery/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/surgery/surgerymodelwrapper.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/we_moe.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/wrappers/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/wrappers/layer_wise_fusion.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/wrappers/layer_wise_fusion_doge_ta.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/models/wrappers/task_wise_fusion.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/optim/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/optim/exception.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/optim/lr_scheduler/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/optim/lr_scheduler/linear_warmup.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/optim/lr_scheduler/utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/optim/lr_scheduler/utils/visualization.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/optim/mezo.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/programs/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/programs/base_program.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/programs/fabric_fusion_program.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/scripts/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/scripts/clip/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/scripts/clip/convert_checkpoint.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/scripts/imgui.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/scripts/nyuv2_mtl_train.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/scripts/webui.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/base_pool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/clip_vision/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/clip_vision/clip_rankone_moe_taskpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/clip_vision/clip_smile_taskpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/clip_vision/clip_sparse_wemoe_taskpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/clip_vision/utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/clip_vision/utils/routing_analysis_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/dummy.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/gpt2_text_classification.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/llama/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/llama/reward_model.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/llama/test_generation.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/lm_eval_harness/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/lm_eval_harness/taskpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/nyuv2_taskpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/openclip_vision/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/taskpool/openclip_vision/openclip_taskpool.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/base_task.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/classification.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/cifar10.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/cifar100.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/clip_dataset.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/cub_200_2011.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/dtd.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/emnist_letters.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/emnist_mnist.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/eurosat.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/fashion_mnist.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/fer2013.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/flower102.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/food101.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/gtsrb.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/imagenet.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/kmnist.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/mnist.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/mongo_leaf_disease.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/oxford_iiit_pet.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/pcam.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/rendered_sst2.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/resisc45.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/stanford_cars.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/stl10.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/sun397.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/svhn.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/clip_classification/tiny_imagenet.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/flan_t5_text_generation/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/flan_t5_text_generation/datasets_preprocess.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/flan_t5_text_generation/glue_evaluation.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/flan_t5_text_generation/glue_load_dataset.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/flan_t5_text_generation/glue_preprocessors.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/tasks/flan_t5_text_generation/glue_prompt_templates.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/auto.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/cache_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/data.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/dict.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/dtype.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/expr.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/fabric.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/functools.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/hydra_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/instantiate_utils.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/json.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/lazy_imports.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/misc.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/modelscope.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/packages.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/parameters.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/path.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/plot/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/plot/color_data.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/plot/token.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/plot/token_notebook.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/pylogger.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/set.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/state_dict_arithmetic.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/strenum/__init__.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/strenum/_name_mangler.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/strenum/_version.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/tensorboard.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/timer.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/utils/type.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench.egg-info/dependency_links.txt +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench.egg-info/entry_points.txt +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench.egg-info/top_level.txt +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/README.md +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/_get_started/clip_evaluate_single_model.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/_get_started/clip_simple_average.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/_get_started/clip_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/_get_started/greeting_program.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/_get_started/llm_slerp.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/README.md +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/TALL10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/TALL12.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/TALL16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/TALL18.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/cifar10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/cifar100.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/cub-200-2011.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/emnist_letters.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/emnist_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/eurosat.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/fer2013.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/food101.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/gtsrb.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/kmnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/mango-leaf-disease.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/pcam.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/resisc45.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/stl10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/sun397.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/svhn.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/test/tiny-imagenet.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/TALL10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/TALL12.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/TALL16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/TALL18.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/cifar10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/cifar100.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/cub-200-2011.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/emnist_letters.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/emnist_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/eurosat.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/fer2013.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/food101.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/gtsrb.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/kmnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/mango-leaf-disease.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/pcam.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/resisc45.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/stl10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/sun397.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/svhn.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/train/tiny-imagenet.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/eurosat.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/gtsrb.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/resisc45.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/sun397.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/svhn.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/image_classification/val/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/llm_sft/alpaca_cleaned.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/llm_sft/ultrachat_200k.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/question_answering/search_qa.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/question_answering/test/search_qa.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/question_answering/train/MetaMathQA.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/question_answering/train/search_qa.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/question_answering/val/search_qa.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/summarization/test/xsum.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/summarization/train/xsum.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/summarization/val/xsum.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/summarization/xsum.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/text_generation/test/gsm-hard.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/text_generation/test/gsm8k.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/text_generation/test/gsm8k_question_label.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/text_generation/train/CodeAlpaca-20k.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/text_generation/train/gsm8k.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/dataset/text_generation/train/gsm8k_question_label.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/auto.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/llama_ddp.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/llama_fsdp.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/llama_peft_fsdp.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/loggers/csv_logger.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/loggers/mlflow_logger.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/loggers/tensorboard_logger.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/loggers/wandb_logger.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/strategy/deepspeed.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/strategy/llama_fsdp.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric/strategy/llama_peft_fsdp.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/fabric_model_fusion.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/hydra/default.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/hydra/help/fusion_bench_help.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/hydra/job_logging/rich_logging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/llama_full_finetune.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/llama_magnitude_pruning.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/llama_model_fusion.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/ada_svd/clip_vision.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/adamerging/clip.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/adamerging/layer_wise_flan_t5.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/adamerging/layer_wise_gpt2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/adamerging/llama_sft.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/analysis/task_vector_cos_similarity.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/analysis/task_vector_violin_plot.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/bitdelta/bitdelta.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/classification/clip_continual_finetune.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/classification/clip_finetune.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/clip_finetune.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/concrete_subspace/clip_concrete_layer_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/concrete_subspace/clip_concrete_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/concrete_subspace/clip_concrete_task_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/concrete_subspace/clip_post_defense_AWM.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/concrete_subspace/clip_post_defense_SAU.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/concrete_subspace/clip_safe_concrete_layer_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/concrete_subspace/clip_safe_concrete_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/dare/simple_average.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/dare/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/dare/ties_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/dawe/dawe_for_clip.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/depth_upscaling.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/doge_ta/doge_ta.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/dummy.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/ensemble/max_model_predictor.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/ensemble/weighted_ensemble.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/expert_sparsity/README.md +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/expert_sparsity/mixtral.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/fisher_merging/clip_fisher_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/fisher_merging/fisher_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/fisher_merging/gpt2_fisher_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/fw_merging/fw_hard.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/fw_merging/fw_soft.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/gossip/layer_wise_clip.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/gossip/layer_wise_flan_t5.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/isotropic_merging/iso_c.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/isotropic_merging/iso_cts.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/linear/expo.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/linear/linear_interpolation.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/linear/llama_expo.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/linear/llama_expo_with_dare.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/linear/weighted_average.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/linear/weighted_average_for_llama.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/lm_finetune/bradley_terry_rm.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/lm_finetune/fullfinetune_sft.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/lm_finetune/peftfinetune_sft.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/mixtral_moe_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/mixtral_moe_upscaling.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/model_recombination.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/model_stock/model_stock.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/moe_pruner/moe_pruner.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/opcm/opcm.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/opcm/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/opcm/ties_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/opcm/weight_average.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/pruning/llama_magnitude_pruning.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/pruning/llama_random_pruning.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/pruning/llama_sparsegpt_pruning.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/pruning/llama_wanda_pruning.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/pruning/magnitude_diff_pruning.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/pwe_moe/epo_for_openclip.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/pwe_moe/ls_for_openclip.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/pwe_moe/pwe_moe_ls_for_clip.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/randes/superposed_model_soup.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/randes/superposed_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/randes/superposed_task_arithmetic_lora.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/rankone_moe/rankone_moe.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/regmean/clip_regmean.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/regmean/gpt2_regmean.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/regmean/regmean.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/regmean_plusplus/clip_regmean_plusplus.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/simple_average.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/slerp/slerp.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/slerp/slerp_lm.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/smile_upscaling/causal_lm_upscaling.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/smile_upscaling/error_accumulation.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/smile_upscaling/projected_energy.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/smile_upscaling/singular_projection_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/smile_upscaling/smile_mistral_upscaling.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/smile_upscaling/smile_qwen2_upscaling.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/smile_upscaling/smile_upscaling.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/sparselo_pruning/llama_iterative_sparselo.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/sparselo_pruning/llama_pcp_sparselo.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/sparselo_pruning/llama_sparselo.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/surgery/adamerging_surgery.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/tall_mask/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/task_singular_vector/TaskSingularVectorMerging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/ties_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/trust_region/clip_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/wemoe/flan_t5_weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/wemoe/sparse_weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/method/wemoe/weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/README.md +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_cifar10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_cifar100.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_eurosat.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_fer2013.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_food101.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_gtsrb.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_kmnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_pcam.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_resisc45.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_stl10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_sun397.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_svhn.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL12.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL18.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_cifar10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_cifar100.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_eurosat.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_fer2013.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_food101.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_gtsrb.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_kmnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_pcam.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_resisc45.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_stl10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_sun397.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_svhn.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_cifar10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_cifar100.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_eurosat.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_fer2013.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_food101.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_gtsrb.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_kmnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_pcam.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_resisc45.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_stl10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_sun397.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_svhn.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/download_TALL20_models.sh +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/clip-vit/generate_vit_model_config.sh +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-cola.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-cola_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mnli.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mrpc.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mrpc_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qnli.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qqp.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qqp_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-rte.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-rte_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-sst2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-sst2_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-stsb.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-stsb_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-cola_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-mnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-mrpc_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-qnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-qqp_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-rte_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-sst2_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-stsb_lora-16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/model/flan-t5/generate_flan-t5.sh +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/_template.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8_lora.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_individual.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_individual_lora.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8_control_task.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL12.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL18.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_cars_and_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_generalization_exp1.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_generalization_exp2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_individual.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_mtl.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_robustness_clean.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_single_finetuned.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_single_task_projection.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_and_cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_and_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_cars_and_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_svhn_and_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_two_tasks_control_task.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_individual.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-7B-math_and_coder.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/deepseek-v2-lite.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/llama_alpaca_cleaned.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/llama_codealpaca.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/llama_for_causallm.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/llama_metamathqa.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/llama_ultrachat.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.1-8B-Instruct.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.1-8B.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.2-3B-Instruct.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.2-3B.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-2b-it.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-2b.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-9b-it.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-9b.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mistral-7b.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mixtral-8x7b.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/mixtral_moe_merging.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/qwen2_math_1.5B_and_R1.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/simle_mixtral_exp_v4.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/single_llama_model.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/CausalLMPool/vicuna-7b-v1.5.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/README.md +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-16_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_cars_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_sun397_cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_sun397_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_individual.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-L-14_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/Seq2SeqLMPool/_template.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_lora16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_lora16_tta.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_tta.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_individual.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-large_glue_lora16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/SequenceClassificationModelPool/llama_preference700k.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/SequenceClassificationModelPool/roberta-base_glue.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/SequenceClassificationModelPool/single_reward_model.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/automodelpool.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/gpt-2_glue.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/nyuv2_modelpool.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/smile_mistral_exp_v1.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/smile_mistral_exp_v2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/smile_mistral_exp_v3.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/modelpool/smile_mistral_exp_v4.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/nyuv2_config.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/nyuv2_mtl_train.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/path/default.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/_template.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-base-patch32_svhn_and_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_B16.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_L14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_val.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_with_control_task.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TALL14.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TALL20.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_cifar10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_cifar100.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_dtd.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_eurosat.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_fer2013.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_food101.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_gtsrb.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_kmnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_mnist.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford_flowers102_val.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_pcam.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_resisc45.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_stl10.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_sun397.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_svhn.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip_rankone_wemoe_clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip_sparse_wemoe_clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/LMEvalHarnessTaskPool/lm_eval.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-B-16_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-B-32_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-L-14_TA8.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/clip-vit-base-patch32_robustness_clean.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/dummy.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/flan-t5_glue_text_generation.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/gpt-2_glue.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/nyuv2_taskpool.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench_config/taskpool/reward_model_evaluation.yaml +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/setup.cfg +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/tests/test_depth_upscaling.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/tests/test_simple_average.py +0 -0
- {fusion_bench-0.2.23 → fusion_bench-0.2.24}/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.24
|
|
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
|
|
@@ -23,12 +23,19 @@ Requires-Dist: rich
|
|
|
23
23
|
Requires-Dist: scipy
|
|
24
24
|
Requires-Dist: h5py
|
|
25
25
|
Requires-Dist: pytest
|
|
26
|
+
Requires-Dist: joblib
|
|
27
|
+
Requires-Dist: bidict
|
|
26
28
|
Requires-Dist: transformers!=4.49
|
|
27
29
|
Requires-Dist: pillow!=11.2.1
|
|
28
30
|
Provides-Extra: lm-eval-harness
|
|
29
31
|
Requires-Dist: lm-eval; extra == "lm-eval-harness"
|
|
30
32
|
Requires-Dist: immutabledict; extra == "lm-eval-harness"
|
|
31
33
|
Requires-Dist: langdetect; extra == "lm-eval-harness"
|
|
34
|
+
Requires-Dist: rich-run; extra == "lm-eval-harness"
|
|
35
|
+
Provides-Extra: docs
|
|
36
|
+
Requires-Dist: mkdocs; extra == "docs"
|
|
37
|
+
Requires-Dist: mkdocs-material; extra == "docs"
|
|
38
|
+
Requires-Dist: mkdocstrings[python]; extra == "docs"
|
|
32
39
|
Dynamic: license-file
|
|
33
40
|
|
|
34
41
|
<div align='center'>
|
|
@@ -151,7 +158,7 @@ This will install the latest version of fusion-bench and the dependencies requir
|
|
|
151
158
|
Documentation for using LM-Eval Harness within FusionBench framework can be found at [this online documentation](https://tanganke.github.io/fusion_bench/taskpool/lm_eval_harness) or in the [`docs/taskpool/lm_eval_harness.md`](docs/taskpool/lm_eval_harness.md) markdown file.
|
|
152
159
|
|
|
153
160
|
> [!TIP]
|
|
154
|
-
> Documentation for merging large language models using FusionBench can be found at [this online documentation](https://tanganke.github.io/fusion_bench/modelpool/
|
|
161
|
+
> Documentation for merging large language models using FusionBench can be found at [this online documentation](https://tanganke.github.io/fusion_bench/modelpool/llm) or in the [`docs/modelpool/llm/index.md`](docs/modelpool/llm/index.md) markdown file.
|
|
155
162
|
|
|
156
163
|
## Introduction to Deep Model Fusion
|
|
157
164
|
|
|
@@ -179,7 +186,7 @@ The project is structured as follows:
|
|
|
179
186
|
- `taskpool`: configuration files for the task pool.
|
|
180
187
|
- `model`: configuration files for the models.
|
|
181
188
|
- `dataset`: configuration files for the datasets.
|
|
182
|
-
- `docs/`: documentation for the benchmark. We use [mkdocs](https://www.mkdocs.org/) to generate the documentation. Start the documentation server locally with `mkdocs serve`. The required packages can be installed with `pip install -
|
|
189
|
+
- `docs/`: documentation for the benchmark. We use [mkdocs](https://www.mkdocs.org/) to generate the documentation. Start the documentation server locally with `mkdocs serve`. The required packages can be installed with `pip install -e ".[docs]"`.
|
|
183
190
|
- `examples/`: example scripts for running some of the experiments.
|
|
184
191
|
> **naming convention**: `examples/{method_name}/` contains the files such as bash scripts and jupyter notebooks for the specific method.
|
|
185
192
|
- `tests/`: unit tests for the benchmark.
|
|
@@ -118,7 +118,7 @@ This will install the latest version of fusion-bench and the dependencies requir
|
|
|
118
118
|
Documentation for using LM-Eval Harness within FusionBench framework can be found at [this online documentation](https://tanganke.github.io/fusion_bench/taskpool/lm_eval_harness) or in the [`docs/taskpool/lm_eval_harness.md`](docs/taskpool/lm_eval_harness.md) markdown file.
|
|
119
119
|
|
|
120
120
|
> [!TIP]
|
|
121
|
-
> Documentation for merging large language models using FusionBench can be found at [this online documentation](https://tanganke.github.io/fusion_bench/modelpool/
|
|
121
|
+
> Documentation for merging large language models using FusionBench can be found at [this online documentation](https://tanganke.github.io/fusion_bench/modelpool/llm) or in the [`docs/modelpool/llm/index.md`](docs/modelpool/llm/index.md) markdown file.
|
|
122
122
|
|
|
123
123
|
## Introduction to Deep Model Fusion
|
|
124
124
|
|
|
@@ -146,7 +146,7 @@ The project is structured as follows:
|
|
|
146
146
|
- `taskpool`: configuration files for the task pool.
|
|
147
147
|
- `model`: configuration files for the models.
|
|
148
148
|
- `dataset`: configuration files for the datasets.
|
|
149
|
-
- `docs/`: documentation for the benchmark. We use [mkdocs](https://www.mkdocs.org/) to generate the documentation. Start the documentation server locally with `mkdocs serve`. The required packages can be installed with `pip install -
|
|
149
|
+
- `docs/`: documentation for the benchmark. We use [mkdocs](https://www.mkdocs.org/) to generate the documentation. Start the documentation server locally with `mkdocs serve`. The required packages can be installed with `pip install -e ".[docs]"`.
|
|
150
150
|
- `examples/`: example scripts for running some of the experiments.
|
|
151
151
|
> **naming convention**: `examples/{method_name}/` contains the files such as bash scripts and jupyter notebooks for the specific method.
|
|
152
152
|
- `tests/`: unit tests for the benchmark.
|
|
@@ -26,9 +26,12 @@ _import_structure = {
|
|
|
26
26
|
"linear": [
|
|
27
27
|
"ExPOAlgorithm",
|
|
28
28
|
"ExPOAlgorithmForLlama",
|
|
29
|
+
"SimpleAverageForCausalLM",
|
|
29
30
|
"SimpleAverageForLlama",
|
|
31
|
+
"TaskArithmeticForCausalLM",
|
|
30
32
|
"TaskArithmeticForLlama",
|
|
31
33
|
"LinearInterpolationAlgorithm",
|
|
34
|
+
"TiesMergingForCausalLM",
|
|
32
35
|
],
|
|
33
36
|
"slerp": ["SlerpMergeAlgorithm", "SlerpForCausalLM"],
|
|
34
37
|
"simple_average": ["SimpleAverageAlgorithm"],
|
|
@@ -72,6 +75,7 @@ _import_structure = {
|
|
|
72
75
|
"fw_merging": ["FrankWolfeHardAlgorithm", "FrankWolfeSoftAlgorithm"],
|
|
73
76
|
"tall_mask": ["TallMaskTaskArithmeticAlgorithm"],
|
|
74
77
|
"model_stock": ["ModelStock"],
|
|
78
|
+
"wudi": ["wudi_merging", "WUDIMerging"],
|
|
75
79
|
# plug-and-play model merging methods
|
|
76
80
|
"concrete_subspace": [
|
|
77
81
|
"ConcreteTaskArithmeticAlgorithmForCLIP",
|
|
@@ -184,8 +188,11 @@ if TYPE_CHECKING:
|
|
|
184
188
|
ExPOAlgorithm,
|
|
185
189
|
ExPOAlgorithmForLlama,
|
|
186
190
|
LinearInterpolationAlgorithm,
|
|
191
|
+
SimpleAverageForCausalLM,
|
|
187
192
|
SimpleAverageForLlama,
|
|
193
|
+
TaskArithmeticForCausalLM,
|
|
188
194
|
TaskArithmeticForLlama,
|
|
195
|
+
TiesMergingForCausalLM,
|
|
189
196
|
)
|
|
190
197
|
from .lm_finetune import *
|
|
191
198
|
from .mixture_of_experts import (
|
|
@@ -238,6 +245,7 @@ if TYPE_CHECKING:
|
|
|
238
245
|
FlanT5WeightEnsemblingMoEAlgorithm,
|
|
239
246
|
)
|
|
240
247
|
from .weighted_average import WeightedAverageAlgorithm, WeightedAverageForLLama
|
|
248
|
+
from .wudi import WUDIMerging, wudi_merging
|
|
241
249
|
|
|
242
250
|
else:
|
|
243
251
|
sys.modules[__name__] = LazyImporter(
|
|
@@ -17,7 +17,21 @@ from fusion_bench.models.wrappers.ensemble import (
|
|
|
17
17
|
log = logging.getLogger(__name__)
|
|
18
18
|
|
|
19
19
|
|
|
20
|
+
@auto_register_config
|
|
20
21
|
class SimpleEnsembleAlgorithm(BaseAlgorithm):
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
device_map: Optional[Mapping[int, Union[str, torch.device]]] = None,
|
|
25
|
+
**kwargs,
|
|
26
|
+
):
|
|
27
|
+
"""
|
|
28
|
+
Initializes the SimpleEnsembleAlgorithm with an optional device map.
|
|
29
|
+
|
|
30
|
+
Args:
|
|
31
|
+
device_map (Optional[Mapping[int, Union[str, torch.device]]], optional): A mapping from model index to device. Defaults to None.
|
|
32
|
+
"""
|
|
33
|
+
super().__init__(**kwargs)
|
|
34
|
+
|
|
21
35
|
@torch.no_grad()
|
|
22
36
|
def run(self, modelpool: BaseModelPool | List[nn.Module]) -> EnsembleModule:
|
|
23
37
|
"""
|
|
@@ -30,9 +44,10 @@ class SimpleEnsembleAlgorithm(BaseAlgorithm):
|
|
|
30
44
|
EnsembleModule: The ensembled model.
|
|
31
45
|
"""
|
|
32
46
|
log.info(f"Running ensemble algorithm with {len(modelpool)} models")
|
|
33
|
-
|
|
34
47
|
models = [modelpool.load_model(m) for m in modelpool.model_names]
|
|
35
|
-
|
|
48
|
+
|
|
49
|
+
log.info("creating ensemble module")
|
|
50
|
+
ensemble = EnsembleModule(models=models, device_map=self.device_map)
|
|
36
51
|
return ensemble
|
|
37
52
|
|
|
38
53
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# flake8: noqa F401
|
|
2
|
+
from .expo import ExPOAlgorithm
|
|
3
|
+
from .linear_interpolation import LinearInterpolationAlgorithm
|
|
4
|
+
from .llama_expo import ExPOAlgorithmForLlama
|
|
5
|
+
from .simple_average_for_causallm import SimpleAverageForCausalLM, SimpleAverageForLlama
|
|
6
|
+
from .task_arithmetic_for_causallm import (
|
|
7
|
+
TaskArithmeticForCausalLM,
|
|
8
|
+
TaskArithmeticForLlama,
|
|
9
|
+
)
|
|
10
|
+
from .ties_merging_for_causallm import TiesMergingForCausalLM
|
|
@@ -18,16 +18,16 @@ log = get_rankzero_logger(__name__)
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
@auto_register_config
|
|
21
|
-
class
|
|
21
|
+
class SimpleAverageForCausalLM(BaseAlgorithm):
|
|
22
22
|
R"""
|
|
23
23
|
A simple averaging algorithm for LLama models. If `merge_backbone` is set to `True`, the backbone of the model will be averaged and the rest of the model will be loaded from the pre-trained model.
|
|
24
24
|
|
|
25
25
|
Examples:
|
|
26
|
-
The following example demonstrates how to use the `
|
|
26
|
+
The following example demonstrates how to use the `SimpleAverageForCausalLM` algorithm to merge Mistral models.
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
fusion_bench \
|
|
30
|
-
method=linear/
|
|
30
|
+
method=linear/simple_average_for_causallm \
|
|
31
31
|
method.model_save_path=outputs/simle_mixtral_exp_v4/simple_average \
|
|
32
32
|
modelpool=CausalLMPool/simle_mixtral_exp_v4.yaml
|
|
33
33
|
```
|
|
@@ -35,7 +35,7 @@ class SimpleAverageForLlama(BaseAlgorithm):
|
|
|
35
35
|
|
|
36
36
|
def __init__(
|
|
37
37
|
self,
|
|
38
|
-
merge_backbone: bool,
|
|
38
|
+
merge_backbone: bool = False,
|
|
39
39
|
model_save_path: Optional[str] = None,
|
|
40
40
|
show_pbar: bool = False,
|
|
41
41
|
**kwargs,
|
|
@@ -81,3 +81,7 @@ class SimpleAverageForLlama(BaseAlgorithm):
|
|
|
81
81
|
with open(os.path.join(self.model_save_path, "README.md"), "w") as f:
|
|
82
82
|
f.write(model_card_str)
|
|
83
83
|
return model
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
SimpleAverageForLlama = SimpleAverageForCausalLM
|
|
87
|
+
"""Alias for SimpleAverageForCausalLM"""
|
|
@@ -1,22 +1,27 @@
|
|
|
1
1
|
import logging
|
|
2
|
+
import os
|
|
2
3
|
from typing import Dict, List, Mapping, Optional, TypeVar, Union # noqa: F401
|
|
3
4
|
|
|
4
5
|
from typing_extensions import override
|
|
5
6
|
|
|
6
|
-
from fusion_bench import timeit_context
|
|
7
|
+
from fusion_bench import auto_register_config, timeit_context
|
|
7
8
|
from fusion_bench.method import TaskArithmeticAlgorithm
|
|
8
9
|
from fusion_bench.mixins.simple_profiler import SimpleProfilerMixin
|
|
9
10
|
from fusion_bench.modelpool import CausalLMBackbonePool, CausalLMPool
|
|
11
|
+
from fusion_bench.models.hf_utils import create_default_model_card
|
|
10
12
|
|
|
11
13
|
log = logging.getLogger(__name__)
|
|
12
14
|
|
|
13
15
|
|
|
14
|
-
|
|
16
|
+
@auto_register_config
|
|
17
|
+
class TaskArithmeticForCausalLM(
|
|
18
|
+
TaskArithmeticAlgorithm,
|
|
19
|
+
):
|
|
15
20
|
R"""
|
|
16
21
|
Examples:
|
|
17
22
|
|
|
18
23
|
fusion_bench \
|
|
19
|
-
method=linear/
|
|
24
|
+
method=linear/task_arithmetic_for_causallm \
|
|
20
25
|
method.scaling_factor=0.3 \
|
|
21
26
|
method.model_save_path=outputs/simle_mixtral_exp_v4/task_arithmetic_0.3 \
|
|
22
27
|
modelpool=CausalLMPool/simle_mixtral_exp_v4.yaml
|
|
@@ -29,18 +34,14 @@ class TaskArithmeticForLlama(TaskArithmeticAlgorithm, SimpleProfilerMixin):
|
|
|
29
34
|
def __init__(
|
|
30
35
|
self,
|
|
31
36
|
scaling_factor: float,
|
|
32
|
-
merge_backbone: bool,
|
|
37
|
+
merge_backbone: bool = False,
|
|
33
38
|
model_save_path: Optional[str] = None,
|
|
39
|
+
**kwargs,
|
|
34
40
|
):
|
|
35
|
-
|
|
36
|
-
self.model_save_path = model_save_path
|
|
37
|
-
super().__init__(scaling_factor=scaling_factor)
|
|
41
|
+
super().__init__(scaling_factor=scaling_factor, **kwargs)
|
|
38
42
|
|
|
39
43
|
@override
|
|
40
44
|
def run(self, modelpool: CausalLMPool):
|
|
41
|
-
if self.model_save_path:
|
|
42
|
-
tokenizer = modelpool.load_tokenizer()
|
|
43
|
-
|
|
44
45
|
if self.merge_backbone:
|
|
45
46
|
assert modelpool.has_pretrained
|
|
46
47
|
backbone_modelpool = CausalLMBackbonePool(**modelpool.config)
|
|
@@ -52,6 +53,15 @@ class TaskArithmeticForLlama(TaskArithmeticAlgorithm, SimpleProfilerMixin):
|
|
|
52
53
|
|
|
53
54
|
if self.model_save_path is not None:
|
|
54
55
|
with timeit_context(f"Saving the model to {self.model_save_path}"):
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
description = f"Merged model using task arithmetic with scaling factor {self.scaling_factor}."
|
|
57
|
+
modelpool.save_model(
|
|
58
|
+
model=model,
|
|
59
|
+
path=self.model_save_path,
|
|
60
|
+
save_tokenizer=True,
|
|
61
|
+
algorithm_config=self.config,
|
|
62
|
+
description=description,
|
|
63
|
+
)
|
|
57
64
|
return model
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
TaskArithmeticForLlama = TaskArithmeticForCausalLM
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
import os
|
|
3
|
+
from typing import Dict, List, Mapping, Optional, TypeVar, Union # noqa: F401
|
|
4
|
+
|
|
5
|
+
from typing_extensions import override
|
|
6
|
+
|
|
7
|
+
from fusion_bench import auto_register_config, timeit_context
|
|
8
|
+
from fusion_bench.method import TiesMergingAlgorithm
|
|
9
|
+
from fusion_bench.mixins.simple_profiler import SimpleProfilerMixin
|
|
10
|
+
from fusion_bench.modelpool import CausalLMBackbonePool, CausalLMPool
|
|
11
|
+
from fusion_bench.models.hf_utils import create_default_model_card
|
|
12
|
+
|
|
13
|
+
log = logging.getLogger(__name__)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
@auto_register_config
|
|
17
|
+
class TiesMergingForCausalLM(
|
|
18
|
+
TiesMergingAlgorithm,
|
|
19
|
+
):
|
|
20
|
+
R"""
|
|
21
|
+
TIES merging algorithm for CausalLM models.
|
|
22
|
+
|
|
23
|
+
This class extends the TiesMergingAlgorithm to work specifically with CausalLM models,
|
|
24
|
+
providing model saving capabilities and backbone merging support.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
_config_mapping = TiesMergingAlgorithm._config_mapping | {
|
|
28
|
+
"merge_backbone": "merge_backbone",
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
def __init__(
|
|
32
|
+
self,
|
|
33
|
+
scaling_factor: float,
|
|
34
|
+
threshold: float,
|
|
35
|
+
remove_keys: List[str] = None,
|
|
36
|
+
merge_func: str = "sum",
|
|
37
|
+
merge_backbone: bool = False,
|
|
38
|
+
model_save_path: Optional[str] = None,
|
|
39
|
+
**kwargs,
|
|
40
|
+
):
|
|
41
|
+
super().__init__(
|
|
42
|
+
scaling_factor=scaling_factor,
|
|
43
|
+
threshold=threshold,
|
|
44
|
+
remove_keys=remove_keys,
|
|
45
|
+
merge_func=merge_func,
|
|
46
|
+
**kwargs,
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
@override
|
|
50
|
+
def run(self, modelpool: CausalLMPool):
|
|
51
|
+
if self.merge_backbone:
|
|
52
|
+
assert modelpool.has_pretrained
|
|
53
|
+
backbone_modelpool = CausalLMBackbonePool(**modelpool.config)
|
|
54
|
+
model = modelpool.load_model("_pretrained_")
|
|
55
|
+
backbone_model = super().run(backbone_modelpool)
|
|
56
|
+
model.model.layers = backbone_model
|
|
57
|
+
else:
|
|
58
|
+
model = super().run(modelpool)
|
|
59
|
+
|
|
60
|
+
if self.model_save_path is not None:
|
|
61
|
+
with timeit_context(f"Saving the model to {self.model_save_path}"):
|
|
62
|
+
description = f"Merged model using TIES merging with scaling factor {self.scaling_factor} and threshold {self.threshold}."
|
|
63
|
+
modelpool.save_model(
|
|
64
|
+
model=model,
|
|
65
|
+
path=self.model_save_path,
|
|
66
|
+
save_tokenizer=True,
|
|
67
|
+
algorithm_config=self.config,
|
|
68
|
+
description=description,
|
|
69
|
+
)
|
|
70
|
+
return model
|
|
@@ -89,7 +89,7 @@ class SimpleAverageAlgorithm(
|
|
|
89
89
|
modelpool = BaseModelPool(modelpool)
|
|
90
90
|
|
|
91
91
|
log.info(
|
|
92
|
-
f"Fusing models using simple average on {len(modelpool.model_names)} models."
|
|
92
|
+
f"Fusing models using simple average on {len(modelpool.model_names)} models. "
|
|
93
93
|
f"models: {modelpool.model_names}"
|
|
94
94
|
)
|
|
95
95
|
sd: Optional[StateDictType] = None
|
|
@@ -119,7 +119,7 @@ class SimpleAverageAlgorithm(
|
|
|
119
119
|
|
|
120
120
|
if isinstance(forward_model, LazyStateDict):
|
|
121
121
|
# if the model is a LazyStateDict, convert it to an empty module
|
|
122
|
-
forward_model = forward_model.meta_module.to_empty(
|
|
122
|
+
forward_model = deepcopy(forward_model.meta_module).to_empty(
|
|
123
123
|
device=forward_model._device
|
|
124
124
|
)
|
|
125
125
|
result = forward_model.load_state_dict(sd, strict=False)
|
{fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/task_arithmetic/task_arithmetic.py
RENAMED
|
@@ -6,11 +6,20 @@ http://arxiv.org/abs/2212.04089
|
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
8
|
from copy import deepcopy
|
|
9
|
-
from typing import
|
|
9
|
+
from typing import ( # noqa: F401
|
|
10
|
+
TYPE_CHECKING,
|
|
11
|
+
Dict,
|
|
12
|
+
List,
|
|
13
|
+
Mapping,
|
|
14
|
+
Optional,
|
|
15
|
+
TypeVar,
|
|
16
|
+
Union,
|
|
17
|
+
)
|
|
10
18
|
|
|
11
19
|
import torch
|
|
12
20
|
from torch import nn
|
|
13
21
|
|
|
22
|
+
from fusion_bench import LazyStateDict
|
|
14
23
|
from fusion_bench.method.base_algorithm import BaseAlgorithm
|
|
15
24
|
from fusion_bench.mixins import SimpleProfilerMixin, auto_register_config
|
|
16
25
|
from fusion_bench.modelpool import BaseModelPool
|
|
@@ -21,6 +30,8 @@ from fusion_bench.utils.state_dict_arithmetic import (
|
|
|
21
30
|
)
|
|
22
31
|
from fusion_bench.utils.type import StateDictType, TorchModelType
|
|
23
32
|
|
|
33
|
+
if TYPE_CHECKING:
|
|
34
|
+
from transformers import PreTrainedModel
|
|
24
35
|
log = logging.getLogger(__name__)
|
|
25
36
|
|
|
26
37
|
|
|
@@ -125,25 +136,39 @@ class TaskArithmeticAlgorithm(
|
|
|
125
136
|
with self.profile("merge weights"):
|
|
126
137
|
if task_vector is None:
|
|
127
138
|
task_vector = state_dict_sub(
|
|
128
|
-
model.state_dict(
|
|
129
|
-
pretrained_model.state_dict(
|
|
139
|
+
model.state_dict(),
|
|
140
|
+
pretrained_model.state_dict(),
|
|
130
141
|
)
|
|
131
142
|
else:
|
|
132
143
|
task_vector = state_dict_add(
|
|
133
144
|
task_vector,
|
|
134
145
|
state_dict_sub(
|
|
135
|
-
model.state_dict(
|
|
136
|
-
pretrained_model.state_dict(
|
|
146
|
+
model.state_dict(),
|
|
147
|
+
pretrained_model.state_dict(),
|
|
137
148
|
),
|
|
138
149
|
)
|
|
139
150
|
with self.profile("merge weights"):
|
|
140
151
|
# scale the task vector
|
|
141
152
|
task_vector = state_dict_mul(task_vector, self.config.scaling_factor)
|
|
142
153
|
# add the task vector to the pretrained model
|
|
143
|
-
state_dict = state_dict_add(
|
|
144
|
-
pretrained_model.state_dict(keep_vars=True), task_vector
|
|
145
|
-
)
|
|
154
|
+
state_dict = state_dict_add(pretrained_model.state_dict(), task_vector)
|
|
146
155
|
|
|
147
156
|
self.print_profile_summary()
|
|
148
|
-
|
|
149
|
-
|
|
157
|
+
|
|
158
|
+
# apply state dict to model
|
|
159
|
+
if isinstance(pretrained_model, nn.Module):
|
|
160
|
+
model = pretrained_model
|
|
161
|
+
model.load_state_dict(state_dict)
|
|
162
|
+
elif isinstance(pretrained_model, LazyStateDict):
|
|
163
|
+
model = deepcopy(pretrained_model.meta_module)
|
|
164
|
+
model = model.to_empty(device=pretrained_model._device)
|
|
165
|
+
result = model.load_state_dict(state_dict, strict=False)
|
|
166
|
+
if result.unexpected_keys:
|
|
167
|
+
raise ValueError(
|
|
168
|
+
f"Unexpected keys in state dict: {result.unexpected_keys}"
|
|
169
|
+
)
|
|
170
|
+
if result.missing_keys:
|
|
171
|
+
log.warning(f"Missing keys in state dict: {result.missing_keys}")
|
|
172
|
+
else:
|
|
173
|
+
raise TypeError(f"Unsupported model type: {type(pretrained_model)}")
|
|
174
|
+
return model
|
{fusion_bench-0.2.23 → fusion_bench-0.2.24}/fusion_bench/method/ties_merging/ties_merging.py
RENAMED
|
@@ -9,11 +9,14 @@ Overview of Ties-Merging:
|
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
11
|
import logging
|
|
12
|
+
from copy import deepcopy
|
|
12
13
|
from typing import Any, Dict, List, Literal, Mapping, Union # noqa: F401
|
|
13
14
|
|
|
14
15
|
import torch
|
|
15
16
|
from torch import Tensor, nn
|
|
17
|
+
from transformers import PreTrainedModel
|
|
16
18
|
|
|
19
|
+
from fusion_bench import LazyStateDict
|
|
17
20
|
from fusion_bench.compat.modelpool import to_modelpool
|
|
18
21
|
from fusion_bench.method import BaseAlgorithm
|
|
19
22
|
from fusion_bench.mixins import SimpleProfilerMixin, auto_register_config
|
|
@@ -98,12 +101,25 @@ class TiesMergingAlgorithm(
|
|
|
98
101
|
merge_func=merge_func,
|
|
99
102
|
)
|
|
100
103
|
merged_check = flat_ptm + scaling_factor * merged_tv
|
|
101
|
-
|
|
104
|
+
state_dict = vector_to_state_dict(
|
|
102
105
|
merged_check, ptm_check, remove_keys=remove_keys
|
|
103
106
|
)
|
|
104
|
-
|
|
105
|
-
# Load the merged state dict into the pretrained model
|
|
106
|
-
pretrained_model.load_state_dict(merged_state_dict)
|
|
107
|
-
|
|
108
107
|
self.print_profile_summary()
|
|
109
|
-
|
|
108
|
+
|
|
109
|
+
# apply state dict to model
|
|
110
|
+
if isinstance(pretrained_model, nn.Module):
|
|
111
|
+
model = pretrained_model
|
|
112
|
+
model.load_state_dict(state_dict)
|
|
113
|
+
elif isinstance(pretrained_model, LazyStateDict):
|
|
114
|
+
model = deepcopy(pretrained_model.meta_module)
|
|
115
|
+
model = model.to_empty(device=pretrained_model._device)
|
|
116
|
+
result = model.load_state_dict(state_dict, strict=False)
|
|
117
|
+
if result.unexpected_keys:
|
|
118
|
+
raise ValueError(
|
|
119
|
+
f"Unexpected keys in state dict: {result.unexpected_keys}"
|
|
120
|
+
)
|
|
121
|
+
if result.missing_keys:
|
|
122
|
+
log.warning(f"Missing keys in state dict: {result.missing_keys}")
|
|
123
|
+
else:
|
|
124
|
+
raise TypeError(f"Unsupported model type: {type(pretrained_model)}")
|
|
125
|
+
return model
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .wudi import WUDIMerging, wudi_merging
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Whoever Started the Interference Should End It: Guiding Data-Free Model Merging via Task Vectors
|
|
3
|
+
Arxiv: http://arxiv.org/abs/2503.08099
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from typing import List
|
|
7
|
+
|
|
8
|
+
import torch
|
|
9
|
+
from tqdm import tqdm
|
|
10
|
+
|
|
11
|
+
from fusion_bench import BaseAlgorithm, BaseModelPool, auto_register_config
|
|
12
|
+
from fusion_bench.mixins import LightningFabricMixin
|
|
13
|
+
from fusion_bench.utils import timeit_context
|
|
14
|
+
from fusion_bench.utils.state_dict_arithmetic import state_dict_add, state_dict_sub
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def wudi_merging(
|
|
18
|
+
task_vectors: List[torch.Tensor],
|
|
19
|
+
accelerator="cuda",
|
|
20
|
+
iter_num: int = 300,
|
|
21
|
+
exclude_keys: List[str] = None,
|
|
22
|
+
):
|
|
23
|
+
exclude_keys = [] if exclude_keys is None else exclude_keys
|
|
24
|
+
|
|
25
|
+
with timeit_context("WUDI Merging"):
|
|
26
|
+
new_vector = {}
|
|
27
|
+
for key in tqdm(task_vectors[0], desc="WUDI Merging", leave=False):
|
|
28
|
+
tqdm.write(f"key: {key}")
|
|
29
|
+
original_device = task_vectors[0][key].device
|
|
30
|
+
tvs = torch.stack(
|
|
31
|
+
[
|
|
32
|
+
task_vector[key].to(device=accelerator, non_blocking=True)
|
|
33
|
+
for task_vector in task_vectors
|
|
34
|
+
]
|
|
35
|
+
)
|
|
36
|
+
num_tvs = len(tvs)
|
|
37
|
+
new_vector[key] = torch.nn.Parameter(torch.sum(tvs, dim=0))
|
|
38
|
+
|
|
39
|
+
if len(task_vectors[0][key].shape) == 2 and key not in exclude_keys:
|
|
40
|
+
optimizer = torch.optim.Adam([new_vector[key]], lr=1e-5, weight_decay=0)
|
|
41
|
+
l2_norms = torch.square(
|
|
42
|
+
torch.norm(tvs.reshape(tvs.shape[0], -1), p=2, dim=-1)
|
|
43
|
+
)
|
|
44
|
+
for i in tqdm(
|
|
45
|
+
range(iter_num),
|
|
46
|
+
):
|
|
47
|
+
disturbing_vectors = new_vector[key].unsqueeze(0) - tvs
|
|
48
|
+
product = torch.matmul(disturbing_vectors, tvs.transpose(1, 2))
|
|
49
|
+
loss = torch.sum(
|
|
50
|
+
torch.square(product) / l2_norms.unsqueeze(-1).unsqueeze(-1)
|
|
51
|
+
)
|
|
52
|
+
optimizer.zero_grad()
|
|
53
|
+
loss.backward()
|
|
54
|
+
optimizer.step()
|
|
55
|
+
else:
|
|
56
|
+
new_vector[key] = new_vector[key] / num_tvs
|
|
57
|
+
new_vector[key] = new_vector[key].to(
|
|
58
|
+
device=original_device, non_blocking=True
|
|
59
|
+
)
|
|
60
|
+
return new_vector
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
@auto_register_config
|
|
64
|
+
class WUDIMerging(
|
|
65
|
+
LightningFabricMixin,
|
|
66
|
+
BaseAlgorithm,
|
|
67
|
+
):
|
|
68
|
+
"""
|
|
69
|
+
Whoever Started the Interference Should End It: Guiding Data-Free Model Merging via Task Vectors
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
def __init__(
|
|
73
|
+
self,
|
|
74
|
+
iter_num: int,
|
|
75
|
+
exclude_keys: List[str] = None,
|
|
76
|
+
**kwargs,
|
|
77
|
+
):
|
|
78
|
+
super().__init__(**kwargs)
|
|
79
|
+
|
|
80
|
+
def run(self, modelpool: BaseModelPool):
|
|
81
|
+
# load the pretrained model and the task vectors of all the finetuned models
|
|
82
|
+
with torch.no_grad():
|
|
83
|
+
pretrained_model = modelpool.load_pretrained_model()
|
|
84
|
+
task_vectors = []
|
|
85
|
+
for model_name in modelpool.model_names:
|
|
86
|
+
finetuned_model = modelpool.load_model(model_name)
|
|
87
|
+
task_vectors.append(
|
|
88
|
+
state_dict_sub(
|
|
89
|
+
finetuned_model.state_dict(), pretrained_model.state_dict()
|
|
90
|
+
)
|
|
91
|
+
)
|
|
92
|
+
del finetuned_model # free memory
|
|
93
|
+
|
|
94
|
+
merged_tv = wudi_merging(
|
|
95
|
+
task_vectors,
|
|
96
|
+
accelerator=self.fabric.device,
|
|
97
|
+
iter_num=self.iter_num,
|
|
98
|
+
exclude_keys=self.exclude_keys,
|
|
99
|
+
)
|
|
100
|
+
|
|
101
|
+
pretrained_model.load_state_dict(
|
|
102
|
+
state_dict_add(pretrained_model.state_dict(), merged_tv)
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
return pretrained_model
|
|
@@ -100,6 +100,10 @@ class LightningFabricMixin:
|
|
|
100
100
|
self.setup_lightning_fabric(getattr(self, "config", DictConfig({})))
|
|
101
101
|
return self._fabric_instance
|
|
102
102
|
|
|
103
|
+
@fabric.setter
|
|
104
|
+
def fabric(self, instance: L.Fabric):
|
|
105
|
+
self._fabric_instance = instance
|
|
106
|
+
|
|
103
107
|
@property
|
|
104
108
|
def log_dir(self):
|
|
105
109
|
"""
|