Skip to content

Commit fc15d7b

Browse files
committed
Fixing warning in check
1 parent c71a273 commit fc15d7b

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

DESCRIPTION

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ Imports:
1616
rlang,
1717
keras3,
1818
tibble,
19-
purrr
19+
purrr,
20+
dplyr,
21+
cli
2022
Suggests:
2123
testthat (>= 3.0.0),
2224
modeldata,

NAMESPACE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ export(register_keras_loss)
2222
export(register_keras_metric)
2323
export(register_keras_optimizer)
2424
export(remove_keras_spec)
25+
importFrom(cli,cli_alert_danger)
26+
importFrom(cli,cli_alert_info)
27+
importFrom(cli,cli_alert_success)
28+
importFrom(cli,cli_bullets)
29+
importFrom(cli,cli_code)
30+
importFrom(cli,cli_h1)
31+
importFrom(cli,cli_h2)
32+
importFrom(cli,cli_text)
33+
importFrom(dplyr,bind_rows)
34+
importFrom(dplyr,filter)
35+
importFrom(dplyr,select)
2536
importFrom(keras3,to_categorical)
2637
importFrom(parsnip,update_dot_check)
2738
importFrom(rlang,arg_match)

R/compile_keras_grid.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
#' model.
4343
#' }
4444
#'
45+
#' @importFrom dplyr bind_rows filter select
46+
#' @importFrom cli cli_h1 cli_alert_danger cli_h2 cli_text cli_bullets cli_code cli_alert_info cli_alert_success
4547
#' @export
4648
compile_keras_grid <- function(spec, grid, x, y) {
4749
# Input validation

0 commit comments

Comments
 (0)