@@ -67,46 +67,46 @@ export abstract class Base {
67
67
68
68
/**
69
69
* Communication callback called once at the beginning of the training instance.
70
- * @param weights The initial model weights
71
- * @param trainingInformant The training informant
70
+ * @param _weights The initial model weights
71
+ * @param _trainingInformant The training informant
72
72
*/
73
73
async onTrainBeginCommunication (
74
- weights : WeightsContainer ,
75
- trainingInformant : TrainingInformant
74
+ _weights : WeightsContainer ,
75
+ _trainingInformant : TrainingInformant
76
76
) : Promise < void > { }
77
77
78
78
/**
79
79
* Communication callback called once at the end of the training instance.
80
- * @param weights The final model weights
81
- * @param trainingInformant The training informant
80
+ * @param _weights The final model weights
81
+ * @param _trainingInformant The training informant
82
82
*/
83
83
async onTrainEndCommunication (
84
- weights : WeightsContainer ,
85
- trainingInformant : TrainingInformant
84
+ _weights : WeightsContainer ,
85
+ _trainingInformant : TrainingInformant
86
86
) : Promise < void > { }
87
87
88
88
/**
89
89
* Communication callback called at the beginning of every training round.
90
- * @param weights The most recent local weight updates
91
- * @param round The current training round
92
- * @param trainingInformant The training informant
90
+ * @param _weights The most recent local weight updates
91
+ * @param _round The current training round
92
+ * @param _trainingInformant The training informant
93
93
*/
94
94
async onRoundBeginCommunication (
95
- weights : WeightsContainer ,
96
- round : number ,
97
- trainingInformant : TrainingInformant
95
+ _weights : WeightsContainer ,
96
+ _round : number ,
97
+ _trainingInformant : TrainingInformant
98
98
) : Promise < void > { }
99
99
100
100
/**
101
101
* Communication callback called the end of every training round.
102
- * @param weights The most recent local weight updates
103
- * @param round The current training round
104
- * @param trainingInformant The training informant
102
+ * @param _weights The most recent local weight updates
103
+ * @param _round The current training round
104
+ * @param _trainingInformant The training informant
105
105
*/
106
106
async onRoundEndCommunication (
107
- weights : WeightsContainer ,
108
- round : number ,
109
- trainingInformant : TrainingInformant
107
+ _weights : WeightsContainer ,
108
+ _round : number ,
109
+ _trainingInformant : TrainingInformant
110
110
) : Promise < void > { }
111
111
112
112
get nodes ( ) : Set < NodeID > {
0 commit comments