Packages

Elixir bindings for the XGBoost library. `EXGBoost` provides an implementation of XGBoost that works with [Nx](https://hexdocs.pm/nx/Nx.html) tensors.

Current section

Files

Jump to
exgboost lib exgboost training state.ex
Raw

lib/exgboost/training/state.ex

defmodule Exgboost.Training.State do
@moduledoc false
@enforce_keys [:booster]
defstruct [
:booster,
meta_vars: %{},
iteration: 0,
max_iteration: -1,
metrics: %{}
]
end