コード例 #1
0
ファイル: BaseModel.cs プロジェクト: zaojun/Keras.NET
 /// <summary>
 /// Saves the weight of the trained model to a file.
 /// </summary>
 /// <param name="path">The path of the weight to save.</param>
 public void SaveWeight(string path)
 {
     PyInstance.save_weights(path);
 }