Module: ModelFox::LibModelFox

Extended by:
FFI::Library
Defined in:
lib/modelfox/modelfox.rb

Defined Under Namespace

Classes: ModelFoxStringView

Constant Summary collapse

ModelFoxTaskType =
enum(
  :regression,
  :binary_classification,
  :multiclass_classification
)
ModelFoxFeatureContributionEntryType =
enum(
  :identity,
  :normalized,
  :one_hot_encoded,
  :bag_of_words,
  :bag_of_words_cosine_similarity,
  :word_embedding
)
ModelFoxNGramType =
enum(
  :unigram,
  :bigram
)