package tensorflow

  1. Overview
  2. Docs
module Type : sig ... end
module Tensor_attr : sig ... end
module Dim : sig ... end
module Attr_list : sig ... end
type attr =
  1. | String of string
  2. | Int of int
  3. | Float of float
  4. | Bool of bool
  5. | Type of Type.p
  6. | List of Attr_list.t
  7. | Tensor_float of float Tensor_attr.t
  8. | Tensor_int of int Tensor_attr.t
  9. | Tensor_string of string Tensor_attr.t
  10. | Shape of Dim.t list
val create : Wrapper.Graph.t -> op_name:string -> unique_name:string -> inputs:(t * int) list -> input_lists:(t * int) list list -> control_inputs:t list -> attributes:(string * attr) list -> t