namespace TensorFlowNET.Examples;
public class ExampleConfig
{
///
/// Example name
///
public string Name { get; set; }
///
/// True to run example
///
public bool Enabled { get; set; } = true;
///
/// Set true to import the computation graph instead of building it.
///
public bool IsImportingGraph { get; set; } = false;
}