diff --git a/docs/source/tutorial_sources/zero-to-forge/1_RL_and_Forge_Fundamentals.md b/docs/source/tutorial_sources/zero-to-forge/1_RL_and_Forge_Fundamentals.md index 1204366e6..bf31926a4 100644 --- a/docs/source/tutorial_sources/zero-to-forge/1_RL_and_Forge_Fundamentals.md +++ b/docs/source/tutorial_sources/zero-to-forge/1_RL_and_Forge_Fundamentals.md @@ -155,7 +155,7 @@ async def conceptual_forge_rl_step(services, step): **Key difference**: Same RL logic, but each component is now a distributed, fault-tolerant, auto-scaling service. -Did you realise-we are not worrying about any Infra code here! TorchForge Automagically handles the details behind the scenes and you can focus on writing your RL Algorthms! +Did you realise-we are not worrying about any Infra code here! TorchForge Automagically handles the details behind the scenes and you can focus on writing your RL Algorithms! ## Why This Matters: Traditional ML Infrastructure Fails diff --git a/src/forge/actors/generator.py b/src/forge/actors/generator.py index 6c2efd5e6..32ae69906 100644 --- a/src/forge/actors/generator.py +++ b/src/forge/actors/generator.py @@ -667,7 +667,7 @@ async def update_weights( loaded = model.load_weights([(name, param)]) del param loaded_weights.update(loaded) - logger.info(f"[PolicyWorker] updated {len(loaded_weights)} paremeters") + logger.info(f"[PolicyWorker] updated {len(loaded_weights)} parameters") t.stop() return # normal update_weights without shared memory prefetching diff --git a/tests/integration_tests/test_policy_update.py b/tests/integration_tests/test_policy_update.py index 01f01a390..202c10686 100644 --- a/tests/integration_tests/test_policy_update.py +++ b/tests/integration_tests/test_policy_update.py @@ -191,7 +191,7 @@ async def _setup_and_teardown(request): if use_dcp_override is not None: trainer_cfg["use_dcp"] = use_dcp_override - logger.info(f"`trainer.use_dcp` is overriden to {use_dcp_override}") + logger.info(f"`trainer.use_dcp` is overridden to {use_dcp_override}") if cfg.get("provisioner", None) is not None: await init_provisioner(