-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support multi-task inference. #861
Commits on May 3, 2024
-
Xiang Song committed
May 3, 2024 Configuration menu - View commit details
-
Copy full SHA for a59b038 - Browse repository at this point
Copy the full SHA a59b038View commit details -
Xiang Song committed
May 3, 2024 Configuration menu - View commit details
-
Copy full SHA for 8825cb1 - Browse repository at this point
Copy the full SHA 8825cb1View commit details
Commits on May 6, 2024
-
Xiang Song committed
May 6, 2024 Configuration menu - View commit details
-
Copy full SHA for 82489ed - Browse repository at this point
Copy the full SHA 82489edView commit details -
Xiang Song committed
May 6, 2024 Configuration menu - View commit details
-
Copy full SHA for 3efbaa1 - Browse repository at this point
Copy the full SHA 3efbaa1View commit details -
Xiang Song committed
May 6, 2024 Configuration menu - View commit details
-
Copy full SHA for e82da16 - Browse repository at this point
Copy the full SHA e82da16View commit details -
Xiang Song committed
May 6, 2024 Configuration menu - View commit details
-
Copy full SHA for 9a8f8b4 - Browse repository at this point
Copy the full SHA 9a8f8b4View commit details -
Xiang Song committed
May 6, 2024 Configuration menu - View commit details
-
Copy full SHA for 00f1211 - Browse repository at this point
Copy the full SHA 00f1211View commit details
Commits on May 7, 2024
-
Merge branch 'master' into multi-task-trainer
Xiang Song committedMay 7, 2024 Configuration menu - View commit details
-
Copy full SHA for e8573e4 - Browse repository at this point
Copy the full SHA e8573e4View commit details -
Xiang Song committed
May 7, 2024 Configuration menu - View commit details
-
Copy full SHA for 2813d3a - Browse repository at this point
Copy the full SHA 2813d3aView commit details
Commits on May 9, 2024
-
Xiang Song committed
May 9, 2024 Configuration menu - View commit details
-
Copy full SHA for 20d306a - Browse repository at this point
Copy the full SHA 20d306aView commit details -
Xiang Song committed
May 9, 2024 Configuration menu - View commit details
-
Copy full SHA for 9613c6a - Browse repository at this point
Copy the full SHA 9613c6aView commit details -
Xiang Song committed
May 9, 2024 Configuration menu - View commit details
-
Copy full SHA for 166d9d5 - Browse repository at this point
Copy the full SHA 166d9d5View commit details -
Xiang Song committed
May 9, 2024 Configuration menu - View commit details
-
Copy full SHA for ab62c45 - Browse repository at this point
Copy the full SHA ab62c45View commit details
Commits on May 10, 2024
-
Xiang Song committed
May 10, 2024 Configuration menu - View commit details
-
Copy full SHA for b6a7267 - Browse repository at this point
Copy the full SHA b6a7267View commit details -
Xiang Song committed
May 10, 2024 Configuration menu - View commit details
-
Copy full SHA for 71ad941 - Browse repository at this point
Copy the full SHA 71ad941View commit details
Commits on May 11, 2024
-
[Multi-task Learning] Update GraphStorm input config to support multi…
…-task learning (awslabs#828) *Issue #, if available:* Support multi-task learning. First PR for awslabs#789 *Description of changes:* Update GraphStorm input config parsing to support multi-task learning. Allow user to specify to specify multiple training tasks for a training job through yaml file. By providing the `multi_task_learning` configurations in the yaml file, users can define multiple training tasks. The following config defines two training tasks, one for node classification and one for edge classification. ``` --- version: 1.0 gsf: basic: ... ... multi_task_learning: - node_classification: target_ntype: "movie" label_field: "label" mask_fields: - "train_mask_field_nc" - "val_mask_field_nc" - "test_mask_field_nc" task_weight: 1.0 - edge_classification: target_etype: - "user,rating,movie" label_field: "rate" mask_fields: - "train_mask_field_ec" - "val_mask_field_ec" - "test_mask_field_ec" task_weight: 0.5 # weight of the task ``` Task specific hyperparameters in multi-task learning are same as thoses in single task learning, except that two new configs are required, i.e., mask_fields and task_weight. The mask_fields provides the training, validation and test masks for the task and the task_weight gives its loss weight. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --------- Co-authored-by: Xiang Song <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6e7c93e - Browse repository at this point
Copy the full SHA 6e7c93eView commit details -
Merge branch 'multi-task' into multi-task-trainer
Xiang Song committedMay 11, 2024 Configuration menu - View commit details
-
Copy full SHA for 6344f91 - Browse repository at this point
Copy the full SHA 6344f91View commit details
Commits on May 13, 2024
-
Xiang Song committed
May 13, 2024 Configuration menu - View commit details
-
Copy full SHA for 75b5435 - Browse repository at this point
Copy the full SHA 75b5435View commit details -
Xiang Song committed
May 13, 2024 Configuration menu - View commit details
-
Copy full SHA for 729a5e1 - Browse repository at this point
Copy the full SHA 729a5e1View commit details -
Xiang Song committed
May 13, 2024 Configuration menu - View commit details
-
Copy full SHA for 515a642 - Browse repository at this point
Copy the full SHA 515a642View commit details -
Xiang Song committed
May 13, 2024 Configuration menu - View commit details
-
Copy full SHA for 23c24ca - Browse repository at this point
Copy the full SHA 23c24caView commit details -
Xiang Song committed
May 13, 2024 Configuration menu - View commit details
-
Copy full SHA for 3c86ab3 - Browse repository at this point
Copy the full SHA 3c86ab3View commit details
Commits on May 14, 2024
-
Xiang Song committed
May 14, 2024 Configuration menu - View commit details
-
Copy full SHA for e541837 - Browse repository at this point
Copy the full SHA e541837View commit details -
Xiang Song committed
May 14, 2024 Configuration menu - View commit details
-
Copy full SHA for 1dcc4aa - Browse repository at this point
Copy the full SHA 1dcc4aaView commit details -
Xiang Song committed
May 14, 2024 Configuration menu - View commit details
-
Copy full SHA for 1335ce1 - Browse repository at this point
Copy the full SHA 1335ce1View commit details
Commits on May 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 75a6608 - Browse repository at this point
Copy the full SHA 75a6608View commit details -
[Multi-task Learning] Add multi-task Dataloader for multi-task learni…
…ng (awslabs#834) *Issue #, if available:* awslabs#789 *Description of changes:* Add GSgnnMultiTaskDataLoader to support multi-task learning. When initializing a GSgnnMultiTaskDataLoader, users need to provide two inputs: 1) a list of config.TaskInfo objects recording the information of each task and 2) a list of dataloaders corresponding to each training task. During training for each iteration, GSgnnMultiTaskDataLoader will iteratively call each task-dataloader to generate a mini-batch and finally return a list of mini-batches to the trainer. The length of the dataloader (number of batches for an epoch) is determined by the largest task in the GSgnnMultiTaskDataLoader. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --------- Co-authored-by: Xiang Song <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e8584db - Browse repository at this point
Copy the full SHA e8584dbView commit details -
Xiang Song committed
May 15, 2024 Configuration menu - View commit details
-
Copy full SHA for d4a74a9 - Browse repository at this point
Copy the full SHA d4a74a9View commit details -
Xiang Song committed
May 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 858b751 - Browse repository at this point
Copy the full SHA 858b751View commit details -
Xiang Song committed
May 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 9de160b - Browse repository at this point
Copy the full SHA 9de160bView commit details -
Xiang Song committed
May 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 0c630ce - Browse repository at this point
Copy the full SHA 0c630ceView commit details -
[Multi-task Learning] Add multi-task evaluator for multi-task learning (
awslabs#837) *Issue #, if available:* awslabs#789 *Description of changes:* Add GSgnnMultiTaskEvaluator to support multi-task evaluation. GSgnnMultiTaskEvaluator accepts a set of Evaluators, in the format of dict ({task_id: Evaluator, ...}) as input to initialize the multi-task evaluator. When doing evaluation, it accepts three arguements val_results, test_results and total_iters. The val_results and test_results will be dicts in the format of {task_id_0: reslut, task_id_1: result}. The GSgnnMultiTaskEvaluator will call task specify evaluators for each task to compute the evaluation scores. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --------- Co-authored-by: Xiang Song <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1d58bee - Browse repository at this point
Copy the full SHA 1d58beeView commit details -
Xiang Song committed
May 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 771adf7 - Browse repository at this point
Copy the full SHA 771adf7View commit details -
Merge branch 'multi-task' into multi-task-trainer
Xiang Song committedMay 15, 2024 Configuration menu - View commit details
-
Copy full SHA for c79b15b - Browse repository at this point
Copy the full SHA c79b15bView commit details -
Xiang Song committed
May 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 0d9f30d - Browse repository at this point
Copy the full SHA 0d9f30dView commit details
Commits on May 16, 2024
-
Xiang Song committed
May 16, 2024 Configuration menu - View commit details
-
Copy full SHA for 6ca1d65 - Browse repository at this point
Copy the full SHA 6ca1d65View commit details -
[Multi-task Learning] Add Multi-task test dataset (awslabs#843)
*Issue #, if available:* awslabs#789 *Description of changes:* Add multi-task learning test dataset based on movielens. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --------- Co-authored-by: Xiang Song <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fa8111c - Browse repository at this point
Copy the full SHA fa8111cView commit details -
Merge branch 'multi-task' into multi-task-trainer
Xiang Song committedMay 16, 2024 Configuration menu - View commit details
-
Copy full SHA for 1fba83a - Browse repository at this point
Copy the full SHA 1fba83aView commit details -
Xiang Song committed
May 16, 2024 Configuration menu - View commit details
-
Copy full SHA for b265660 - Browse repository at this point
Copy the full SHA b265660View commit details -
Xiang Song committed
May 16, 2024 Configuration menu - View commit details
-
Copy full SHA for 3b6f8bf - Browse repository at this point
Copy the full SHA 3b6f8bfView commit details -
Xiang Song committed
May 16, 2024 Configuration menu - View commit details
-
Copy full SHA for 3775b94 - Browse repository at this point
Copy the full SHA 3775b94View commit details -
Xiang Song committed
May 16, 2024 Configuration menu - View commit details
-
Copy full SHA for 5c41c8a - Browse repository at this point
Copy the full SHA 5c41c8aView commit details -
Xiang Song committed
May 16, 2024 Configuration menu - View commit details
-
Copy full SHA for 25f4817 - Browse repository at this point
Copy the full SHA 25f4817View commit details
Commits on May 17, 2024
-
Xiang Song committed
May 17, 2024 Configuration menu - View commit details
-
Copy full SHA for 216c610 - Browse repository at this point
Copy the full SHA 216c610View commit details -
Xiang Song committed
May 17, 2024 Configuration menu - View commit details
-
Copy full SHA for 017c00f - Browse repository at this point
Copy the full SHA 017c00fView commit details
Commits on May 19, 2024
-
Merge branch 'master' into multi-task
Xiang Song committedMay 19, 2024 Configuration menu - View commit details
-
Copy full SHA for bcb9d1d - Browse repository at this point
Copy the full SHA bcb9d1dView commit details -
Merge branch 'multi-task' into multi-task-trainer
Xiang Song committedMay 19, 2024 Configuration menu - View commit details
-
Copy full SHA for 32d905f - Browse repository at this point
Copy the full SHA 32d905fView commit details
Commits on May 20, 2024
-
Merge branch 'master' into multi-task
Xiang Song committedMay 20, 2024 Configuration menu - View commit details
-
Copy full SHA for 5db0f74 - Browse repository at this point
Copy the full SHA 5db0f74View commit details -
Merge branch 'multi-task' into multi-task-trainer
Xiang Song committedMay 20, 2024 Configuration menu - View commit details
-
Copy full SHA for a778c08 - Browse repository at this point
Copy the full SHA a778c08View commit details -
Xiang Song committed
May 20, 2024 Configuration menu - View commit details
-
Copy full SHA for 3b592c4 - Browse repository at this point
Copy the full SHA 3b592c4View commit details -
Xiang Song committed
May 20, 2024 Configuration menu - View commit details
-
Copy full SHA for d7e0405 - Browse repository at this point
Copy the full SHA d7e0405View commit details -
Xiang Song committed
May 20, 2024 Configuration menu - View commit details
-
Copy full SHA for 08e3fe6 - Browse repository at this point
Copy the full SHA 08e3fe6View commit details -
Xiang Song committed
May 20, 2024 Configuration menu - View commit details
-
Copy full SHA for 4945c2c - Browse repository at this point
Copy the full SHA 4945c2cView commit details -
Xiang Song committed
May 20, 2024 Configuration menu - View commit details
-
Copy full SHA for d0b37b4 - Browse repository at this point
Copy the full SHA d0b37b4View commit details -
Xiang Song committed
May 20, 2024 Configuration menu - View commit details
-
Copy full SHA for 46da6ca - Browse repository at this point
Copy the full SHA 46da6caView commit details -
Xiang Song committed
May 20, 2024 Configuration menu - View commit details
-
Copy full SHA for 1dc4dcc - Browse repository at this point
Copy the full SHA 1dc4dccView commit details -
Xiang Song committed
May 20, 2024 Configuration menu - View commit details
-
Copy full SHA for 9b19427 - Browse repository at this point
Copy the full SHA 9b19427View commit details
Commits on May 21, 2024
-
Xiang Song committed
May 21, 2024 Configuration menu - View commit details
-
Copy full SHA for 28ec04c - Browse repository at this point
Copy the full SHA 28ec04cView commit details -
Xiang Song committed
May 21, 2024 Configuration menu - View commit details
-
Copy full SHA for 2675b6d - Browse repository at this point
Copy the full SHA 2675b6dView commit details -
Xiang Song committed
May 21, 2024 Configuration menu - View commit details
-
Copy full SHA for 775d4b2 - Browse repository at this point
Copy the full SHA 775d4b2View commit details -
Xiang Song committed
May 21, 2024 Configuration menu - View commit details
-
Copy full SHA for 44c5357 - Browse repository at this point
Copy the full SHA 44c5357View commit details -
Xiang Song committed
May 21, 2024 Configuration menu - View commit details
-
Copy full SHA for c719891 - Browse repository at this point
Copy the full SHA c719891View commit details -
Xiang Song committed
May 21, 2024 Configuration menu - View commit details
-
Copy full SHA for 958e2b9 - Browse repository at this point
Copy the full SHA 958e2b9View commit details -
[Multi-task Learning] Refactor graphstorm.model for multi-task learni…
…ng. (awslabs#852) *Issue #, if available:* awslabs#789 *Description of changes:* As multi-task learning trainer will invoke edge_mini_batch_predict, lp_mini_batch_predict and node_mini_batch_predict when conducting evaluation or testing, refactor the code to allow the functions to work with different decoders. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --------- Co-authored-by: Xiang Song <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 78f3458 - Browse repository at this point
Copy the full SHA 78f3458View commit details -
Merge branch 'multi-task-refactor-nn' into multi-task-trainer
Xiang Song committedMay 21, 2024 Configuration menu - View commit details
-
Copy full SHA for 87e1df2 - Browse repository at this point
Copy the full SHA 87e1df2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f56db3 - Browse repository at this point
Copy the full SHA 4f56db3View commit details
Commits on May 23, 2024
-
Xiang Song committed
May 23, 2024 Configuration menu - View commit details
-
Copy full SHA for 04ec3e9 - Browse repository at this point
Copy the full SHA 04ec3e9View commit details -
Add GSgnnMultiTaskSharedEncoderModel
Xiang Song committedMay 23, 2024 Configuration menu - View commit details
-
Copy full SHA for 601aa1b - Browse repository at this point
Copy the full SHA 601aa1bView commit details -
Xiang Song committed
May 23, 2024 Configuration menu - View commit details
-
Copy full SHA for 4a3ec01 - Browse repository at this point
Copy the full SHA 4a3ec01View commit details -
Xiang Song committed
May 23, 2024 Configuration menu - View commit details
-
Copy full SHA for 46125ca - Browse repository at this point
Copy the full SHA 46125caView commit details -
Xiang Song committed
May 23, 2024 Configuration menu - View commit details
-
Copy full SHA for 2403930 - Browse repository at this point
Copy the full SHA 2403930View commit details -
Xiang Song committed
May 23, 2024 Configuration menu - View commit details
-
Copy full SHA for caa851a - Browse repository at this point
Copy the full SHA caa851aView commit details
Commits on May 24, 2024
-
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for e3e33f8 - Browse repository at this point
Copy the full SHA e3e33f8View commit details -
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for 36f4c60 - Browse repository at this point
Copy the full SHA 36f4c60View commit details -
Merge branch 'multi-task-model' into multi-task-trainer
Xiang Song committedMay 24, 2024 Configuration menu - View commit details
-
Copy full SHA for 3543281 - Browse repository at this point
Copy the full SHA 3543281View commit details -
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for 4a0a7df - Browse repository at this point
Copy the full SHA 4a0a7dfView commit details -
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for 424b4b2 - Browse repository at this point
Copy the full SHA 424b4b2View commit details -
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for f62e035 - Browse repository at this point
Copy the full SHA f62e035View commit details -
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for d8dd046 - Browse repository at this point
Copy the full SHA d8dd046View commit details -
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for 1a5a165 - Browse repository at this point
Copy the full SHA 1a5a165View commit details -
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for 1d92008 - Browse repository at this point
Copy the full SHA 1d92008View commit details -
Xiang Song committed
May 24, 2024 Configuration menu - View commit details
-
Copy full SHA for d6c2cb3 - Browse repository at this point
Copy the full SHA d6c2cb3View commit details
Commits on May 26, 2024
-
Xiang Song committed
May 26, 2024 Configuration menu - View commit details
-
Copy full SHA for c90fb5f - Browse repository at this point
Copy the full SHA c90fb5fView commit details -
Xiang Song committed
May 26, 2024 Configuration menu - View commit details
-
Copy full SHA for 3a98131 - Browse repository at this point
Copy the full SHA 3a98131View commit details
Commits on May 27, 2024
-
Xiang Song committed
May 27, 2024 Configuration menu - View commit details
-
Copy full SHA for 9baac44 - Browse repository at this point
Copy the full SHA 9baac44View commit details -
Xiang Song committed
May 27, 2024 Configuration menu - View commit details
-
Copy full SHA for 6003cdc - Browse repository at this point
Copy the full SHA 6003cdcView commit details -
Xiang Song committed
May 27, 2024 Configuration menu - View commit details
-
Copy full SHA for a7c14e3 - Browse repository at this point
Copy the full SHA a7c14e3View commit details -
Xiang Song committed
May 27, 2024 Configuration menu - View commit details
-
Copy full SHA for 2a9aa88 - Browse repository at this point
Copy the full SHA 2a9aa88View commit details -
Xiang Song committed
May 27, 2024 Configuration menu - View commit details
-
Copy full SHA for fc45ea2 - Browse repository at this point
Copy the full SHA fc45ea2View commit details -
Merge branch 'multi-task-model' into multi-task-trainer
Xiang Song committedMay 27, 2024 Configuration menu - View commit details
-
Copy full SHA for fd509c9 - Browse repository at this point
Copy the full SHA fd509c9View commit details -
Xiang Song committed
May 27, 2024 Configuration menu - View commit details
-
Copy full SHA for 7f9947c - Browse repository at this point
Copy the full SHA 7f9947cView commit details
Commits on May 28, 2024
-
Xiang Song committed
May 28, 2024 Configuration menu - View commit details
-
Copy full SHA for cb1ce95 - Browse repository at this point
Copy the full SHA cb1ce95View commit details -
Xiang Song committed
May 28, 2024 Configuration menu - View commit details
-
Copy full SHA for 2da6621 - Browse repository at this point
Copy the full SHA 2da6621View commit details -
Merge branch 'multi-task-trainer' into multi-task-infer
Xiang Song committedMay 28, 2024 Configuration menu - View commit details
-
Copy full SHA for 494145b - Browse repository at this point
Copy the full SHA 494145bView commit details
Commits on May 29, 2024
-
Xiang Song committed
May 29, 2024 Configuration menu - View commit details
-
Copy full SHA for 12691bc - Browse repository at this point
Copy the full SHA 12691bcView commit details -
Xiang Song committed
May 29, 2024 Configuration menu - View commit details
-
Copy full SHA for 6673e85 - Browse repository at this point
Copy the full SHA 6673e85View commit details
Commits on May 30, 2024
-
Xiang Song committed
May 30, 2024 Configuration menu - View commit details
-
Copy full SHA for 8485121 - Browse repository at this point
Copy the full SHA 8485121View commit details
Commits on Jun 2, 2024
-
Merge branch 'master' into multi-task-infer
Xiang Song committedJun 2, 2024 Configuration menu - View commit details
-
Copy full SHA for 2ee9b86 - Browse repository at this point
Copy the full SHA 2ee9b86View commit details -
Xiang Song committed
Jun 2, 2024 Configuration menu - View commit details
-
Copy full SHA for d6bd3cc - Browse repository at this point
Copy the full SHA d6bd3ccView commit details
Commits on Jun 6, 2024
-
Merge branch 'master' into multi-task-infer
Xiang Song committedJun 6, 2024 Configuration menu - View commit details
-
Copy full SHA for c2f3b4e - Browse repository at this point
Copy the full SHA c2f3b4eView commit details
Commits on Jun 7, 2024
-
Merge branch 'master' into multi-task-infer
Xiang Song committedJun 7, 2024 Configuration menu - View commit details
-
Copy full SHA for c79c7ce - Browse repository at this point
Copy the full SHA c79c7ceView commit details
Commits on Jun 8, 2024
-
Xiang Song committed
Jun 8, 2024 Configuration menu - View commit details
-
Copy full SHA for c62c3e3 - Browse repository at this point
Copy the full SHA c62c3e3View commit details
Commits on Jun 9, 2024
-
Xiang Song committed
Jun 9, 2024 Configuration menu - View commit details
-
Copy full SHA for 1b6d9f6 - Browse repository at this point
Copy the full SHA 1b6d9f6View commit details
Commits on Jun 11, 2024
-
Update multi-task evaluation logic to avoid information leakage issue…
… in lp and nfeat reconstruct task evaluation. Previously, in the eval() function of GSgnnMultiTaskLearningTrainer, both link prediction and node feature reconstruction tasks use the node embeddings computed with the entire graph. This will cause test edge leakage for link prediction tasks and target node node feature leakage for node feature reconstruction tasks. This PR fixes this issue.
Xiang Song committedJun 11, 2024 Configuration menu - View commit details
-
Copy full SHA for 7eba2e3 - Browse repository at this point
Copy the full SHA 7eba2e3View commit details -
Xiang Song committed
Jun 11, 2024 Configuration menu - View commit details
-
Copy full SHA for 14f6cfc - Browse repository at this point
Copy the full SHA 14f6cfcView commit details
Commits on Jun 12, 2024
-
Xiang Song committed
Jun 12, 2024 Configuration menu - View commit details
-
Copy full SHA for cbb0596 - Browse repository at this point
Copy the full SHA cbb0596View commit details -
Merge branch 'fix-multi-task-eval' into multi-task-infer
Xiang Song committedJun 12, 2024 Configuration menu - View commit details
-
Copy full SHA for a34becc - Browse repository at this point
Copy the full SHA a34beccView commit details -
Xiang Song committed
Jun 12, 2024 Configuration menu - View commit details
-
Copy full SHA for 607f811 - Browse repository at this point
Copy the full SHA 607f811View commit details -
Xiang Song committed
Jun 12, 2024 Configuration menu - View commit details
-
Copy full SHA for b2cc5c3 - Browse repository at this point
Copy the full SHA b2cc5c3View commit details -
Xiang Song committed
Jun 12, 2024 Configuration menu - View commit details
-
Copy full SHA for 47f7e88 - Browse repository at this point
Copy the full SHA 47f7e88View commit details -
Xiang Song committed
Jun 12, 2024 Configuration menu - View commit details
-
Copy full SHA for 7d91049 - Browse repository at this point
Copy the full SHA 7d91049View commit details
Commits on Jun 13, 2024
-
Xiang Song committed
Jun 13, 2024 Configuration menu - View commit details
-
Copy full SHA for 75dbd74 - Browse repository at this point
Copy the full SHA 75dbd74View commit details -
Xiang Song committed
Jun 13, 2024 Configuration menu - View commit details
-
Copy full SHA for ac333d8 - Browse repository at this point
Copy the full SHA ac333d8View commit details -
Merge branch 'fix-multi-task-eval' into multi-task-infer
Xiang Song committedJun 13, 2024 Configuration menu - View commit details
-
Copy full SHA for a7b1872 - Browse repository at this point
Copy the full SHA a7b1872View commit details -
Xiang Song committed
Jun 13, 2024 Configuration menu - View commit details
-
Copy full SHA for de19454 - Browse repository at this point
Copy the full SHA de19454View commit details
Commits on Jun 14, 2024
-
Xiang Song committed
Jun 14, 2024 Configuration menu - View commit details
-
Copy full SHA for 1b635cf - Browse repository at this point
Copy the full SHA 1b635cfView commit details -
Merge branch 'master' into multi-task-infer
Xiang Song committedJun 14, 2024 Configuration menu - View commit details
-
Copy full SHA for 8813e14 - Browse repository at this point
Copy the full SHA 8813e14View commit details -
Xiang Song committed
Jun 14, 2024 Configuration menu - View commit details
-
Copy full SHA for 856321c - Browse repository at this point
Copy the full SHA 856321cView commit details
Commits on Jun 15, 2024
-
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 48f10d1 - Browse repository at this point
Copy the full SHA 48f10d1View commit details -
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 01c8b77 - Browse repository at this point
Copy the full SHA 01c8b77View commit details -
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 6c84c06 - Browse repository at this point
Copy the full SHA 6c84c06View commit details -
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for cbb77e2 - Browse repository at this point
Copy the full SHA cbb77e2View commit details -
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 344bea1 - Browse repository at this point
Copy the full SHA 344bea1View commit details -
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 34dc972 - Browse repository at this point
Copy the full SHA 34dc972View commit details -
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 4a1adef - Browse repository at this point
Copy the full SHA 4a1adefView commit details -
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 2cee7ff - Browse repository at this point
Copy the full SHA 2cee7ffView commit details -
Xiang Song committed
Jun 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 2ed0d73 - Browse repository at this point
Copy the full SHA 2ed0d73View commit details
Commits on Jun 16, 2024
-
Xiang Song committed
Jun 16, 2024 Configuration menu - View commit details
-
Copy full SHA for 96b728e - Browse repository at this point
Copy the full SHA 96b728eView commit details
Commits on Jun 17, 2024
-
Xiang Song committed
Jun 17, 2024 Configuration menu - View commit details
-
Copy full SHA for 96294e5 - Browse repository at this point
Copy the full SHA 96294e5View commit details -
Xiang Song committed
Jun 17, 2024 Configuration menu - View commit details
-
Copy full SHA for e127366 - Browse repository at this point
Copy the full SHA e127366View commit details -
Xiang Song committed
Jun 17, 2024 Configuration menu - View commit details
-
Copy full SHA for acccfd8 - Browse repository at this point
Copy the full SHA acccfd8View commit details -
Xiang Song committed
Jun 17, 2024 Configuration menu - View commit details
-
Copy full SHA for 7cd7176 - Browse repository at this point
Copy the full SHA 7cd7176View commit details -
Xiang Song committed
Jun 17, 2024 Configuration menu - View commit details
-
Copy full SHA for baa9ff7 - Browse repository at this point
Copy the full SHA baa9ff7View commit details -
Xiang Song committed
Jun 17, 2024 Configuration menu - View commit details
-
Copy full SHA for 6337052 - Browse repository at this point
Copy the full SHA 6337052View commit details -
Xiang Song committed
Jun 17, 2024 Configuration menu - View commit details
-
Copy full SHA for ed2bf69 - Browse repository at this point
Copy the full SHA ed2bf69View commit details