Pith. sign in

REVIEW 4 major objections 6 minor 52 references

Pilot: Building the Federated Multimodal Instruction Tuning Framework

T0 review · 4 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Pilot lets devices with different visual tasks share knowledge without sharing data.

desk verdict Pilot defines a genuinely new federated multimodal instruction-tuning task and a sensible two-stage adapter architecture, but the main aggregation mechanism is unvalidated and the experiments are too thin to support the strong claims. read the letter →

arxiv 2501.13985 v1 pith:UDPV3RHU submitted 2025-01-23 cs.LG cs.AIcs.CV

classification cs.LGcs.AIcs.CV
keywords federatedlearningmultimodalinstructiontuningparameter-efficientfine-tuningmixture-of-adapterstaskheterogeneitycross-taskknowledgetransfervisualquestionansweringimagecaptioning
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Federated learning lets devices train a shared model without uploading private data, but existing federated instruction-tuning methods assume all clients work on similar language tasks. This paper introduces Federated Multimodal Instruction Tuning (FedMIT), where each client holds a different visual-language task such as captioning, question answering, or grounding, and shows that standard federated baselines degrade when tasks differ. To solve this, the authors propose Pilot, which inserts two stacked stages of lightweight adapters into the visual connector. The first stage separates task-specific from client-specific visual features; the second stage routes each client's input through a mixture of adapters initialized from all tasks, letting one client borrow knowledge from others. An adaptive aggregation step then merges each client's text adapters only with the most similar peers, and the authors report state-of-the-art results across two nine-client, three-task scenarios.

What carries the argument

The load-bearing components are (1) the two-stage 'adapter-on-adapter' connector: stage one's task-specific adapter $\psi_t$ and client-specific adapter $\psi_s$ with difference loss $L_d = \|\mathbf{x}_t^\top \mathbf{x}_s\|_F^2$, and stage two's Cross-task Mixture-of-Adapters (CT-MoA), where each non-local task-specific adapter has a cross-task adapter $\psi^c$ initialized from the local adapter, and a router $\phi$ with load-balancing loss $L_b$ and router z-loss $L_z$; and (2) the adaptive text-adapter aggregation, which computes Euclidean distances $d_{k,i}$ between LoRA text adapters, keeps the Top-M closest, and weights them by inverse distance. The CT-MoA lets a client activate knowledge from other tasks, while the adaptive aggregation prevents negative transfer by not averaging incompatible text adapters.

What would settle it

Run Pilot on the same two scenarios but replace the Euclidean-distance selection of the Top-M text adapters with a random selection of M clients; if the random selection matches the distance-based selection in average task accuracy, the distance assumption is not driving the reported gains.

Watch

Extended reading notes

Core claim

Pilot solves the FedMIT task, defined as collaboratively instruction-tuning an MLLM on K clients whose data cover T different multimodal task types, by making the visual connector itself the site of cross-task communication. The connector is trained in two stages: stage one uses a task-specific adapter and a client-specific adapter with a soft subspace orthogonality loss, so that shared task knowledge and private data patterns do not collide; stage two assembles a Cross-task Mixture-of-Adapters (CT-MoA) with one adapter per task, adds a cross-task adapter on top of each non-local task adapter to smooth the heterogeneity gap, and uses a router with load-balancing and z-losses. On the text side, each client trains a LoRA adapter, and the server aggregates every client's text adapter by selecting the M nearest peers in Euclidean parameter distance and inverse-distance weighting, instead of averaging all clients. Evaluated with LLaVA 1.5 on two scenarios (GQA/COCO/RefCOCO and ScienceQA/GQA/OCRVQA), Pilot outperforms FedAvg, FedProx, FedAdam, FedDPA, and Shepherd, and surpasses local training, which the ablations show is mainly due to the adaptive aggregation and the CT-MoA cross-task adapters.

Load-bearing premise

The method assumes that if two clients' text adapter parameters are close points in Euclidean parameter space, then merging their adapters will help both, and that the closest M are the best partners; the paper does not prove this correlation and tests the selection size M in only one scenario.

Editorial extensions

If this is right

  • Federated multimodal instruction tuning can work across different visual task types without centralized data collection, as long as the connector is made the locus of cross-task adaptation.
  • The two-stage connector gives a concrete recipe for separating personalized from shared visual knowledge under task heterogeneity.
  • Adaptive, distance-based aggregation of text adapters provides a way to reduce negative transfer in heterogeneous federated fine-tuning.
  • Pilot's state-of-the-art results in both evaluated scenarios suggest that task heterogeneity is not an obstacle to collaborative MLLM tuning, provided the right architecture is used.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The distance-based aggregation rule is a heuristic that could be probed further: if parameter distance does not track merge compatibility, the method would be selecting partners almost arbitrarily, so a direct study of when parameter distance predicts successful merging would settle the mechanism.
  • The CT-MoA design assumes one task per client; extending it to clients holding multiple tasks would require routing at the sample level rather than the client level.
  • Because all task-specific adapters are broadcast to every client, communication cost grows linearly with the number of tasks; hierarchical or clustered aggregation could keep the cross-task benefit while scaling to more tasks.
  • The same connector-level two-stage adapter idea could be tested on other modality pairs, such as audio-text or video-text, in federated settings.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper introduces the Federated Multimodal Instruction Tuning (FedMIT) task and proposes Pilot, a framework for collaboratively fine-tuning multimodal large language models (MLLMs) on heterogeneous visual instruction tasks across clients. Pilot integrates a two-stage 'adapter-on-adapter' design into the vision-LLM connector: stage 1 trains a task-specific adapter and a client-specific adapter with an orthogonality loss, and stage 2 builds a Cross-task Mixture-of-Adapters (CT-MoA) module with cross-task adapters and a router. On the server side, task-specific visual adapters are aggregated per task, while text adapters (LoRA) are aggregated via an adaptive scheme that selects the Top-M closest clients by Euclidean distance (Eqs. 11-12). Experiments on two 9-client, 3-task scenarios (GQA/COCO/RefCOCO and ScienceQA/GQA/OCRVQA) report that Pilot outperforms FedAvg, FedProx, FedAdam, Shepherd, and FedDPA, with ablations supporting the contribution of each module.

Significance. If the reported results hold, the paper makes a useful contribution by identifying and formalizing the FedMIT problem and by demonstrating that a mix of task-specific adapters, cross-task MoA, and distance-based selective aggregation can mitigate task heterogeneity in federated MLLM instruction tuning. The two-stage connector design is intuitive, and the empirical gains over strong baselines (e.g., Tables 1-2) are consistent across both scenarios. The paper also provides a new evaluation scenario for cross-task federated learning with multimodal data. However, the novelty is incremental in its components (adapter-on-adapter, MoA, distance-weighted aggregation are known ideas), and the central claims rest on an experimental validation whose statistical robustness is not established.

major comments (4)
  1. [Experimental Results; Ablation Studies] The results in Tables 1-5 are reported without error bars, repeated seeds, or statistical significance tests. The improvements over the best baselines are often small (e.g., GQA Client 1: Pilot 51.4 vs FedAdam 50.8 in Table 1; Pilot 49.2 vs FedDPA 47.3 in Table 2). Given a single random data split and no variance information, the claim that Pilot 'achieves state-of-the-art results' is not yet supported. I recommend reporting mean and standard deviation over at least three seeds and, if feasible, a paired significance test across clients.
  2. [Adaptive Text-adapter Aggregation, Eqs. 11-12] The central novelty of the aggregation strategy is the assumption that Euclidean distance in LoRA parameter space identifies clients whose text-adapters are beneficial to merge. The paper offers no theoretical justification, no analysis of the parameter geometry, and no direct validation of this proxy. The ablation in Table 3 shows that removing ATA degrades COCO from 124.0 to 114.5 and RefCOCO from 51.0 to 47.5, so the method's main gain relies on this assumption. Table 5 compares M values and same/all-client aggregation, but it does not include a control such as random Top-M selection, cosine similarity, or an oracle that selects partners by measured task complementarity. Without such a control, the observed gains could be due to selecting any subset of clients rather than to the distance criterion.
  3. [Implementation Details; Further Remarks, Table 5] The hyperparameter Top-M is set to 6 in Implementation Details and is then evaluated at M=5,6,7 in Table 5, apparently on the same test sets used for the final results. There is no held-out validation split for hyperparameter selection, so the reported numbers may be optimistically biased. Similarly, the coefficients lambda0, lambda1, lambda2 and other hyperparameters are fixed without sensitivity analysis. The paper should either use a validation split or explicitly acknowledge that the reported configuration was selected on the test data, and provide robustness analysis for the key hyperparameters.
  4. [Introduction; Methodology; Conclusion] The abstract and conclusion state that Pilot learns 'without being affected by the task heterogeneity during instruction tuning.' This is too strong a claim given the experimental scope: only 9 clients and 3 tasks per scenario, 3 communication rounds, and no evaluation under different numbers of clients, tasks, or partial participation. The method deliberately preserves task-specific adapters, so it does not remove heterogeneity effects; it mitigates them. I recommend softening the claim and adding discussion of conditions under which the method might fail (e.g., highly imbalanced data, non-IID label distributions, or more tasks than adapters).
