Skip to content

Commit d694c3e

Browse files
committed
Adding missing dependencies in vignette
1 parent 9539e0e commit d694c3e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vignettes/getting-started.Rmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@ The `keras` package allows for building deep learning models layer-by-layer, whi
1515

1616
This new function behaves just like any other parsnip model (e.g., `rand_forest()` or `linear_reg()`), making it easy to integrate into workflows and tune with tune.
1717

18-
We’ll start by loading kerasnip:
18+
We’ll start by loading `kerasnip`, `tidymodels` and `keras3`:
1919

2020
```{r load-kerasnip}
2121
library(kerasnip)
22+
library(tidymodels)
23+
library(keras3)
2224
```
2325

2426
## Example 1: Building and Fitting a Basic MLP

0 commit comments

Comments
 (0)