Fix stratified folding mistake in remainders

This commit is contained in:
2023-07-27 16:51:27 +02:00
parent 3d8fea7a37
commit 7f7ddad36a
8 changed files with 18 additions and 8 deletions

View File

@@ -89,6 +89,10 @@ namespace platform {
}
return datasets[name]->getTensors();
}
bool Datasets::isDataset(string name)
{
return datasets.find(name) != datasets.end();
}
Dataset::Dataset(Dataset& dataset)
{
path = dataset.path;