Skip to content

Commit 15f6496

Browse files
author
Felipe Mello
committed
update old configs
1 parent cd04223 commit 15f6496

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.meta/mast/qwen3_14b_mast.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ metric_logging:
1919
wandb:
2020
project: "grpo-training"
2121
group: "grpo_exp_${oc.env:USER}"
22-
reduce_across_ranks: True
22+
logging_mode: global_reduce
2323
console:
24-
reduce_across_ranks: True
24+
logging_mode: global_reduce
2525

2626
# Dataset configuration
2727
dataset:

.meta/mast/qwen3_1_7b_mast.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ metric_logging:
1919
wandb:
2020
project: "grpo-training"
2121
group: "grpo_exp_${oc.env:USER}"
22-
reduce_across_ranks: True
22+
logging_mode: global_reduce
2323
console:
24-
reduce_across_ranks: True
24+
logging_mode: global_reduce
2525

2626
# Dataset configuration
2727
dataset:

.meta/mast/qwen3_32b_mast.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ metric_logging:
1919
wandb:
2020
project: "grpo-training"
2121
group: "grpo_exp_${oc.env:USER}"
22-
reduce_across_ranks: True
22+
logging_mode: global_reduce
2323
console:
24-
reduce_across_ranks: True
24+
logging_mode: global_reduce
2525

2626
# Dataset configuration
2727
dataset:

.meta/mast/qwen3_4b_mast.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ metric_logging:
1919
wandb:
2020
project: "grpo-training"
2121
group: "grpo_exp_${oc.env:USER}"
22-
reduce_across_ranks: True
22+
logging_mode: global_reduce
2323
console:
24-
reduce_across_ranks: True
24+
logging_mode: global_reduce
2525

2626
# Dataset configuration
2727
dataset:

.meta/mast/qwen3_8b_mast.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ metric_logging:
1919
wandb:
2020
project: "grpo-training"
2121
group: "grpo_exp_${oc.env:USER}"
22-
reduce_across_ranks: True
22+
logging_mode: global_reduce
2323
console:
24-
reduce_across_ranks: True
24+
logging_mode: global_reduce
2525

2626
# Dataset configuration
2727
dataset:

tests/unit_tests/observability/test_metric_actors.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ async def test_valid_backend_configs(self, global_logger):
112112
# Empty config
113113
await global_logger.init_backends.call_one({})
114114

115-
# Valid configs for different reduce_across_ranks modes
116-
for reduce_across_ranks in [True, False]:
117-
config = {"console": {"reduce_across_ranks": reduce_across_ranks}}
115+
# Valid configs for different logging_mode modes
116+
for logging_mode in [LoggingMode.GLOBAL_REDUCE, LoggingMode.PER_RANK_NO_REDUCE]:
117+
config = {"console": {"logging_mode": logging_mode}}
118118
await global_logger.init_backends.call_one(config)
119119

120120
def test_invalid_backend_configs(self):

0 commit comments

Comments
 (0)