minor comments (6)
  1. [Abstract and Introduction] The phrase 'without being affected by the task heterogeneity' is repeated several times and overstates the mitigation; consider rewording to 'reduces the impact of task heterogeneity' or 'robust to task heterogeneity in the tested settings.'
  2. [Experiment, Baselines] In Table 1 and Table 2, the baseline is spelled 'FedA VG' and 'FedA VG' with a space and small caps; elsewhere it is 'FedAvg.' Please unify the notation.
  3. [Experimental Results] The evaluation metric is 'loU' (IoU) in the text; use 'IoU' consistently.
  4. [Equation (2)] The total loss formula has an awkward fraction layout: the inner sum over n_k and the outer weighting by n_k/n make the expression redundant; simplify it to a weighted sum over clients.
  5. [Stage 1: Task-specific Feature Mining] The orthogonality constraint in Eq. (3) is applied to the output features x_t and x_s, but the text says the client-specific adapter produces 'more refined' features. The connection between the Frobenius-norm condition and the semantic goal is not explained; please clarify what property of the features is being enforced.
  6. [Stage 2: Cross-task Visual Interaction] The acronym is inconsistently written as CT-MOA and CT-MoA; choose one and use it throughout.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: Pilot's effectiveness claims rest on benchmark experiments, not on a derivation that reduces to its own inputs.

full rationale

The paper is an empirical systems paper. Its central claims are that the proposed Pilot framework improves federated multimodal instruction tuning on two constructed scenarios, supported by comparisons against FedAvg, FedProx, FedAdam, Shepherd, and FedDPA in Tables 1 and 2, plus ablations in Tables 3-6. No equation in the paper is derived from the result it is claimed to predict, and no fitted parameter is renamed as a prediction. The adaptive text-adapter aggregation (Eqs. 11-12) is a heuristic based on Euclidean distance in parameter space, but a heuristic that lacks theoretical justification is a correctness or robustness concern, not circularity: the aggregation weights are computed from trained parameters, not from the evaluation targets, and the method is tested on held-out test splits. The choice of Top-M=6 is a hyperparameter, studied in Table 5 and reported as a tuning choice, not as a derived prediction. Self-citations in the introduction and related work are contextual and do not carry the argument; no uniqueness theorem or load-bearing result is imported from the authors' prior work. The paper's limitations (e.g., single data split, no error bars) weaken the evidence but do not make the derivation circular. Accordingly, no circular step satisfying the required reduction standard is present.

Assumptions & free parameters 6 free parameters · 5 assumptions · 2 invented entities

The framework rests on several domain assumptions about the frozen visual encoder, feature orthogonality, and the meaningfulness of parameter-space distances. The key load-bearing assumptions are the orthogonality constraint and the Euclidean-distance-based aggregation rule, neither of which is derived or independently justified. The architectural components (cross-task adapter and client-specific adapter) are introduced as part of the method and have no support beyond the paper's own experiments.

