Skip to content

Commit

Permalink
bug fix for association ls
Browse files Browse the repository at this point in the history
  • Loading branch information
hasan7n committed May 21, 2024
1 parent e76bea6 commit 97b1bac
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions cli/medperf/commands/association/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,17 @@ def get_associations_list(
"user": config.comms.get_user_training_datasets_associations,
"experiment": config.comms.get_training_datasets_associations,
},
"aggregator": config.comms.get_user_training_aggregators_associations,
"ca": config.comms.get_user_training_cas_associations,
"aggregator": {
"user": config.comms.get_user_training_aggregators_associations,
},
"ca": {
"user": config.comms.get_user_training_cas_associations,
},
},
"benchmark": {
"dataset": config.comms.get_user_benchmarks_datasets_associations,
"dataset": {
"user": config.comms.get_user_benchmarks_datasets_associations,
},
"mode_mlcube": {
"user": config.comms.get_user_benchmarks_models_associations,
"experiment": config.comms.get_benchmark_models_associations,
Expand Down

0 comments on commit 97b1bac

Please sign in to comment.