1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
media / learning / impl / fisher_iris_dataset.h [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_LEARNING_IMPL_FISHER_IRIS_DATASET_H_
#define MEDIA_LEARNING_IMPL_FISHER_IRIS_DATASET_H_
#include "media/learning/common/labelled_example.h"
namespace media {
namespace learning {
// Classic machine learning dataset.
//
// @misc{Dua:2017 ,
// author = "Dheeru, Dua and Karra Taniskidou, Efi",
// year = "2017",
// title = "{UCI} Machine Learning Repository",
// url = "http://archive.ics.uci.edu/ml",
// institution = "University of California, Irvine, "
// "School of Information and Computer Sciences" }
class FisherIrisDataset {
public:
FisherIrisDataset();
~FisherIrisDataset();
const TrainingData& GetTrainingData() const;
private:
TrainingData training_data_;
};
} // namespace learning
} // namespace media
#endif // MEDIA_LEARNING_IMPL_FISHER_IRIS_DATASET_H_