You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 11, 2023. It is now read-only.
The redesign of the Readout Layer, introduction of the Cluster Chain as the standard computation unit for the Readout Unit and One Takes All group. Enhanced data bundle folderization. Enhanced and revised code comments.
/// Loads given file and executes StateMachine training.
99
-
/// This version of function requires configured NeuralPreprocessor.
98
+
/// Loads the specified file and executes the StateMachine training.
100
99
/// </summary>
101
-
/// <param name="stateMachine">Instance of StateMachine to be trained</param>
102
-
/// <param name="trainingDataFileName">Name of the csv file containing training data</param>
103
-
/// <param name="predictionInputVector">Returned vector to be used for next prediction (relevant only in case of continuous feeding of the input)</param>
100
+
/// <param name="stateMachine">An instance of StateMachine to be trained.</param>
101
+
/// <param name="trainingDataFileName">The name of the csv file containing the training data.</param>
102
+
/// <param name="predictionInputVector">The vector to be used for next prediction (relevant only in case of continuous feeding of the input).</param>
//Convert csv data to VectorBundle useable for StateMachine training
@@ -153,13 +152,12 @@ out predictionInputVector
153
152
}
154
153
155
154
/// <summary>
156
-
/// Loads given file and executes StateMachine verification.
157
-
/// This version of function requires configured NeuralPreprocessor.
155
+
/// Loads the specified file and executes the StateMachine verification.
158
156
/// </summary>
159
-
/// <param name="stateMachine">Instance of StateMachine to be trained</param>
160
-
/// <param name="verificationDataFileName">Name of the csv file containing verification data</param>
161
-
/// <param name="omittedInputVector">Remaining input vector from training phase (relevant only in case of continuous feeding of the input)</param>
162
-
/// <param name="predictionInputVector">Returned vector to be used for next prediction (relevant only in case of continuous feeding of the input)</param>
157
+
/// <param name="stateMachine">An instance of StateMachine to be verified.</param>
158
+
/// <param name="verificationDataFileName">The name of the csv file containing the verification data.</param>
159
+
/// <param name="omittedInputVector">Remaining input vector from training phase (relevant only in case of continuous feeding of the input).</param>
160
+
/// <param name="predictionInputVector">The vector to be used for next prediction (relevant only in case of continuous feeding of the input).</param>
/// Example code shows how to setup StateMachine as a pure ESN for multivariate timeseries classification using StateMachineDesigner.
14
+
/// Example code shows how to use StateMachineDesigner and setup StateMachine as a pure ESN for multivariate timeseries classification.
15
15
/// Example uses LibrasMovement_train.csv and LibrasMovement_verify.csv from ./Data subfolder.
16
16
/// The dataset is from "Anthony Bagnall, Jason Lines, William Vickers and Eamonn Keogh, The UEA & UCR Time Series Classification Repository, www.timeseriesclassification.com"
0 commit comments