blob: 6117ddf54b6a98ffad80512853c9bfa181c7530f [file] [log] [blame]
// 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_