package caisar

  1. Overview
  2. Docs
type t = {
  1. value : [ `not_set | `Dim_value of int64 | `Dim_param of string ];
  2. denotation : string option;
    (*

    Standard denotation can optionally be used to denote tensor dimensions with standard semantic descriptions to ensure that operations are applied to the correct axis of a tensor. Refer to https://github.com/onnx/onnx/blob/master/docs/DimensionDenotation.md#denotation-definition for pre-defined dimension denotations.

    *)
}
val make : ?value:[ `not_set | `Dim_value of int64 | `Dim_param of string ] -> ?denotation:string -> unit -> t

Helper function to generate a message using default values

Serialize the message to binary format

Deserialize from binary format

Serialize to Json (compatible with Yojson.Basic.t)

Deserialize from Json (compatible with Yojson.Basic.t)

val name : unit -> string

Fully qualified protobuf name of this message

OCaml

Innovation. Community. Security.