View Single Post in:
C# Script Utility Overview
Battery
Space Pony
Original Poster
#
5
16th Oct 2021 at 10:48 PM
Posts: 436
Thanks: 974 in 6 Posts
10 Achievements
Anna
Battery.AI.Anna
Anna LoadFromXML(string InstanceName)
Usage:
Creates an Artificial Neural Network Application by parsing an xml containing a trained model
void ExportToXML(string Name)
Usage:
Exports the current model to xml
Parameter:
string Name
the string the assembly you want to check for needs to have
double[] Compute(params double[] input)
Usage:
Computes the output with the current model
Parameter:
double[] input
the normalized inputs as doubles
To ComputeClassification<To>(IList<To> PossibleOutputs, params double[] inputs)
Usage:
Computes the output with the current model and assignes the most probable output
Parameter:
IList<To> PossibleOutputs
the list to choose results from
params double[] inputs
the normalized inputs as doubles