summaryrefslogtreecommitdiff
path: root/chromium/media/learning/impl/fisher_iris_dataset.h
blob: 6117ddf54b6a98ffad80512853c9bfa181c7530f (plain)
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
37
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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 "base/memory/ref_counted.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_