chromium/chrome/browser/navigation_predictor/preloading_model_executor.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/navigation_predictor/preloading_model_executor.h"

#include "third_party/tflite_support/src/tensorflow_lite_support/cc/task/core/task_utils.h"

PreloadingModelExecutor::PreloadingModelExecutor() = default;
PreloadingModelExecutor::~PreloadingModelExecutor() = default;

bool PreloadingModelExecutor::Preprocess(
    const std::vector<TfLiteTensor*>& input_tensors,
    const std::vector<float>& input) {}

std::optional<float> PreloadingModelExecutor::Postprocess(
    const std::vector<const TfLiteTensor*>& output_tensors) {}