/// <summary>
 /// Returns the data set.
 /// </summary>
 /// <param name="name">The name of the data set</param>
 /// <returns>The data set</returns>
 public ArrayList getInputData(string name)
 {
     return((ArrayList)manager.GetObject(name));
 }
示例#2
0
 /// <summary>
 /// Returns the named result set.
 /// </summary>
 /// <param name="name">The name of the result set</param>
 /// <returns>The result set</returns>
 public Neural.ResultSet GetInputData(string name)
 {
     return((ResultSet)manager.GetObject(name));
 }
 /// <summary>
 /// Returns the named data reader from the vault.
 /// </summary>
 /// <param name="name">The name of the data reader</param>
 /// <returns>The data reader</returns>
 public Neural.Data.DataReader GetReader(string name)
 {
     return((Neural.Data.DataReader)myManager.GetObject(name));
 }
 /// <summary>
 /// Returns the example set for the given name.
 /// </summary>
 /// <param name="name">The name of the example set</param>
 /// <returns>The example set</returns>
 public ExampleSet GetData(string name)
 {
     return((ExampleSet)myManager.GetObject(name));
 }
示例#5
0
 /// <summary>
 /// Returns the network from the pocket.
 /// </summary>
 /// <returns>The network in pocket</returns>
 public Network GetNetwork()
 {
     return((Network)manager.GetObject(fileName));
 }
示例#6
0
 /// <summary>
 /// Returns the named network from the vault.
 /// </summary>
 /// <param name="name">The name of the network</param>
 /// <returns>The network</returns>
 public Network getNetwork(string name)
 {
     return((Network)myManager.GetObject(name));
 }