From 9ecb712777c4dbf2955dd6373c8a022064c4e5e9 Mon Sep 17 00:00:00 2001 From: Hyunil Date: Thu, 14 Jul 2022 08:56:58 +0900 Subject: [PATCH] [MachineLearning.Train] Modify remarks of AddLayer method - Add comment about Dispose() Signed-off-by: Hyunil --- src/Tizen.MachineLearning.Train/Tizen.MachineLearning.Train/Model.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.7.4