using System;
using System.Collections.Generic;
using System.Text;
namespace TensorFlowNET.Examples
{
///
/// Interface of Example project
/// All example should implement IExample so the entry program will find it.
///
public interface IExample
{
///
/// running order
///
int Priority { get; }
///
/// True to run example
///
bool Enabled { get; set; }
///
/// Set true to import the computation graph instead of building it.
///
bool ImportGraph { get; set; }
string Name { get; }
///
/// Build dataflow graph, train and predict
///
///
bool Run();
///
/// Prepare dataset
///
void PrepareData();
}
}