#include "media/learning/common/learning_task.h"
#include "base/hash/hash.h"
#include "base/no_destructor.h"
namespace media {
namespace learning {
LearningTask::LearningTask() = default;
LearningTask::LearningTask(
const std::string& name,
Model model,
std::initializer_list<ValueDescription> feature_init_list,
ValueDescription target_description)
: name(name),
model(model),
feature_descriptions(std::move(feature_init_list)),
target_description(target_description) {}
LearningTask::LearningTask(const LearningTask&) = default;
LearningTask::~LearningTask() = default;
LearningTask::Id LearningTask::GetId() const {
return base::PersistentHash(name);
}
const LearningTask& LearningTask::Empty() {
static const base::NoDestructor<LearningTask> empty_task;
return *empty_task;
}
}
}