free parameters (6)
  • Lambda0 (difference loss coefficient) = 0.1
    Coefficient for soft subspace orthogonality constraint in Eq. 3; chosen without sensitivity analysis.
  • Lambda1 (load balancing loss coefficient) = 0.1
    Coefficient for load balancing loss in Eq. 7; chosen without sensitivity analysis.
  • Lambda2 (router z-loss coefficient) = 0.01
    Coefficient for router z-loss in Eq. 8; chosen without sensitivity analysis.
  • Top-M (adaptive aggregation neighbor count) = 6
    Number of nearest text-adapters used in Eq. 12; Table 5 shows M=6 is not uniformly best across all tasks (RefCOCO is higher with M=7).
  • LoRA rank = 64
    Rank of the LoRA adapters; set to 64 without reported sweep.
  • Communication rounds R = 3
    Number of federated rounds; set to 3 without sensitivity analysis.
assumptions (5)
  • domain assumption Frozen CLIP visual encoder features are sufficient for cross-task knowledge transfer.
    The method only trains adapters on top of the frozen visual encoder; if the frozen features lack task-relevant information, cross-task interaction cannot recover it.
  • ad hoc to paper The orthogonality constraint (Eq. 3) separates task-specific and client-specific features.
    The soft subspace orthogonality has no theoretical guarantee that the two adapters capture disjoint information; it is an ad hoc design choice.
  • domain assumption Clients with the same task type have similar task-specific adapters, justifying per-task averaging in Eq. 10.
    In the experiments, same-task clients are random subsets of one dataset, so this holds; in general federated settings with varied per-client distributions, this may fail.
  • ad hoc to paper Euclidean distance between text-adapter parameters indicates beneficial aggregation.
    The adaptive aggregation (Eqs. 11-12) assumes that closer adapters are more compatible; no theoretical or empirical justification is given beyond the reported experiments.
  • domain assumption The router with load-balancing losses improves cross-task learning.
    Auxiliary losses (Eqs. 7-8) are standard in mixture-of-experts, but their benefit here is shown in a single ablation scenario, not across tasks or datasets.
invented entities (2)
  • Cross-task adapter (psi_c)
    purpose: Bridges the gap between other task-specific adapters and the local task-specific adapter in CT-MoA (Eq. 6).
    The cross-task adapter is validated only in the paper's own ablation (Table 3); no external benchmark or independent prediction supports its general utility.
  • Client-specific adapter (psi_s)
    purpose: Extracts client-specific visual features orthogonal to task-specific features (Eq. 3).
    The client-specific adapter is shown to help in ablation (Table 3), but there is no external evidence that such a decomposition generalizes beyond the tested setup.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Pilot: Building the Federated Multimodal Instruction Tuning Framework." pith.science (2026). https://pith.science/paper/UDPV3RHU

@misc{pith2026250113985,
  author       = {Pith},
  title        = {Pith review of: Pilot: Building the Federated Multimodal Instruction Tuning Framework},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/UDPV3RHU}},
  note         = {Machine review of arXiv:2501.13985}
}
read the original abstract

In this paper, we explore a novel federated multimodal instruction tuning task(FedMIT), which is significant for collaboratively fine-tuning MLLMs on different types of multimodal instruction data on distributed devices. To solve the new task, we propose a federated multimodal instruction tuning framework(Pilot). Our framework integrates two stages of "adapter on adapter" into the connector of the vision encoder and the LLM. In stage 1, we extract task-specific features and client-specific features from visual information. In stage 2, we build the cross-task Mixture-of-Adapters(CT-MoA) module to perform cross-task interaction. Each client can not only capture personalized information of local data and learn task-related multimodal information, but also learn general knowledge from other tasks. In addition, we introduce an adaptive parameter aggregation strategy for text training parameters, which optimizes parameter aggregation by calculating weights based on the euclidean distance between parameters, so that parameter aggregation can benefit from positive effects to the greatest extent while effectively reducing negative effects. Our framework can collaboratively exploit distributed data from different local clients to learn cross-task knowledge without being affected by the task heterogeneity during instruction tuning. The effectiveness of our method is verified in two different cross-task scenarios.

Figures

Figures reproduced from arXiv: 2501.13985 by the authors.

