1 /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 /// \file
16 /// Abstract interface for verifying a model.
17 #ifndef TENSORFLOW_LITE_CORE_API_VERIFIER_H_
18 #define TENSORFLOW_LITE_CORE_API_VERIFIER_H_
19 
20 #include "tensorflow/lite/core/api/error_reporter.h"
21 
22 namespace tflite {
23 
24 /// Abstract interface that verifies whether a given model is legit.
25 /// It facilitates the use-case to verify and build a model without loading it
26 /// twice.
27 /// (See also "tensorflow/lite/tools/verifier.h".)
28 class TfLiteVerifier {
29  public:
30   /// Returns true if the model is legit.
31   virtual bool Verify(const char* data, int length,
32                       ErrorReporter* reporter) = 0;
~TfLiteVerifier()33   virtual ~TfLiteVerifier() {}
34 };
35 
36 }  // namespace tflite
37 
38 #endif  // TENSORFLOW_LITE_CORE_API_VERIFIER_H_
39