From: Hyunil Date: Wed, 13 Jul 2022 23:56:58 +0000 (+0900) Subject: [MachineLearning.Train] Modify remarks of AddLayer method X-Git-Tag: accepted/tizen/unified/20231205.024657~759 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ecb712777c4dbf2955dd6373c8a022064c4e5e9;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [MachineLearning.Train] Modify remarks of AddLayer method - Add comment about Dispose() Signed-off-by: Hyunil --- diff --git a/src/Tizen.MachineLearning.Train/Tizen.MachineLearning.Train/Model.cs b/src/Tizen.MachineLearning.Train/Tizen.MachineLearning.Train/Model.cs index 1d2df85..a437730 100644 --- a/src/Tizen.MachineLearning.Train/Tizen.MachineLearning.Train/Model.cs +++ b/src/Tizen.MachineLearning.Train/Tizen.MachineLearning.Train/Model.cs @@ -243,7 +243,8 @@ namespace Tizen.MachineLearning.Train /// Use this function to add a layer to the model. The layer is added to /// the end of the existing layers in the model. This transfers the /// ownership of the layer to the network. No need to destroy the layer once it - /// is added to a model. + /// is added to a model. layer is available until the model is released. so + /// Dispose() must never be used. /// /// The instance of Layer class /// 10