// Copyright (c) 2019, Apple Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-3-clause license that can be
// found in LICENSE.txt or at https://opensource.org/licenses/BSD-3-Clause
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
import public "DataStructures.proto";
package CoreML.Specification.CoreMLModels;
/*
* A model which maps a set of strings into a finite-dimensional real vector
* space.
*/
message WordEmbedding {
/*
* Stores the revision number for the model, revision 2 is available on
* iOS, tvOS 13.0+, macOS 10.15+
*/
uint32 revision = 1;
/*
* Stores the language of the model, as specified in BCP-47 format,
* e.g. "en-US". See https://tools.ietf.org/html/bcp47
*/
string language = 10;
/*
* Stores efficient representation of emebedding as encoded by the Natural
* Language Framework
*/
bytes modelParameterData = 100;
}