Current section

Files

Jump to
xberg lib xberg classification_label.ex
Raw

lib/xberg/classification_label.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e21c71a5751b345136e5ca51dea30bbd3862f7fdc63aa50e6b36be84c454e0e
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.ClassificationLabel do
@moduledoc "A single label + confidence pair."
@typedoc "A single label + confidence pair."
@type t :: %__MODULE__{
label: String.t() | nil,
confidence: float() | nil
}
defstruct label: nil,
confidence: nil
end