EClassificationDataset::SplitDataset

Splits the dataset in two parts to be used for training and validation respectively.

Namespace: Euresys::Open_eVision::EasyDeepLearning

[C++]

void SplitDataset(
   EClassificationDataset& d1,
   EClassificationDataset& d2,
   float proportion,
   bool random
)

Parameters

d1

First part of the dataset

d2

Second part of the dataset

proportion

Proportion of image of each class to put into the first part. The remaining images are put in d2

random

Randomly sample the images.

EClassificationDataset.SplitDataset

Splits the dataset in two parts to be used for training and validation respectively.

Namespace: Euresys.Open_eVision.EasyDeepLearning

[C#]

void SplitDataset(
   Euresys.Open_eVision.EasyDeepLearning.EClassificationDataset d1,
   Euresys.Open_eVision.EasyDeepLearning.EClassificationDataset d2,
   float proportion,
   bool random
)

Parameters

d1

First part of the dataset

d2

Second part of the dataset

proportion

Proportion of image of each class to put into the first part. The remaining images are put in d2

random

Randomly sample the images.