浏览代码

Update Gems/MachineLearning/Code/Source/Algorithms/Training.cpp

Co-authored-by: Mike Balfour <[email protected]>
Signed-off-by: Karl Berg <[email protected]>
Karl Berg 2 年之前
父节点
当前提交
f77eae93a6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Gems/MachineLearning/Code/Source/Algorithms/Training.cpp

+ 1 - 1
Gems/MachineLearning/Code/Source/Algorithms/Training.cpp

@@ -106,7 +106,7 @@ namespace MachineLearning
                 }
                 ++m_currentEpoch;
 
-                // Generally we want to keep monitoring the models performence on both test and training data
+                // Generally we want to keep monitoring the model's performance on both test and training data
                 // This allows us to detect if we're overfitting the model to the training data
                 float currentTestCost = ComputeCurrentCost(m_testData, m_costFunction);
                 float currentTrainCost = ComputeCurrentCost(m_trainData, m_costFunction);