Skip to content

Commit

Permalink
update exgboost version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Alejos committed Jun 8, 2024
1 parent 9efca46 commit 8c4ef28
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions notebooks/cv_gradient_boosting_tree.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ require Explorer.DataFrame, as: DF
require Explorer.Series, as: S
```

And let's configure `EXLA` as our default backend (where our tensors are stored) and compiler (which compiles Scholar code) across the notebook and all branched sections:

```elixir
Nx.global_default_backend(EXLA.Backend)
Nx.Defn.global_default_options(compiler: EXLA)
```

We are going to work with [Medical Cost Personal Datasets](https://www.kaggle.com/datasets/mirichoi0218/insurance) to predict medical charges that were applied to each person from the dataset. Let's download it:

```elixir
Expand Down

0 comments on commit 8c4ef28

Please sign in to comment.