You are here: Start » AVL.NET » AVS.CreateDataPartition Method

AVS.CreateDataPartition Method

Divides the input set to test and train subsets, trying to maintain balance in class distribution.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void CreateDataPartition
(
	IList<IList<float>> inFeatureSet,
	IList<int> inClassAssignment,
	float inTestToTrainingRatio,
	int inRandomSeed,
	IList<List<float>> outTrainSet,
	IList<List<float>> outTrainResponse,
	IList<List<float>> outTestSet,
	IList<List<float>> outTestResponse
)

Parameters

See also