blob: 3ffb66a09d040f1bc581a75b01d99703688d39a3 [file] [log] [blame]
// Copyright 2021 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.
// 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;
}