From 6dde9c4b5e8c0c5e991f427cb11288f1406257c4 Mon Sep 17 00:00:00 2001 From: YuanTingHsieh Date: Sun, 13 Oct 2024 22:46:20 -0700 Subject: [PATCH] Remove extra . --- web/src/components/code.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/components/code.astro b/web/src/components/code.astro index 36c92fdad0..634ab25cda 100644 --- a/web/src/components/code.astro +++ b/web/src/components/code.astro @@ -709,7 +709,7 @@ const frameworks = [ framework: "lightning", title: "Server Code (fedavg.py)", description: - "The ModelController API is used to write a federated routine with mechanisms for distributing and receiving models from clients. Here we implement the basic FedAvg algorithm using some helper functions from BaseFedAvg..", + "The ModelController API is used to write a federated routine with mechanisms for distributing and receiving models from clients. Here we implement the basic FedAvg algorithm using some helper functions from BaseFedAvg.", code: serverCode_lt, highlighted_lines: "7,17,23", }, @@ -763,7 +763,7 @@ const frameworks = [ framework: "tensorflow", title: "Server Code (fedavg.py)", description: - "The ModelController API is used to write a federated routine with mechanisms for distributing and receiving models from clients. Here we implement the basic FedAvg algorithm using some helper functions from BaseFedAvg..", + "The ModelController API is used to write a federated routine with mechanisms for distributing and receiving models from clients. Here we implement the basic FedAvg algorithm using some helper functions from BaseFedAvg.", code: serverCode_tf, highlighted_lines: "7,17,23", }, @@ -773,7 +773,7 @@ const frameworks = [ framework: "tensorflow", title: "Job Code (fedavg_cifar10_tf_job.py)", description: - "Lastly we construct the job with our 'cifar10_tf_fl.py' client script and 'FedAvg' server controller. The BaseFedJob automatically configures components for model persistence, model selection, and TensorBoard streaming. We then run the job with the FL simulator.", + "Lastly we construct the job with our 'cifar10_tf_fl.py' client script and 'FedAvg' server controller. The BaseFedJob automatically configures components for model persistence and model selection. We then run the job with the FL simulator.", code: jobCode_tf, }, {