Browse Source

Added GLOBAL_STEP GraphKey

tags/v0.9
Juanu Haedo 6 years ago
parent
commit
eb4475c9bc
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/TensorFlowNET.Core/ops.GraphKeys.cs

+ 2
- 0
src/TensorFlowNET.Core/ops.GraphKeys.cs View File

@@ -35,6 +35,8 @@ namespace Tensorflow


public static string TRAIN_OP = "train_op"; public static string TRAIN_OP = "train_op";


public static string GLOBAL_STEP = GLOBAL_STEP = "global_step";

public static string[] _VARIABLE_COLLECTIONS = new string[] { "variables", "trainable_variables" }; public static string[] _VARIABLE_COLLECTIONS = new string[] { "variables", "trainable_variables" };
/// <summary> /// <summary>
/// Key to collect BaseSaverBuilder.SaveableObject instances for checkpointing. /// Key to collect BaseSaverBuilder.SaveableObject instances for checkpointing.


Loading…
Cancel
Save