Figure 1
Figure 1. (a) Comparison of the FedIT task with the FedMIT [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Overview of the proposed Federated Multimodal Instruction Tuning Framework (Pilot). [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Cross-task Mixture-of-Adapters (CT-MoA). [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

52 extracted references · 20 canonical work pages

  1. [1]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...

  2. [2]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...

  3. [3]

    A.; Noorbakhsh, S

    Arevalo, C. A.; Noorbakhsh, S. L.; Dong, Y.; Hong, Y.; and Wang, B. 2024. Task-Agnostic Privacy-Preserving Representation Learning for Federated Learning against Attribute Inference Attacks. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 10909--10917

  4. [4]

    Bousmalis, K.; Trigeorgis, G.; Silberman, N.; Krishnan, D.; and Erhan, D. 2016. Domain separation networks. Advances in neural information processing systems, 29

  5. [5]

    Chen, D.; Liu, J.; Dai, W.; and Wang, B. 2024 a . Visual instruction tuning with polite flamingo. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 17745--17753

  6. [6]

    Chen, H.; Zhang, Y.; Krompass, D.; Gu, J.; and Tresp, V. 2024 b . Feddat: An approach for foundation model finetuning in multi-modal heterogeneous federated learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 11285--11293

  7. [7]

    Chen, J.; and Zhang, A. 2024. On Disentanglement of Asymmetrical Knowledge Transfer for Modality-Task Agnostic Federated Learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 11311--11319

  8. [8]

    Chen, K.; Zhang, Z.; Zeng, W.; Zhang, R.; Zhu, F.; and Zhao, R. 2023. Shikra: Unleashing multimodal llm's referential dialogue magic. arXiv preprint arXiv:2306.15195

Show all 52 references
  1. [9]

    E.; et al

    Chiang, W.-L.; Li, Z.; Lin, Z.; Sheng, Y.; Wu, Z.; Zhang, H.; Zheng, L.; Zhuang, S.; Zhuang, Y.; Gonzalez, J. E.; et al. 2023. Vicuna: An open-source chatbot impressing gpt-4 with 90\ See https://vicuna. lmsys. org (accessed 14 April 2023), 2(3): 6

  2. [10]

    Dai, W.; Li, J.; et al. 2023. InstructBLIP: Towards General-purpose Vision-Language Models with Instruction Tuning. arXiv:2305.06500

  3. [11]

    Dhariwal, P.; and Nichol, A. 2021. Diffusion models beat gans on image synthesis. Advances in neural information processing systems, 34: 8780--8794

  4. [12]

    S.; et al

    Driess, D.; Xia, F.; Sajjadi, M. S.; et al. 2023. Palm-e: An embodied multimodal language model. arXiv preprint arXiv:2303.03378

  5. [13]

    Fallah, A.; Mokhtari, A.; and Ozdaglar, A. 2020. Personalized federated learning: A meta-learning approach. arXiv preprint arXiv:2002.07948

  6. [14]

    Fan, T.; Kang, Y.; Ma, G.; Chen, W.; Wei, W.; Fan, L.; and Yang, Q. 2023. Fate-llm: A industrial grade federated learning framework for large language models. arXiv preprint arXiv:2310.10049

  7. [15]

    Finn, C.; Abbeel, P.; and Levine, S. 2017. Model-agnostic meta-learning for fast adaptation of deep networks. In International conference on machine learning, 1126--1135. PMLR

  8. [16]

    Gorbunov, E.; Hanzely, F.; and Richt \'a rik, P. 2021. Local sgd: Unified theory and new efficient methods. In International Conference on Artificial Intelligence and Statistics, 3556--3564. PMLR

  9. [17]

    Guo, T.; et al. 2023. Pfedprompt: Learning personalized prompt for vision-language models in federated learning. In Proceedings of the ACM Web Conference 2023, 1364--1374

  10. [18]

    He, J.; Guo, H.; Tang, M.; and Wang, J. 2023. Continual instruction tuning for large multimodal models. arXiv preprint arXiv:2311.16206

  11. [19]

    J.; Shen, Y.; Wallis, P.; Allen-Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; and Chen, W

    Hu, E. J.; Shen, Y.; Wallis, P.; Allen-Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; and Chen, W. 2021. Lora: Low-rank adaptation of large language models. arXiv preprint arXiv:2106.09685

  12. [20]

    Hudson. 2019. Gqa: A new dataset for real-world visual reasoning and compositional question answering. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 6700--6709

  13. [21]

    Jia, Y.; Zhang, X.; Beheshti, A.; and Dou, W. 2024. FedLPS: Heterogeneous Federated Learning for Multiple Tasks with Local Parameter Sharing. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 12848--12856

  14. [22]

    Kazemzadeh, S.; Ordonez, V.; Matten, M.; and Berg, T. 2014. Referitgame: Referring to objects in photographs of natural scenes. In Proceedings of the 2014 conference on empirical methods in natural language processing (EMNLP), 787--798

  15. [23]

    Li, J.; Li, D.; Savarese, S.; and Hoi, S. 2023. Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models. In International conference on machine learning, 19730--19742. PMLR

  16. [24]

    K.; Zaheer, M.; Sanjabi, M.; Talwalkar, A.; and Smith, V

    Li, T.; Sahu, A. K.; Zaheer, M.; Sanjabi, M.; Talwalkar, A.; and Smith, V. 2020. Federated optimization in heterogeneous networks. Proceedings of Machine Learning and Systems, 2: 429--450

  17. [25]

    Lin, T.-Y.; Maire, M.; Belongie, S.; Hays, J.; Perona, P.; Ramanan, D.; Doll \'a r, P.; and Zitnick, C. L. 2014. Microsoft coco: Common objects in context. In Computer Vision--ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proceedings, Part V 1...

  18. [26]

    Liu, H.; Li, C.; Wu, Q.; and Lee, Y. J. 2024. Visual instruction tuning. Advances in neural information processing systems, 36

  19. [27]

    Lu, P.; Mishra, S.; Xia, T.; Qiu, L.; Chang, K.-W.; Zhu, S.-C.; Tafjord, O.; Clark, P.; and Kalyan, A. 2022. Learn to explain: Multimodal reasoning via thought chains for science question answering. Advances in Neural Information Processing Systems, 35: 2507--2521

  20. [28]

    Lu, W.; Hu, X.; Wang, J.; and Xie, X. 2023. Fedclip: Fast generalization and personalization for clip in federated learning. arXiv preprint arXiv:2302.13485

  21. [29]

    McMahan, B.; Moore, E.; Ramage, D.; Hampson, S.; and y Arcas, B. A. 2017. Communication-efficient learning of deep networks from decentralized data. In Artificial intelligence and statistics, 1273--1282. PMLR

  22. [30]

    K.; and Chakraborty, A

    Mishra, A.; Shekhar, S.; Singh, A. K.; and Chakraborty, A. 2019. Ocr-vqa: Visual question answering by reading text in images. In 2019 international conference on document analysis and recognition (ICDAR), 947--952. IEEE

  23. [31]

    W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; et al

    Radford, A.; Kim, J. W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; et al. 2021. Learning transferable visual models from natural language supervision. In International conference on machine learning, 8748--8763. PMLR

  24. [32]

    Reddi, S.; Charles, Z.; Zaheer, M.; Garrett, Z.; Rush, K.; Kone c n \`y , J.; Kumar, S.; and McMahan, H. B. 2020. Adaptive federated optimization. arXiv preprint arXiv:2003.00295

  25. [33]

    Shen, Y.; Xu, Z.; Wang, Q.; Cheng, Y.; Yin, W.; and Huang, L. 2024. Multimodal Instruction Tuning with Conditional Mixture of LoRA. arXiv preprint arXiv:2402.15896

  26. [34]

    Shi, J.; Zheng, S.; Yin, X.; Lu, Y.; Xie, Y.; and Qu, Y. 2023. Clip-guided federated learning on heterogeneous and long-tailed data. arXiv preprint arXiv:2312.08648

  27. [35]

    Su, S.; Yang, M.; Li, B.; and Xue, X. 2024. Federated adaptive prompt tuning for multi-domain collaborative learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 15117--15125

  28. [36]

    Sun, L.; Zhang, K.; Li, Q.; and Lou, R. 2024. Umie: Unified multimodal information extraction with instruction tuning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 19062--19070

  29. [37]

    Y.; Guu, K.; Yu, A

    Wei, J.; Bosma, M.; Zhao, V. Y.; Guu, K.; Yu, A. W.; Lester, B.; Du, N.; Dai, A. M.; and Le, Q. V. 2021. Finetuned language models are zero-shot learners. arXiv preprint arXiv:2109.01652

  30. [38]

    Xiao, L.; Yang, X.; Peng, F.; Wang, Y.; and Xu, C. 2024 a . Hivg: Hierarchical multimodal fine-grained modulation for visual grounding. In Proceedings of the 32nd ACM International Conference on Multimedia, 5460--5469

  31. [39]

    Xiao, L.; Yang, X.; Peng, F.; Wang, Y.; and Xu, C. 2024 b . OneRef: Unified One-tower Expression Grounding and Segmentation with Mask Referring Modeling. arXiv preprint arXiv:2410.08021

  32. [40]

    Xiong, B.; Yang, X.; Song, Y.; Wang, Y.; and Xu, C. 2023. Client-Adaptive Cross-Model Reconstruction Network for Modality-Incomplete Multimodal Federated Learning. In Proceedings of the 31st ACM International Conference on Multimedia, 1241--1249

  33. [41]

    Xiong, B.; Yang, X.; Song, Y.; Wang, Y.; and Xu, C. 2024. Modality-Collaborative Test-Time Adaptation for Action Recognition. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 26732--26741

  34. [42]

    Xu, Y.; Yang, X.; Song, Y.; and Xu, C. 2024. Libra: Building Decoupled Vision System on Large Language Models. arXiv preprint arXiv:2405.10140

  35. [43]

    Xu, Z.; et al. 2022. Multiinstruct: Improving multi-modal zero-shot learning via instruction tuning. arXiv preprint arXiv:2212.10773

  36. [44]

    Yang, M.; Su, S.; Li, B.; and Xue, X. 2024 a . Exploring One-Shot Semi-supervised Federated Learning with Pre-trained Diffusion Models. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 16325--16333

  37. [45]

    Yang, X.; Xiong, B.; Huang, Y.; and Xu, C. 2024 b . Cross-Modal Federated Human Activity Recognition. IEEE Transactions on Pattern Analysis and Machine Intelligence

  38. [46]

    Yang, Y.; Long, G.; Shen, T.; Jiang, J.; and Blumenstein, M. 2024 c . Dual-Personalizing Adapter for Federated Foundation Models. arXiv preprint arXiv:2403.19211

  39. [47]

    Ye, Q.; Xu, H.; Xu, G.; Ye, J.; Yan, M.; Zhou, Y.; Wang, J.; Hu, A.; Shi, P.; Shi, Y.; et al. 2023. mplug-owl: Modularization empowers large language models with multimodality. arXiv preprint arXiv:2304.14178

  40. [48]

    Ye, R.; Wang, W.; Chai, J.; Li, D.; Li, Z.; Xu, Y.; Du, Y.; Wang, Y.; and Chen, S. 2024. Openfedllm: Training large language models on decentralized private data via federated learning. arXiv preprint arXiv:2402.06954

  41. [49]

    Zhang, J.; Liu, Y.; Hua, Y.; and Cao, J. 2024 a . Fedtgp: Trainable global prototypes with adaptive-margin-enhanced contrastive learning for data and model heterogeneity in federated learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 16768--16776

  42. [50]

    Zhang, J.; Vahidian, S.; Kuo, M.; Li, C.; Zhang, R.; Yu, T.; Wang, G.; and Chen, Y. 2024 b . Towards building the federatedGPT: Federated instruction tuning. In ICASSP 2024-2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 6915--6919. IEEE

  43. [51]

    Zhu, D.; Chen, J.; Shen, X.; Li, X.; and Elhoseiny, M. 2023. Minigpt-4: Enhancing vision-language understanding with advanced large language models. arXiv preprint arXiv:2304.10592

  44. [52]

    Zoph, B.; Bello, I.; Kumar, S.; Du, N.; Huang, Y.; Dean, J.; Shazeer, N.; and Fedus, W. 2022. St-moe: Designing stable and transferable sparse expert models. arXiv preprint arXiv:2202.08906

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.