fusion-bench 0.2.27__tar.gz → 0.2.28__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.27 → fusion_bench-0.2.28}/PKG-INFO +1 -1
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/__init__.py +4 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/classification/image_classification_finetune.py +12 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_arithmetic/task_arithmetic.py +4 -1
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/__init__.py +24 -2
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/base_pool.py +8 -1
- fusion_bench-0.2.28/fusion_bench/modelpool/convnext_for_image_classification.py +198 -0
- fusion_bench-0.2.28/fusion_bench/modelpool/dinov2_for_image_classification.py +197 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/resnet_for_image_classification.py +4 -1
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/json.py +49 -8
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench.egg-info/PKG-INFO +1 -1
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench.egg-info/SOURCES.txt +4 -0
- fusion_bench-0.2.28/fusion_bench_config/modelpool/ConvNextForImageClassification/convnext-base-224.yaml +10 -0
- fusion_bench-0.2.28/fusion_bench_config/modelpool/Dinov2ForImageClassification/dinov2-base-imagenet1k-1-layer.yaml +10 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/pyproject.toml +1 -1
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/LICENSE +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/README.md +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/__main__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/_get_started/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/_get_started/greeting_program.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/method/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/method/base_algorithm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/modelpool/AutoModelForSeq2SeqLM.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/modelpool/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/modelpool/base_pool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/modelpool/huggingface_clip_vision.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/taskpool/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/taskpool/base_pool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/taskpool/clip_image_classification.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/compat/taskpool/flan_t5_glue_text_generation.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/constants/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/constants/banner.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/constants/clip_vision.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/constants/paths.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/constants/runtime.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/arc_agi/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/arc_agi/arc.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/arc_agi/arc_agi.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/arc_agi/augmenters.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/arc_agi/messagers.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/arc_agi/np_cache.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/arc_agi/preprocess.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/arc_agi/representers.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/clip_dataset.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/fer2013.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/gpt2_glue.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/gsm8k.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/image_corruption/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/image_corruption/make_corruption.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/image_dataset.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/imdb.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/alpaca.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/collate.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/metamathqa.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/openai.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/preference_700k.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/sharegpt.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/squad.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/stanford_shp.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/ultrachat.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/llama/wikitext.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/dataset/nyuv2.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/ada_svd/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/ada_svd/clip_vision.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/clip_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/clip_task_wise_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/entropy_loss.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/flan_t5_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/gpt2_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/llama_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/resnet_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/task_wise_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/adamerging/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/analysis/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/analysis/task_vector_cos_similarity.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/analysis/task_vector_violin_plot.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/base_algorithm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/bitdelta/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/bitdelta/bitdelta.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/bitdelta/bitdelta_utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/bitdelta/bitdelta_utils/binary_gemm_kernel.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/bitdelta/bitdelta_utils/data.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/bitdelta/bitdelta_utils/diff.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/classification/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/classification/clip_finetune.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/classification/continual_clip_finetune.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/concrete_subspace/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/concrete_subspace/clip_concrete_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/concrete_subspace/clip_concrete_task_arithmetic.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/concrete_subspace/clip_post_defense.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/concrete_subspace/clip_safe_concrete_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dare/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dare/simple_average.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dare/task_arithmetic.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dare/ties_merging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dare/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dawe/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dawe/dawe_for_clip.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dawe/warppers/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dawe/warppers/dawe_model.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/depth_upscaling/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/depth_upscaling/depth_upscaling.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/depth_upscaling/depth_upscaling_for_llama.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/doge_ta/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/doge_ta/clip_layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/doge_ta/doge_ta.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/doge_ta/layer_wise_adamerging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dop/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dop/dop.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dop/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dop/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/dummy.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/ensemble.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/expert_sparsity/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/expert_sparsity/mixtral/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/expert_sparsity/mixtral/dynamic_skipping.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/expert_sparsity/mixtral/layer_wise_pruning.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/expert_sparsity/mixtral/progressive_pruning.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/expert_sparsity/utils/calibration_data.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/fisher_merging/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/fisher_merging/clip_fisher_merging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/fisher_merging/fisher_merging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/fisher_merging/gpt2_fisher_merging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/fw_merging/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/fw_merging/fw_hard.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/fw_merging/fw_soft.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/fw_merging/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/clip_layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/clip_task_wise_gossip.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/entropy_loss.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/flan_t5_layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/layer_wise_gossip.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/min_norm_solvers.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/task_wise_gossip.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/gossip/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/isotropic_merging/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/isotropic_merging/iso.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/isotropic_merging/iso_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/knots/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/knots/knots_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/linear/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/linear/expo.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/linear/linear_interpolation.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/linear/llama_expo.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/linear/simple_average_for_causallm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/linear/task_arithmetic_for_causallm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/linear/ties_merging_for_causallm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/lm_finetune/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/lm_finetune/bradley_terry_rm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/lm_finetune/causal_lm_pretrain.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/lm_finetune/fullfinetune_sft.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/lm_finetune/peftfinetune_sft.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/mixture_of_experts/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/mixture_of_experts/mixtral_merging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/mixture_of_experts/mixtral_upcycling.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/model_recombination.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/model_stock/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/model_stock/model_stock.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/hooks/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/hooks/deepseek_v2.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/hooks/hook.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/hooks/mixtral.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/moe_pruner.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/utils/data.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/utils/layerwrapper.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/utils/prune.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/moe_pruner/utils/score.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/opcm/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/opcm/opcm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/opcm/task_arithmetic.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/opcm/ties_merging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/opcm/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/opcm/weight_average.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/llama_magnitude_prune.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/llama_random_prune.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/llama_sparsegpt_prune.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/llama_wanda_prune.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/magnitude_diff_pruning.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/prune_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/sparsegpt_utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/sparsegpt_utils/sparsegpt.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/wanda_utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/wanda_utils/ablate.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/wanda_utils/data.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/wanda_utils/eval.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/wanda_utils/layerwrapper.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/wanda_utils/prune.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/wanda_utils/prune_opt.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pruning/wanda_utils/sparsegpt.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pwe_moe/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pwe_moe/clip_pwe_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pwe_moe/module.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pwe_moe/openclip_pwe_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pwe_moe/phn/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pwe_moe/phn/solvers.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/pwe_moe/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/randes/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/randes/base_algorithm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/randes/modelsoup.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/randes/task_arithmetic.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/rankone_moe/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/rankone_moe/clip_rankone_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/rankone_moe/rankone_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/regmean/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/regmean/clip_regmean.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/regmean/gpt2_regmean.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/regmean/regmean.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/regmean/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/regmean_plusplus/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/regmean_plusplus/clip_regmean_plusplus.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/regmean_plusplus/regmean_plusplus.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/simple_average.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/slerp/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/slerp/slerp.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/slerp/slerp_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/smile_upscaling/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/smile_upscaling/causal_lm_upscaling.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/smile_upscaling/error_accumulation.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/smile_upscaling/projected_energy.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/smile_upscaling/singular_projection_merging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/smile_upscaling/smile_mistral_upscaling.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/smile_upscaling/smile_qwen2_upscaling.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/smile_upscaling/smile_upscaling.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/sparse_we_moe/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/sparse_we_moe/sparse_clip_we_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/sparse_we_moe/sparse_we_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/sparselo/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/sparselo/sparselo.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/surgery/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/surgery/clip_layer_wise_adamerging_surgery.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/tall_mask/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/tall_mask/task_arithmetic.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/tall_mask/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_arithmetic/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_singular_vector/TSVC.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_singular_vector/TSVM.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_singular_vector/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_singular_vector/utils/TSVC_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_singular_vector/utils/TSVM_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_singular_vector/utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_singular_vector/utils/task_singular_interference.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/ties_merging/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/ties_merging/ties_merging.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/ties_merging/ties_merging_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/trust_region/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/trust_region/clip_task_arithmetic.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/trust_region/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/we_moe/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/we_moe/clip_we_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/we_moe/entropy_loss.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/we_moe/flan_t5_we_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/we_moe/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/we_moe/we_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/weighted_average/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/weighted_average/llama.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/weighted_average/weighted_average.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/wudi/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/wudi/wudi.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/continual_learning/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/continual_learning/backward_transfer.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/nyuv2/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/nyuv2/depth.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/nyuv2/loss.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/nyuv2/noise.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/nyuv2/normal.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/nyuv2/segmentation.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/text_to_image_generation/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/text_to_image_generation/aesthetic_scorer.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/text_to_image_generation/compressibility.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/metrics/text_to_image_generation/pickscore_scorer.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/clip_classification.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/fabric_training.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/hydra_config.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/lightning_fabric.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/openclip_classification.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/optim/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/optim/adamw_with_warmup.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/pyinstrument.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/rich_live.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/serialization.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/mixins/simple_profiler.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/PeftModelForSeq2SeqLM.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/causal_lm/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/causal_lm/causal_lm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/clip_vision/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/clip_vision/modelpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/huggingface_automodel.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/huggingface_gpt2_classification.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/lazy_state_dict_pool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/nyuv2_modelpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/openclip_vision/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/openclip_vision/modelpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/seq2seq_lm/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/seq2seq_lm/modelpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/seq_classification_lm/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/seq_classification_lm/reward_model.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/modelpool/seq_classification_lm/seq_classification_lm.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/chat_templates/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/chat_templates/llama_3_Instruct.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/chat_templates/load_tokenizer.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/expert_sparsity/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/expert_sparsity/mixtral/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/expert_sparsity/mixtral/dataset.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/expert_sparsity/mixtral/modeling_mixtral.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/expert_sparsity/mixtral/wrapper.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/hf_clip.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/hf_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/linearized/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/linearized/linearized_model_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/linearized/vision_model.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/model_utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/model_utils/embedding.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/model_utils/liger_kernel.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/model_utils/misc.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/model_utils/mod.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/model_utils/visual.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/patcher.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/llama/tokenizer_loader.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/masks/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/masks/mask_model.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/model_card_templates/default.md +1 -1
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_deepseek_v2/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_deepseek_v2/configuration_deepseek.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_deepseek_v2/modeling_deepseek.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_deepseek_v2/tokenization_deepseek_fast.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_losparse_llama/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_losparse_llama/configuration_losparse_llama.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_losparse_llama/losparse_linear.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_losparse_llama/modeling_losparse_llama.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_losparse_llama/register.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_losparse_llama/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_gemma2/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_gemma2/configuration_smile_gemma2.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_gemma2/modeling_smile_gemma2.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_gemma2/register.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_llama/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_llama/configuration_smile_llama.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_llama/modeling_smile_llama.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_llama/register.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_mistral/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_mistral/configuration_smile_mistral.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_mistral/modeling_smile_mistral.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_mistral/register.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_qwen2/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_qwen2/configuration_smile_qwen2.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_qwen2/modeling_smile_qwen2.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/modeling_smile_qwen2/register.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/nyuv2/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/nyuv2/aspp.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/nyuv2/lightning_module.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/nyuv2/resnet.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/nyuv2/resnet_dilated.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/open_clip/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/open_clip/modeling.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/open_clip/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/open_clip/variables_and_paths.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/parameter_dict.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/rankone_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/separate_io.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/smile_moe/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/smile_moe/linear_from_hf_config.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/smile_moe/linear_from_module.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/smile_moe/utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/smile_moe/utils/svd_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/sparse_we_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/surgery/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/surgery/surgerymodelwrapper.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/we_moe.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/wrappers/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/wrappers/ensemble.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/wrappers/layer_wise_fusion.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/wrappers/layer_wise_fusion_doge_ta.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/models/wrappers/task_wise_fusion.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/optim/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/optim/exception.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/optim/lr_scheduler/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/optim/lr_scheduler/linear_warmup.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/optim/lr_scheduler/utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/optim/lr_scheduler/utils/visualization.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/optim/mezo.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/optim/muon.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/programs/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/programs/base_program.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/programs/fabric_fusion_program.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/programs/fusion_program.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/scripts/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/scripts/cli.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/scripts/clip/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/scripts/clip/convert_checkpoint.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/scripts/imgui.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/scripts/nyuv2_mtl_train.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/scripts/webui.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/base_pool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/clip_vision/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/clip_vision/clip_rankone_moe_taskpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/clip_vision/clip_smile_taskpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/clip_vision/clip_sparse_wemoe_taskpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/clip_vision/taskpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/clip_vision/utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/clip_vision/utils/routing_analysis_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/dummy.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/gpt2_text_classification.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/llama/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/llama/reward_model.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/llama/test_generation.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/lm_eval_harness/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/lm_eval_harness/taskpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/nyuv2_taskpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/openclip_vision/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/openclip_vision/openclip_taskpool.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/taskpool/resnet_for_image_classification.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/base_task.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/classification.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/cifar10.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/cifar100.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/clip_dataset.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/cub_200_2011.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/dtd.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/emnist_letters.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/emnist_mnist.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/eurosat.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/fashion_mnist.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/fer2013.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/flower102.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/food101.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/gtsrb.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/imagenet.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/kmnist.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/mnist.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/mongo_leaf_disease.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/oxford_iiit_pet.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/pcam.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/rendered_sst2.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/resisc45.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/stanford_cars.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/stl10.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/sun397.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/svhn.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/clip_classification/tiny_imagenet.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/flan_t5_text_generation/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/flan_t5_text_generation/datasets_preprocess.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/flan_t5_text_generation/glue_evaluation.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/flan_t5_text_generation/glue_load_dataset.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/flan_t5_text_generation/glue_preprocessors.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/tasks/flan_t5_text_generation/glue_prompt_templates.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/auto.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/cache_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/data.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/devices.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/dict.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/dtype.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/expr.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/fabric.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/functools.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/hydra_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/instantiate_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/lazy_imports.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/lazy_state_dict.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/misc.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/modelscope.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/packages.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/parameters.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/path.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/plot/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/plot/color_data.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/plot/token.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/plot/token_notebook.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/pylogger.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/rich_utils.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/set.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/state_dict_arithmetic.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/strenum/__init__.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/strenum/_name_mangler.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/strenum/_version.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/tensorboard.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/timer.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/utils/type.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench.egg-info/dependency_links.txt +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench.egg-info/entry_points.txt +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench.egg-info/requires.txt +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench.egg-info/top_level.txt +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/README.md +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/_get_started/clip_evaluate_single_model.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/_get_started/clip_simple_average.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/_get_started/clip_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/_get_started/greeting_program.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/_get_started/llm_slerp.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/README.md +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/TALL10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/TALL12.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/TALL16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/TALL18.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/cub-200-2011.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/emnist_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/mango-leaf-disease.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/test/tiny-imagenet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/TALL10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/TALL12.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/TALL16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/TALL18.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/cub-200-2011.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/emnist_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/mango-leaf-disease.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/train/tiny-imagenet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/image_classification/val/the_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/llm_sft/alpaca_cleaned.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/llm_sft/ultrachat_200k.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/question_answering/search_qa.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/question_answering/test/search_qa.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/question_answering/train/MetaMathQA.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/question_answering/train/search_qa.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/question_answering/val/search_qa.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/summarization/test/xsum.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/summarization/train/xsum.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/summarization/val/xsum.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/summarization/xsum.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/text_generation/test/gsm-hard.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/text_generation/test/gsm8k.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/text_generation/test/gsm8k_question_label.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/text_generation/train/CodeAlpaca-20k.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/text_generation/train/gsm8k.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/dataset/text_generation/train/gsm8k_question_label.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/auto.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/llama_ddp.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/llama_fsdp.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/llama_peft_fsdp.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/loggers/csv_logger.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/loggers/mlflow_logger.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/loggers/swandb_logger.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/loggers/tensorboard_logger.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/loggers/wandb_logger.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/strategy/deepspeed.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/strategy/llama_fsdp.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric/strategy/llama_peft_fsdp.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/fabric_model_fusion.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/hydra/default.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/hydra/help/fusion_bench_help.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/hydra/job_logging/rich_logging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/llama_full_finetune.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/llama_magnitude_pruning.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/llama_model_fusion.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/ada_svd/clip_vision.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/adamerging/clip.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/adamerging/layer_wise_flan_t5.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/adamerging/layer_wise_gpt2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/adamerging/llama_sft.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/adamerging/resnet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/analysis/task_vector_cos_similarity.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/analysis/task_vector_violin_plot.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/bitdelta/bitdelta.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/classification/clip_continual_finetune.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/classification/clip_finetune.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/classification/image_classification_finetune.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/classification/image_classification_finetune_test.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/concrete_subspace/clip_concrete_layer_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/concrete_subspace/clip_concrete_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/concrete_subspace/clip_concrete_task_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/concrete_subspace/clip_post_defense_AWM.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/concrete_subspace/clip_post_defense_SAU.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/concrete_subspace/clip_safe_concrete_layer_wise_adamerging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/concrete_subspace/clip_safe_concrete_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/dare/simple_average.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/dare/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/dare/ties_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/dawe/dawe_for_clip.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/depth_upscaling.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/doge_ta/doge_ta.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/dop/dop.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/dummy.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/ensemble/max_model_predictor.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/ensemble/simple_ensemble.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/ensemble/weighted_ensemble.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/expert_sparsity/README.md +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/expert_sparsity/mixtral.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/fisher_merging/clip_fisher_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/fisher_merging/fisher_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/fisher_merging/gpt2_fisher_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/fw_merging/fw_hard.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/fw_merging/fw_soft.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/gossip/layer_wise_clip.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/gossip/layer_wise_flan_t5.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/isotropic_merging/iso_c.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/isotropic_merging/iso_cts.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/expo.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/linear_interpolation.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/llama_expo.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/llama_expo_with_dare.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/simple_average_for_causallm.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/task_arithmetic_for_causallm.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/ties_merging_for_causallm.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/weighted_average.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/linear/weighted_average_for_llama.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/lm_finetune/bradley_terry_rm.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/lm_finetune/fullfinetune_sft.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/lm_finetune/peftfinetune_sft.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/mixtral_moe_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/mixtral_moe_upscaling.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/model_recombination.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/model_stock/model_stock.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/moe_pruner/moe_pruner.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/opcm/opcm.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/opcm/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/opcm/ties_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/opcm/weight_average.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/pruning/llama_magnitude_pruning.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/pruning/llama_random_pruning.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/pruning/llama_sparsegpt_pruning.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/pruning/llama_wanda_pruning.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/pruning/magnitude_diff_pruning.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/pwe_moe/epo_for_openclip.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/pwe_moe/ls_for_openclip.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/pwe_moe/pwe_moe_ls_for_clip.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/randes/superposed_model_soup.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/randes/superposed_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/randes/superposed_task_arithmetic_lora.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/rankone_moe/rankone_moe.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/regmean/clip_regmean.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/regmean/gpt2_regmean.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/regmean/regmean.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/regmean_plusplus/clip_regmean_plusplus.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/simple_average.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/slerp/slerp.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/slerp/slerp_lm.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/smile_upscaling/causal_lm_upscaling.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/smile_upscaling/error_accumulation.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/smile_upscaling/projected_energy.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/smile_upscaling/singular_projection_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/smile_upscaling/smile_mistral_upscaling.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/smile_upscaling/smile_qwen2_upscaling.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/smile_upscaling/smile_upscaling.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/sparselo_pruning/llama_iterative_sparselo.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/sparselo_pruning/llama_pcp_sparselo.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/sparselo_pruning/llama_sparselo.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/surgery/adamerging_surgery.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/tall_mask/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/task_singular_vector/TaskSingularVectorMerging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/ties_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/trust_region/clip_task_arithmetic.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/wemoe/flan_t5_weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/wemoe/sparse_weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/wemoe/weight_ensembling_moe.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/method/wudi/wudi.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/README.md +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch16_svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL12.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL18.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-base-patch32_svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_eight_tasks.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/clip-vit-large-patch14_svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/download_TALL20_models.sh +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/clip-vit/generate_vit_model_config.sh +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-cola.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-cola_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mnli.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mrpc.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-mrpc_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qnli.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qqp.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-qqp_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-rte.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-rte_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-sst2_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-stsb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-base_glue-stsb_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-cola_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-mnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-mrpc_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-qnli_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-qqp_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-rte_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-sst2_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/flan-t5-large_glue-stsb_lora-16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model/flan-t5/generate_flan-t5.sh +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/model_fusion.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/_template.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8_lora.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_individual.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch16_individual_lora.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8_control_task.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL12.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL18.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_cars_and_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_generalization_exp1.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_generalization_exp2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_individual.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_mtl.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_robustness_clean.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_single_finetuned.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_single_task_projection.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_and_cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_and_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_sun397_cars_and_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_svhn_and_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-base-patch32_two_tasks_control_task.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TA8_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL14_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_TALL20_model_only.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CLIPVisionModelPool/clip-vit-large-patch14_individual.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_math_and_code.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-1.5B_three_models.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/Qwen2.5-7B-math_and_coder.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/deepseek-v2-lite.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/llama-7b_3-models_v1.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/llama_alpaca_cleaned.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/llama_codealpaca.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/llama_for_causallm.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/llama_metamathqa.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/llama_ultrachat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.1-8B-Instruct.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.1-8B.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.2-3B-Instruct.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mergebench/Llama-3.2-3B.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-2b-it.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-2b.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-9b-it.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mergebench/gemma-2-9b.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mistral-7b.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mixtral-8x7b.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/mixtral_moe_merging.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/qwen2_math_1.5B_and_R1.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/simle_mixtral_exp_v4.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/single_llama_model.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/CausalLMPool/vicuna-7b-v1.5.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/README.md +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-16_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_cars_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_sun397_cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_TA_sun397_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-B-32_individual.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/OpenCLIPVisionModelPool/ViT-L-14_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/_generate_config.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet152_svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet18_svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/ResNetForImageClassification/transformers/resnet50_svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/Seq2SeqLMPool/_template.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_lora16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_lora16_tta.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_glue_tta.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-base_individual.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/Seq2SeqLMPool/flan-t5-large_glue_lora16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/SequenceClassificationModelPool/llama_preference700k.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/SequenceClassificationModelPool/roberta-base_glue.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/SequenceClassificationModelPool/single_reward_model.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/automodelpool.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/gpt-2_glue.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/nyuv2_modelpool.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/smile_mistral_exp_v1.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/smile_mistral_exp_v2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/smile_mistral_exp_v3.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/modelpool/smile_mistral_exp_v4.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/nyuv2_config.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/nyuv2_mtl_train.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/path/default.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/_template.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-base-patch32_svhn_and_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_B16.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_L14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_val.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TA8_with_control_task.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TALL14.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-classification_TALL20.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_cifar10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_cifar100.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_dtd.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_emnist_letters.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_eurosat.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_fashion_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_fer2013.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_food101.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_gtsrb.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_kmnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_mnist.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford-iiit-pet.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford_flowers102.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_oxford_flowers102_val.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_pcam.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_rendered-sst2.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_resisc45.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_stanford-cars.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_stl10.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_sun397.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip-vit-single-task_svhn.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip_rankone_wemoe_clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/CLIPVisionModelTaskPool/clip_sparse_wemoe_clip-vit-classification_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/LMEvalHarnessTaskPool/lm_eval.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-B-16_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-B-32_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/OpenCLIPVisionModelTaskPool/ViT-L-14_TA8.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/clip-vit-base-patch32_robustness_clean.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/clip-vit-base-patch32_robustness_corrupted.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/dummy.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/flan-t5_glue_text_generation.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/gpt-2_glue.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/nyuv2_taskpool.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench_config/taskpool/reward_model_evaluation.yaml +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/setup.cfg +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/tests/test_depth_upscaling.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/tests/test_simple_average.py +0 -0
- {fusion_bench-0.2.27 → fusion_bench-0.2.28}/tests/test_weighed_ensemble.py +0 -0
|
@@ -41,6 +41,8 @@ _import_structure = {
|
|
|
41
41
|
"CausalLMBackbonePool",
|
|
42
42
|
"CausalLMPool",
|
|
43
43
|
"CLIPVisionModelPool",
|
|
44
|
+
"ConvNextForImageClassificationPool",
|
|
45
|
+
"Dinov2ForImageClassificationPool",
|
|
44
46
|
"GPT2ForSequenceClassificationPool",
|
|
45
47
|
"HuggingFaceGPT2ClassificationPool",
|
|
46
48
|
"NYUv2ModelPool",
|
|
@@ -107,6 +109,8 @@ if TYPE_CHECKING:
|
|
|
107
109
|
CausalLMBackbonePool,
|
|
108
110
|
CausalLMPool,
|
|
109
111
|
CLIPVisionModelPool,
|
|
112
|
+
ConvNextForImageClassificationPool,
|
|
113
|
+
Dinov2ForImageClassificationPool,
|
|
110
114
|
GPT2ForSequenceClassificationPool,
|
|
111
115
|
HuggingFaceGPT2ClassificationPool,
|
|
112
116
|
NYUv2ModelPool,
|
|
@@ -34,6 +34,13 @@ from torch.utils.data import random_split
|
|
|
34
34
|
log = get_rankzero_logger(__name__)
|
|
35
35
|
|
|
36
36
|
|
|
37
|
+
def _get_base_model_name(model) -> Optional[str]:
|
|
38
|
+
if hasattr(model, "config") and hasattr(model.config, "_name_or_path"):
|
|
39
|
+
return model.config._name_or_path
|
|
40
|
+
else:
|
|
41
|
+
return None
|
|
42
|
+
|
|
43
|
+
|
|
37
44
|
@auto_register_config
|
|
38
45
|
class ImageClassificationFineTuning(BaseAlgorithm):
|
|
39
46
|
"""Fine-tuning algorithm for image classification models.
|
|
@@ -107,6 +114,8 @@ class ImageClassificationFineTuning(BaseAlgorithm):
|
|
|
107
114
|
"""
|
|
108
115
|
# load model and dataset
|
|
109
116
|
model = modelpool.load_pretrained_or_first_model()
|
|
117
|
+
base_model_name = _get_base_model_name(model)
|
|
118
|
+
|
|
110
119
|
assert isinstance(model, nn.Module), "Loaded model is not a nn.Module."
|
|
111
120
|
|
|
112
121
|
assert (
|
|
@@ -135,6 +144,8 @@ class ImageClassificationFineTuning(BaseAlgorithm):
|
|
|
135
144
|
val_dataset, processor=modelpool.load_processor(stage="val")
|
|
136
145
|
)
|
|
137
146
|
val_loader = self.get_dataloader(val_dataset, stage="val")
|
|
147
|
+
else:
|
|
148
|
+
val_loader = None
|
|
138
149
|
|
|
139
150
|
# configure optimizer
|
|
140
151
|
optimizer = instantiate(self.optimizer, params=model.parameters())
|
|
@@ -210,6 +221,7 @@ class ImageClassificationFineTuning(BaseAlgorithm):
|
|
|
210
221
|
),
|
|
211
222
|
algorithm_config=self.config,
|
|
212
223
|
description=f"Fine-tuned ResNet model on dataset {dataset_name}.",
|
|
224
|
+
base_model=base_model_name,
|
|
213
225
|
)
|
|
214
226
|
return model
|
|
215
227
|
|
{fusion_bench-0.2.27 → fusion_bench-0.2.28}/fusion_bench/method/task_arithmetic/task_arithmetic.py
RENAMED
|
@@ -149,7 +149,10 @@ class TaskArithmeticAlgorithm(
|
|
|
149
149
|
)
|
|
150
150
|
with self.profile("merge weights"):
|
|
151
151
|
# scale the task vector
|
|
152
|
-
|
|
152
|
+
# here we keep the dtype when the elements of value are all zeros to avoid dtype mismatch
|
|
153
|
+
task_vector = state_dict_mul(
|
|
154
|
+
task_vector, self.config.scaling_factor, keep_dtype_when_zero=True
|
|
155
|
+
)
|
|
153
156
|
# add the task vector to the pretrained model
|
|
154
157
|
state_dict = state_dict_add(pretrained_model.state_dict(), task_vector)
|
|
155
158
|
|
|
@@ -8,6 +8,14 @@ _import_structure = {
|
|
|
8
8
|
"base_pool": ["BaseModelPool"],
|
|
9
9
|
"causal_lm": ["CausalLMPool", "CausalLMBackbonePool"],
|
|
10
10
|
"clip_vision": ["CLIPVisionModelPool"],
|
|
11
|
+
"convnext_for_image_classification": [
|
|
12
|
+
"ConvNextForImageClassificationPool",
|
|
13
|
+
"load_transformers_convnext",
|
|
14
|
+
],
|
|
15
|
+
"dinov2_for_image_classification": [
|
|
16
|
+
"Dinov2ForImageClassificationPool",
|
|
17
|
+
"load_transformers_dinov2",
|
|
18
|
+
],
|
|
11
19
|
"nyuv2_modelpool": ["NYUv2ModelPool"],
|
|
12
20
|
"huggingface_automodel": ["AutoModelPool"],
|
|
13
21
|
"seq2seq_lm": ["Seq2SeqLMPool"],
|
|
@@ -18,7 +26,10 @@ _import_structure = {
|
|
|
18
26
|
"GPT2ForSequenceClassificationPool",
|
|
19
27
|
],
|
|
20
28
|
"seq_classification_lm": ["SequenceClassificationModelPool"],
|
|
21
|
-
"resnet_for_image_classification": [
|
|
29
|
+
"resnet_for_image_classification": [
|
|
30
|
+
"ResNetForImageClassificationPool",
|
|
31
|
+
"load_transformers_resnet",
|
|
32
|
+
],
|
|
22
33
|
}
|
|
23
34
|
|
|
24
35
|
|
|
@@ -26,6 +37,14 @@ if TYPE_CHECKING:
|
|
|
26
37
|
from .base_pool import BaseModelPool
|
|
27
38
|
from .causal_lm import CausalLMBackbonePool, CausalLMPool
|
|
28
39
|
from .clip_vision import CLIPVisionModelPool
|
|
40
|
+
from .convnext_for_image_classification import (
|
|
41
|
+
ConvNextForImageClassificationPool,
|
|
42
|
+
load_transformers_convnext,
|
|
43
|
+
)
|
|
44
|
+
from .dinov2_for_image_classification import (
|
|
45
|
+
Dinov2ForImageClassificationPool,
|
|
46
|
+
load_transformers_dinov2,
|
|
47
|
+
)
|
|
29
48
|
from .huggingface_automodel import AutoModelPool
|
|
30
49
|
from .huggingface_gpt2_classification import (
|
|
31
50
|
GPT2ForSequenceClassificationPool,
|
|
@@ -34,7 +53,10 @@ if TYPE_CHECKING:
|
|
|
34
53
|
from .nyuv2_modelpool import NYUv2ModelPool
|
|
35
54
|
from .openclip_vision import OpenCLIPVisionModelPool
|
|
36
55
|
from .PeftModelForSeq2SeqLM import PeftModelForSeq2SeqLMPool
|
|
37
|
-
from .resnet_for_image_classification import
|
|
56
|
+
from .resnet_for_image_classification import (
|
|
57
|
+
ResNetForImageClassificationPool,
|
|
58
|
+
load_transformers_resnet,
|
|
59
|
+
)
|
|
38
60
|
from .seq2seq_lm import Seq2SeqLMPool
|
|
39
61
|
from .seq_classification_lm import SequenceClassificationModelPool
|
|
40
62
|
|
|
@@ -3,7 +3,7 @@ from copy import deepcopy
|
|
|
3
3
|
from typing import Dict, Generator, List, Optional, Tuple, Union
|
|
4
4
|
|
|
5
5
|
import torch
|
|
6
|
-
from omegaconf import DictConfig
|
|
6
|
+
from omegaconf import DictConfig, OmegaConf, UnsupportedValueType
|
|
7
7
|
from torch import nn
|
|
8
8
|
from torch.utils.data import Dataset
|
|
9
9
|
|
|
@@ -52,6 +52,13 @@ class BaseModelPool(
|
|
|
52
52
|
):
|
|
53
53
|
if isinstance(models, List):
|
|
54
54
|
models = {str(model_idx): model for model_idx, model in enumerate(models)}
|
|
55
|
+
|
|
56
|
+
if isinstance(models, dict):
|
|
57
|
+
try: # try to convert to DictConfig
|
|
58
|
+
models = OmegaConf.create(models)
|
|
59
|
+
except UnsupportedValueType:
|
|
60
|
+
pass
|
|
61
|
+
|
|
55
62
|
self._models = models
|
|
56
63
|
self._train_datasets = train_datasets
|
|
57
64
|
self._val_datasets = val_datasets
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Hugging Face ConvNeXt image classification model pool.
|
|
3
|
+
|
|
4
|
+
This module provides a `BaseModelPool` implementation that loads and saves
|
|
5
|
+
ConvNeXt models for image classification via `transformers`. It optionally
|
|
6
|
+
reconfigures the classification head to match a dataset's class names and
|
|
7
|
+
overrides `forward` to return logits only for simpler downstream usage.
|
|
8
|
+
|
|
9
|
+
See also: `fusion_bench.modelpool.resnet_for_image_classification` for a
|
|
10
|
+
parallel implementation for ResNet-based classifiers.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
import os
|
|
14
|
+
from typing import (
|
|
15
|
+
TYPE_CHECKING,
|
|
16
|
+
Any,
|
|
17
|
+
Callable,
|
|
18
|
+
Dict,
|
|
19
|
+
Literal,
|
|
20
|
+
Optional,
|
|
21
|
+
TypeVar,
|
|
22
|
+
Union,
|
|
23
|
+
override,
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
import torch
|
|
27
|
+
from lightning_utilities.core.rank_zero import rank_zero_only
|
|
28
|
+
from omegaconf import DictConfig
|
|
29
|
+
from torch import nn
|
|
30
|
+
|
|
31
|
+
from fusion_bench import BaseModelPool, auto_register_config, get_rankzero_logger
|
|
32
|
+
from fusion_bench.tasks.clip_classification import get_classnames, get_num_classes
|
|
33
|
+
|
|
34
|
+
log = get_rankzero_logger(__name__)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def load_transformers_convnext(
|
|
38
|
+
config_path: str, pretrained: bool, dataset_name: Optional[str]
|
|
39
|
+
):
|
|
40
|
+
"""Create a ConvNeXt image classification model from a config or checkpoint.
|
|
41
|
+
|
|
42
|
+
Args:
|
|
43
|
+
config_path: A model identifier or local path understood by
|
|
44
|
+
`transformers.AutoConfig/AutoModel` (e.g., "facebook/convnext-base-224").
|
|
45
|
+
pretrained: If True, load weights via `from_pretrained`; otherwise, build
|
|
46
|
+
the model from config only.
|
|
47
|
+
dataset_name: Optional dataset key used by FusionBench to derive class
|
|
48
|
+
names via `get_classnames`. When provided, the model's id/label maps
|
|
49
|
+
are updated and the classifier head is resized accordingly.
|
|
50
|
+
|
|
51
|
+
Returns:
|
|
52
|
+
ConvNextForImageClassification: A `transformers.ConvNextForImageClassification` instance. If
|
|
53
|
+
`dataset_name` is set, the classifier head is adapted to the number of
|
|
54
|
+
classes. The model's `config.id2label` and `config.label2id` are also
|
|
55
|
+
populated.
|
|
56
|
+
|
|
57
|
+
Notes:
|
|
58
|
+
The overall structure mirrors the ResNet implementation in
|
|
59
|
+
`fusion_bench.modelpool.resnet_for_image_classification`.
|
|
60
|
+
"""
|
|
61
|
+
from transformers import AutoConfig, ConvNextForImageClassification
|
|
62
|
+
|
|
63
|
+
if pretrained:
|
|
64
|
+
model = ConvNextForImageClassification.from_pretrained(config_path)
|
|
65
|
+
else:
|
|
66
|
+
config = AutoConfig.from_pretrained(config_path)
|
|
67
|
+
model = ConvNextForImageClassification(config)
|
|
68
|
+
|
|
69
|
+
if dataset_name is None:
|
|
70
|
+
return model
|
|
71
|
+
|
|
72
|
+
classnames = get_classnames(dataset_name)
|
|
73
|
+
id2label = {i: c for i, c in enumerate(classnames)}
|
|
74
|
+
label2id = {c: i for i, c in enumerate(classnames)}
|
|
75
|
+
model.config.id2label = id2label
|
|
76
|
+
model.config.label2id = label2id
|
|
77
|
+
model.num_labels = model.config.num_labels
|
|
78
|
+
|
|
79
|
+
model.classifier = (
|
|
80
|
+
nn.Linear(
|
|
81
|
+
model.classifier.in_features,
|
|
82
|
+
len(classnames),
|
|
83
|
+
device=model.classifier.weight.device,
|
|
84
|
+
dtype=model.classifier.weight.dtype,
|
|
85
|
+
)
|
|
86
|
+
if model.config.num_labels > 0
|
|
87
|
+
else nn.Identity()
|
|
88
|
+
)
|
|
89
|
+
return model
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
@auto_register_config
|
|
93
|
+
class ConvNextForImageClassificationPool(BaseModelPool):
|
|
94
|
+
"""Model pool for ConvNeXt image classification models (HF Transformers).
|
|
95
|
+
|
|
96
|
+
Responsibilities:
|
|
97
|
+
- Load an `AutoImageProcessor` compatible with the configured ConvNeXt model.
|
|
98
|
+
- Load ConvNeXt models either from a pretrained checkpoint or from config.
|
|
99
|
+
- Optionally adapt the classifier head to match dataset classnames.
|
|
100
|
+
- Override `forward` to return logits for consistent interfaces within
|
|
101
|
+
FusionBench.
|
|
102
|
+
|
|
103
|
+
See `fusion_bench.modelpool.resnet_for_image_classification` for a closely
|
|
104
|
+
related ResNet-based pool with analogous behavior.
|
|
105
|
+
"""
|
|
106
|
+
|
|
107
|
+
def load_processor(self, *args, **kwargs):
|
|
108
|
+
from transformers import AutoImageProcessor
|
|
109
|
+
|
|
110
|
+
if self.has_pretrained:
|
|
111
|
+
config_path = self._models["_pretrained_"].config_path
|
|
112
|
+
else:
|
|
113
|
+
for model_cfg in self._models.values():
|
|
114
|
+
if isinstance(model_cfg, str):
|
|
115
|
+
config_path = model_cfg
|
|
116
|
+
break
|
|
117
|
+
if "config_path" in model_cfg:
|
|
118
|
+
config_path = model_cfg["config_path"]
|
|
119
|
+
break
|
|
120
|
+
return AutoImageProcessor.from_pretrained(config_path)
|
|
121
|
+
|
|
122
|
+
@override
|
|
123
|
+
def load_model(self, model_name_or_config: Union[str, DictConfig], *args, **kwargs):
|
|
124
|
+
"""Load a ConvNeXt model described by a name, path, or DictConfig.
|
|
125
|
+
|
|
126
|
+
Accepts either a string (pretrained identifier or local path) or a
|
|
127
|
+
config mapping with keys: `config_path`, optional `pretrained` (bool),
|
|
128
|
+
and optional `dataset_name` to resize the classifier.
|
|
129
|
+
|
|
130
|
+
Returns:
|
|
131
|
+
A model whose `forward` is wrapped to return only logits to align
|
|
132
|
+
with FusionBench expectations.
|
|
133
|
+
"""
|
|
134
|
+
log.debug(f"Loading model: {model_name_or_config}", stacklevel=2)
|
|
135
|
+
if (
|
|
136
|
+
isinstance(model_name_or_config, str)
|
|
137
|
+
and model_name_or_config in self._models
|
|
138
|
+
):
|
|
139
|
+
model_name_or_config = self._models[model_name_or_config]
|
|
140
|
+
|
|
141
|
+
match model_name_or_config:
|
|
142
|
+
case str() as model_path:
|
|
143
|
+
from transformers import AutoModelForImageClassification
|
|
144
|
+
|
|
145
|
+
model = AutoModelForImageClassification.from_pretrained(model_path)
|
|
146
|
+
case dict() | DictConfig() as model_config:
|
|
147
|
+
model = load_transformers_convnext(
|
|
148
|
+
model_config["config_path"],
|
|
149
|
+
pretrained=model_config.get("pretrained", True),
|
|
150
|
+
dataset_name=model_config.get("dataset_name", None),
|
|
151
|
+
)
|
|
152
|
+
case _:
|
|
153
|
+
raise ValueError(
|
|
154
|
+
f"Unsupported model_name_or_config type: {type(model_name_or_config)}"
|
|
155
|
+
)
|
|
156
|
+
|
|
157
|
+
# override forward to return logits only
|
|
158
|
+
original_forward = model.forward
|
|
159
|
+
model.forward = lambda pixel_values, **kwargs: original_forward(
|
|
160
|
+
pixel_values=pixel_values, **kwargs
|
|
161
|
+
).logits
|
|
162
|
+
model.original_forward = original_forward
|
|
163
|
+
|
|
164
|
+
return model
|
|
165
|
+
|
|
166
|
+
@override
|
|
167
|
+
def save_model(
|
|
168
|
+
self,
|
|
169
|
+
model,
|
|
170
|
+
path,
|
|
171
|
+
algorithm_config: Optional[DictConfig] = None,
|
|
172
|
+
description: Optional[str] = None,
|
|
173
|
+
base_model: Optional[str] = None,
|
|
174
|
+
*args,
|
|
175
|
+
**kwargs,
|
|
176
|
+
):
|
|
177
|
+
"""Save the model, processor, and an optional model card to disk.
|
|
178
|
+
|
|
179
|
+
Artifacts written to `path`:
|
|
180
|
+
- The ConvNeXt model via `model.save_pretrained`.
|
|
181
|
+
- The paired image processor via `AutoImageProcessor.save_pretrained`.
|
|
182
|
+
- If `algorithm_config` is provided and on rank-zero, a README model card
|
|
183
|
+
documenting the FusionBench configuration.
|
|
184
|
+
"""
|
|
185
|
+
model.save_pretrained(path)
|
|
186
|
+
self.load_processor().save_pretrained(path)
|
|
187
|
+
|
|
188
|
+
if algorithm_config is not None and rank_zero_only.rank == 0:
|
|
189
|
+
from fusion_bench.models.hf_utils import create_default_model_card
|
|
190
|
+
|
|
191
|
+
model_card_str = create_default_model_card(
|
|
192
|
+
algorithm_config=algorithm_config,
|
|
193
|
+
description=description,
|
|
194
|
+
modelpool_config=self.config,
|
|
195
|
+
base_model=base_model,
|
|
196
|
+
)
|
|
197
|
+
with open(os.path.join(path, "README.md"), "w") as f:
|
|
198
|
+
f.write(model_card_str)
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Hugging Face DINOv2 image classification model pool.
|
|
3
|
+
|
|
4
|
+
This module provides a `BaseModelPool` implementation that loads and saves
|
|
5
|
+
DINOv2 models for image classification via `transformers`. It optionally
|
|
6
|
+
reconfigures the classification head to match a dataset's class names and
|
|
7
|
+
overrides `forward` to return logits only for simpler downstream usage.
|
|
8
|
+
|
|
9
|
+
See also: `fusion_bench.modelpool.convnext_for_image_classification` for a
|
|
10
|
+
parallel implementation for ConvNeXt-based classifiers.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
import os
|
|
14
|
+
from typing import (
|
|
15
|
+
TYPE_CHECKING,
|
|
16
|
+
Any,
|
|
17
|
+
Callable,
|
|
18
|
+
Dict,
|
|
19
|
+
Literal,
|
|
20
|
+
Optional,
|
|
21
|
+
TypeVar,
|
|
22
|
+
Union,
|
|
23
|
+
override,
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
import torch
|
|
27
|
+
from lightning_utilities.core.rank_zero import rank_zero_only
|
|
28
|
+
from omegaconf import DictConfig
|
|
29
|
+
from torch import nn
|
|
30
|
+
|
|
31
|
+
from fusion_bench import BaseModelPool, auto_register_config, get_rankzero_logger
|
|
32
|
+
from fusion_bench.tasks.clip_classification import get_classnames, get_num_classes
|
|
33
|
+
|
|
34
|
+
log = get_rankzero_logger(__name__)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def load_transformers_dinov2(
|
|
38
|
+
config_path: str, pretrained: bool, dataset_name: Optional[str]
|
|
39
|
+
):
|
|
40
|
+
"""Create a DINOv2 image classification model from a config or checkpoint.
|
|
41
|
+
|
|
42
|
+
Args:
|
|
43
|
+
config_path: A model identifier or local path understood by
|
|
44
|
+
`transformers.AutoConfig/AutoModel` (e.g., "facebook/dinov2-base").
|
|
45
|
+
pretrained: If True, load weights via `from_pretrained`; otherwise, build
|
|
46
|
+
the model from config only.
|
|
47
|
+
dataset_name: Optional dataset key used by FusionBench to derive class
|
|
48
|
+
names via `get_classnames`. When provided, the model's id/label maps
|
|
49
|
+
are updated and the classifier head is resized accordingly.
|
|
50
|
+
|
|
51
|
+
Returns:
|
|
52
|
+
Dinov2ForImageClassification: A `transformers.Dinov2ForImageClassification` instance. If
|
|
53
|
+
`dataset_name` is set, the classifier head is adapted to the number of
|
|
54
|
+
classes. The model's `config.id2label` and `config.label2id` are also
|
|
55
|
+
populated.
|
|
56
|
+
|
|
57
|
+
Notes:
|
|
58
|
+
The overall structure mirrors the ConvNeXt implementation in
|
|
59
|
+
`fusion_bench.modelpool.convnext_for_image_classification`.
|
|
60
|
+
"""
|
|
61
|
+
from transformers import AutoConfig, Dinov2ForImageClassification
|
|
62
|
+
|
|
63
|
+
if pretrained:
|
|
64
|
+
model = Dinov2ForImageClassification.from_pretrained(config_path)
|
|
65
|
+
else:
|
|
66
|
+
config = AutoConfig.from_pretrained(config_path)
|
|
67
|
+
model = Dinov2ForImageClassification(config)
|
|
68
|
+
|
|
69
|
+
if dataset_name is None:
|
|
70
|
+
return model
|
|
71
|
+
|
|
72
|
+
classnames = get_classnames(dataset_name)
|
|
73
|
+
id2label = {i: c for i, c in enumerate(classnames)}
|
|
74
|
+
label2id = {c: i for i, c in enumerate(classnames)}
|
|
75
|
+
model.config.id2label = id2label
|
|
76
|
+
model.config.label2id = label2id
|
|
77
|
+
model.num_labels = model.config.num_labels
|
|
78
|
+
|
|
79
|
+
# If the model is configured with a positive number of labels, resize the
|
|
80
|
+
# classifier to match the dataset classes; otherwise leave it as identity.
|
|
81
|
+
model.classifier = (
|
|
82
|
+
nn.Linear(
|
|
83
|
+
model.classifier.in_features,
|
|
84
|
+
len(classnames),
|
|
85
|
+
device=model.classifier.weight.device,
|
|
86
|
+
dtype=model.classifier.weight.dtype,
|
|
87
|
+
)
|
|
88
|
+
if model.config.num_labels > 0
|
|
89
|
+
else nn.Identity()
|
|
90
|
+
)
|
|
91
|
+
return model
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
@auto_register_config
|
|
95
|
+
class Dinov2ForImageClassificationPool(BaseModelPool):
|
|
96
|
+
"""Model pool for DINOv2 image classification models (HF Transformers)."""
|
|
97
|
+
|
|
98
|
+
def load_processor(self, *args, **kwargs):
|
|
99
|
+
"""Load the paired image processor for this model pool.
|
|
100
|
+
|
|
101
|
+
Uses the configured model's identifier or config path to retrieve the
|
|
102
|
+
appropriate `transformers.AutoImageProcessor` instance. If a pretrained
|
|
103
|
+
model entry exists in the pool configuration, it is preferred to derive
|
|
104
|
+
the processor to ensure tokenization/normalization parity.
|
|
105
|
+
"""
|
|
106
|
+
from transformers import AutoImageProcessor
|
|
107
|
+
|
|
108
|
+
if self.has_pretrained:
|
|
109
|
+
config_path = self._models["_pretrained_"].config_path
|
|
110
|
+
else:
|
|
111
|
+
for model_cfg in self._models.values():
|
|
112
|
+
if isinstance(model_cfg, str):
|
|
113
|
+
config_path = model_cfg
|
|
114
|
+
break
|
|
115
|
+
if "config_path" in model_cfg:
|
|
116
|
+
config_path = model_cfg["config_path"]
|
|
117
|
+
break
|
|
118
|
+
return AutoImageProcessor.from_pretrained(config_path)
|
|
119
|
+
|
|
120
|
+
@override
|
|
121
|
+
def load_model(self, model_name_or_config: Union[str, DictConfig], *args, **kwargs):
|
|
122
|
+
"""Load a DINOv2 model described by a name, path, or DictConfig.
|
|
123
|
+
|
|
124
|
+
Accepts either a string (pretrained identifier or local path) or a
|
|
125
|
+
config mapping with keys: `config_path`, optional `pretrained` (bool),
|
|
126
|
+
and optional `dataset_name` to resize the classifier.
|
|
127
|
+
|
|
128
|
+
Returns:
|
|
129
|
+
A model whose `forward` is wrapped to return only logits to align
|
|
130
|
+
with FusionBench expectations.
|
|
131
|
+
"""
|
|
132
|
+
log.debug(f"Loading model: {model_name_or_config}", stacklevel=2)
|
|
133
|
+
if (
|
|
134
|
+
isinstance(model_name_or_config, str)
|
|
135
|
+
and model_name_or_config in self._models
|
|
136
|
+
):
|
|
137
|
+
model_name_or_config = self._models[model_name_or_config]
|
|
138
|
+
|
|
139
|
+
match model_name_or_config:
|
|
140
|
+
case str() as model_path:
|
|
141
|
+
from transformers import AutoModelForImageClassification
|
|
142
|
+
|
|
143
|
+
model = AutoModelForImageClassification.from_pretrained(model_path)
|
|
144
|
+
case dict() | DictConfig() as model_config:
|
|
145
|
+
model = load_transformers_dinov2(
|
|
146
|
+
model_config["config_path"],
|
|
147
|
+
pretrained=model_config.get("pretrained", True),
|
|
148
|
+
dataset_name=model_config.get("dataset_name", None),
|
|
149
|
+
)
|
|
150
|
+
case _:
|
|
151
|
+
raise ValueError(
|
|
152
|
+
f"Unsupported model_name_or_config type: {type(model_name_or_config)}"
|
|
153
|
+
)
|
|
154
|
+
|
|
155
|
+
# Override forward to return logits only, to unify the interface across
|
|
156
|
+
# FusionBench model pools and simplify downstream usage.
|
|
157
|
+
original_forward = model.forward
|
|
158
|
+
model.forward = lambda pixel_values, **kwargs: original_forward(
|
|
159
|
+
pixel_values=pixel_values, **kwargs
|
|
160
|
+
).logits
|
|
161
|
+
model.original_forward = original_forward
|
|
162
|
+
|
|
163
|
+
return model
|
|
164
|
+
|
|
165
|
+
@override
|
|
166
|
+
def save_model(
|
|
167
|
+
self,
|
|
168
|
+
model,
|
|
169
|
+
path,
|
|
170
|
+
algorithm_config: Optional[DictConfig] = None,
|
|
171
|
+
description: Optional[str] = None,
|
|
172
|
+
base_model: Optional[str] = None,
|
|
173
|
+
*args,
|
|
174
|
+
**kwargs,
|
|
175
|
+
):
|
|
176
|
+
"""Save the model, processor, and an optional model card to disk.
|
|
177
|
+
|
|
178
|
+
Artifacts written to `path`:
|
|
179
|
+
- The DINOv2 model via `model.save_pretrained`.
|
|
180
|
+
- The paired image processor via `AutoImageProcessor.save_pretrained`.
|
|
181
|
+
- If `algorithm_config` is provided and on rank-zero, a README model card
|
|
182
|
+
documenting the FusionBench configuration.
|
|
183
|
+
"""
|
|
184
|
+
model.save_pretrained(path)
|
|
185
|
+
self.load_processor().save_pretrained(path)
|
|
186
|
+
|
|
187
|
+
if algorithm_config is not None and rank_zero_only.rank == 0:
|
|
188
|
+
from fusion_bench.models.hf_utils import create_default_model_card
|
|
189
|
+
|
|
190
|
+
model_card_str = create_default_model_card(
|
|
191
|
+
algorithm_config=algorithm_config,
|
|
192
|
+
description=description,
|
|
193
|
+
modelpool_config=self.config,
|
|
194
|
+
base_model=base_model,
|
|
195
|
+
)
|
|
196
|
+
with open(os.path.join(path, "README.md"), "w") as f:
|
|
197
|
+
f.write(model_card_str)
|
|
@@ -138,6 +138,7 @@ def load_transformers_resnet(
|
|
|
138
138
|
label2id = {c: i for i, c in enumerate(classnames)}
|
|
139
139
|
model.config.id2label = id2label
|
|
140
140
|
model.config.label2id = label2id
|
|
141
|
+
model.num_labels = model.config.num_labels
|
|
141
142
|
|
|
142
143
|
model.classifier[1] = (
|
|
143
144
|
nn.Linear(
|
|
@@ -407,7 +408,7 @@ class ResNetForImageClassificationPool(BaseModelPool):
|
|
|
407
408
|
|
|
408
409
|
model = load_transformers_resnet(
|
|
409
410
|
config_path=model_config["config_path"],
|
|
410
|
-
pretrained=model_config.get("pretrained",
|
|
411
|
+
pretrained=model_config.get("pretrained", True),
|
|
411
412
|
dataset_name=model_config.get("dataset_name", None),
|
|
412
413
|
)
|
|
413
414
|
case _:
|
|
@@ -432,6 +433,7 @@ class ResNetForImageClassificationPool(BaseModelPool):
|
|
|
432
433
|
path,
|
|
433
434
|
algorithm_config: Optional[DictConfig] = None,
|
|
434
435
|
description: Optional[str] = None,
|
|
436
|
+
base_model: Optional[str] = None,
|
|
435
437
|
*args,
|
|
436
438
|
**kwargs,
|
|
437
439
|
):
|
|
@@ -479,6 +481,7 @@ class ResNetForImageClassificationPool(BaseModelPool):
|
|
|
479
481
|
from fusion_bench.models.hf_utils import create_default_model_card
|
|
480
482
|
|
|
481
483
|
model_card_str = create_default_model_card(
|
|
484
|
+
base_model=base_model,
|
|
482
485
|
algorithm_config=algorithm_config,
|
|
483
486
|
description=description,
|
|
484
487
|
modelpool_config=self.config,
|
|
@@ -1,31 +1,72 @@
|
|
|
1
1
|
import json
|
|
2
2
|
from pathlib import Path
|
|
3
|
-
from typing import Any, Union
|
|
3
|
+
from typing import TYPE_CHECKING, Any, Union
|
|
4
4
|
|
|
5
|
+
if TYPE_CHECKING:
|
|
6
|
+
from pyarrow.fs import FileSystem
|
|
5
7
|
|
|
6
|
-
|
|
8
|
+
|
|
9
|
+
def save_to_json(obj, path: Union[str, Path], filesystem: "FileSystem" = None):
|
|
7
10
|
"""
|
|
8
11
|
save an object to a json file
|
|
9
12
|
|
|
10
13
|
Args:
|
|
11
14
|
obj (Any): the object to save
|
|
12
15
|
path (Union[str, Path]): the path to save the object
|
|
16
|
+
filesystem (FileSystem, optional): PyArrow FileSystem to use for writing.
|
|
17
|
+
If None, uses local filesystem via standard Python open().
|
|
18
|
+
Can also be an s3fs.S3FileSystem or fsspec filesystem.
|
|
13
19
|
"""
|
|
14
|
-
|
|
15
|
-
json.
|
|
20
|
+
if filesystem is not None:
|
|
21
|
+
json_str = json.dumps(obj)
|
|
22
|
+
# Check if it's an fsspec-based filesystem (like s3fs)
|
|
23
|
+
if hasattr(filesystem, "open"):
|
|
24
|
+
# Direct fsspec/s3fs usage - more reliable for some endpoints
|
|
25
|
+
path_str = str(path)
|
|
26
|
+
with filesystem.open(path_str, "w") as f:
|
|
27
|
+
f.write(json_str)
|
|
28
|
+
else:
|
|
29
|
+
# Use PyArrow filesystem
|
|
30
|
+
path_str = str(path)
|
|
31
|
+
with filesystem.open_output_stream(path_str) as f:
|
|
32
|
+
f.write(json_str.encode("utf-8"))
|
|
33
|
+
else:
|
|
34
|
+
# Use standard Python file operations
|
|
35
|
+
with open(path, "w") as f:
|
|
36
|
+
json.dump(obj, f)
|
|
16
37
|
|
|
17
38
|
|
|
18
|
-
def load_from_json(
|
|
39
|
+
def load_from_json(
|
|
40
|
+
path: Union[str, Path], filesystem: "FileSystem" = None
|
|
41
|
+
) -> Union[dict, list]:
|
|
19
42
|
"""load an object from a json file
|
|
20
43
|
|
|
21
44
|
Args:
|
|
22
45
|
path (Union[str, Path]): the path to load the object
|
|
46
|
+
filesystem (FileSystem, optional): PyArrow FileSystem to use for reading.
|
|
47
|
+
If None, uses local filesystem via standard Python open().
|
|
48
|
+
Can also be an s3fs.S3FileSystem or fsspec filesystem.
|
|
23
49
|
|
|
24
50
|
Returns:
|
|
25
|
-
dict: the loaded object
|
|
51
|
+
Union[dict, list]: the loaded object
|
|
26
52
|
"""
|
|
27
|
-
|
|
28
|
-
|
|
53
|
+
if filesystem is not None:
|
|
54
|
+
# Check if it's an fsspec-based filesystem (like s3fs)
|
|
55
|
+
if hasattr(filesystem, "open"):
|
|
56
|
+
# Direct fsspec/s3fs usage
|
|
57
|
+
path_str = str(path)
|
|
58
|
+
with filesystem.open(path_str, "r") as f:
|
|
59
|
+
return json.load(f)
|
|
60
|
+
else:
|
|
61
|
+
# Use PyArrow filesystem
|
|
62
|
+
path_str = str(path)
|
|
63
|
+
with filesystem.open_input_stream(path_str) as f:
|
|
64
|
+
json_data = f.read().decode("utf-8")
|
|
65
|
+
return json.loads(json_data)
|
|
66
|
+
else:
|
|
67
|
+
# Use standard Python file operations
|
|
68
|
+
with open(path, "r") as f:
|
|
69
|
+
return json.load(f)
|
|
29
70
|
|
|
30
71
|
|
|
31
72
|
def _is_list_of_dict(obj) -> bool:
|