blob: 56c09cdd5ebd6223be92a6f5c674c4500b55e412 [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ml/model_metadata.h"
namespace ml {
using ::chromeos::machine_learning::mojom::ModelId;
std::map<ModelId, ModelMetadata> GetModelMetadata() {
return {
{
ModelId::TEST_MODEL, {
ModelId::TEST_MODEL,
"mlservice-model-test_add-20180914.tflite",
{{"x", 1}, {"y", 2}},
{{"z", 0}},
},
},
};
}
} // namespace ml