Skip to content

Commit 893dd5e

Browse files
authored
Update README.md
1 parent 86e12b9 commit 893dd5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Elixir bindings to the [XGBoost C API](https://xgboost.readthedocs.io/en/latest/c.html) using [Native Implemented Functions (NIFs)](https://www.erlang.org/doc/man/erl_nif.html).
66

7-
EXGBoost is currently based off of [this](https://github.com/dmlc/xgboost/tree/08ce495b5de973033160e7c7b650abf59346a984) commit for the upcoming `2.0.0` release of XGBoost.
7+
EXGBoost is currently based off of [this](https://github.com/dmlc/xgboost/tree/41ce8f28b269dbb7efc70e3a120af3c0bb85efe3) commit for the upcoming `2.0.0` release of XGBoost.
88

99
`EXGBoost` provides an implementation of XGBoost that works with
1010
[Nx](https://hexdocs.pm/nx/Nx.html) tensors.
@@ -62,7 +62,7 @@ primary entry point for training a model. It accepts a Nx tensor for the feature
6262
accepts a keyword list of options that can be used to configure the training process. See the
6363
[XGBoost documentation](https://xgboost.readthedocs.io/en/latest/parameter.html) for the full list of options.
6464

65-
`Exgbost.train/2` uses the `EXGBoost.Training.train/1` function to perform the actual training. `EXGBoost.Training.train/1`
65+
`EXGBoost.train/2` uses the `EXGBoost.Training.train/1` function to perform the actual training. `EXGBoost.Training.train/1`
6666
and can be used directly if you wish to work directly with the `DMatrix` and `Booster` structs.
6767

6868
One of the main features of `EXGBoost.train/2` is the ability for the end user to provide a custom training function
@@ -95,7 +95,7 @@ to `EXGBoost.train/2`. See the [XGBoost documentation](https://xgboost.readthedo
9595
list of parameters.
9696

9797
```elixir
98-
Exgboot.train(X,
98+
EXGBoost.train(X,
9999
y,
100100
obj: &EXGBoost.Training.train/1,
101101
evals: [{X_test, y_test, "test"}],

0 commit comments

Comments
 (0)