| // Copyright 2021 The ChromiumOS Authors | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| // Mirror of tensorflow example.proto. | |
| // Protocol messages for describing input data Examples for machine learning | |
| // model training or inference. | |
| syntax = "proto3"; | |
| package tensorflow; | |
| import "feature.proto"; | |
| message Example { | |
| Features features = 1; | |
| } | |
| message SequenceExample { | |
| Features context = 1; | |
| FeatureLists feature_lists = 2; | |
| } |