Papers › Selective Task Group Updates for Multi-Task Optimization

Selective Task Group Updates for Multi-Task Optimization

17 Feb 2025arXiv:2502.11986archive 2025-07-28

Wooseong Jeong, Kuk-Jin Yoon

Multi-task learning enables the acquisition of task-generic knowledge by training multiple tasks within a unified architecture. However, training all tasks together in a single architecture can lead to performance degradation, known as negative transfer, which is a main concern in multi-task learning. Previous works have addressed this issue by optimizing the multi-task network through gradient manipulation or weighted loss adjustments. However, their optimization strategy focuses on addressing task imbalance in shared parameters, neglecting the learning of task-specific parameters. As a result, they show limitations in mitigating negative transfer, since the learning of shared space and task-specific information influences each other during optimization. To address this, we propose a different approach to enhance multi-task performance by selectively grouping tasks and updating them for each batch during optimization. We introduce an algorithm that adaptively determines how to effectively group tasks and update them during the learning process. To track inter-task relations and optimize multi-task networks simultaneously, we propose proximal inter-task affinity, which can be measured during the optimization process. We provide a theoretical analysis on how dividing tasks into multiple groups and updating them sequentially significantly affects multi-task performance by enhancing the learning of task-specific parameters. Our methods substantially outperform previous multi-task optimization approaches and are scalable to different architectures and various numbers of tasks.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2502.11986")

Code

Syntology Ran 6 of 16 code samples harvested from 1 repository linked to this paper; 10 have no recorded run. Of those that ran: 1 ran · violated contract; 3 ran · fixture could not drive it; 2 ran with no contract checked.

By repository: official repository: 16 samples from 1 repository, 6 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

wooseong97/sel-update-mtl officialmentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

16 samples harvested; 6 ran; 0 honoured the contract we drafted; 10 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · violated contract
3ran · fixture could not drive it
2ran
10unverified

Licence: 0 of the 16 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from wooseong97/sel-update-mtl. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

MetricLogger wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository ran MIT (permissive) · f5627726b4ae2bcc · report
SmoothedValue wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository ran MIT (permissive) · 79d5ce6f2d2f4574 · report
get_loss wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository ran · fixture could not drive it MIT (permissive) · 32835f4d0f551b1b · report
get_metric wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository ran · violated contract fingerprinted MIT (permissive) · 4799ae2084413fda · report
get_output wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository ran · fixture could not drive it MIT (permissive) · a64ab65acb301c2d · report
to_cuda wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository ran · fixture could not drive it MIT (permissive) · 48fca14a672a5108 · report
PerformanceMeter wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · 05242b3a981049cf · report
evaluate wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · cc95be4bcb3a1abd · report
get_single_task_meter wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · 6a216e80da829b4d · report
mkdir_if_missing wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · 3cc281449dc70540 · report
save_model_pred_for_one_task wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · c5851b0ba58c9bd3 · report
tb_update_perf wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · 3d53794e86af79d4 · report
test_phase wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · ceea43c4d7d88aca · report
train_phase_affinity wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · 4e9930eb324564f2 · report
update_affinity wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · 6e881abbc3437293 · report
update_tb wooseong97/sel-update-mtl/sel-update-mtl/utils/train_utils.py official repository unverified MIT (permissive) · 07aee3dd8e23ca9c · report

Tasks

Multi-Task Learning

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections