File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Depends:
2929 R (>= 4.0)
3030Imports:
3131 generics (>= 0.0.1),
32- reticulate (>= 1.36.0 ),
32+ reticulate (>= 1.40.0.9000 ),
3333 tensorflow (>= 2.16.0),
3434 tfruns (>= 1.5.2),
3535 magrittr,
@@ -54,3 +54,5 @@ Suggests:
5454 jpeg
5555RoxygenNote: 7.3.2
5656VignetteBuilder: knitr
57+ Remotes:
58+ rstudio/reticulate
Original file line number Diff line number Diff line change 11# keras3 (development version)
22
3+ - Keras now uses ` reticulate::py_require() ` to resolve Python dependencies.
4+ Calling ` install_keras() ` is no longer required (but is still supported).
5+
6+ - ` use_backend() ` gains a ` gpu ` argument, to specify if a GPU-capable set of
7+ dependencies should be resolved by ` py_require() ` .
8+
39## Added compatibility with Keras v3.8.0. User-facing changes:
410
511- New symbols:
Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ use_backend <- function(backend, gpu = NA) {
288288
289289
290290get_os <- function () {
291- if (is_windows()) " Windows" else if (is_mac_arm64()) " macOS" else " Linux"
291+ if (is_windows()) " Windows" else if (is_mac_arm64()) " macOS" else " Linux"
292292}
293293
294294is_keras_loaded <- function () {
You can’t perform that action at this time.
0 commit comments