We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c090f84 commit e48867fCopy full SHA for e48867f
R/help.R
@@ -9,6 +9,10 @@ register_tf_help_handler <- function() {
9
help_url <- paste0("https://www.tensorflow.org/versions/r",
10
version[1], ".", version[2], "/api_docs/python/")
11
12
+ # upstream TF is missing public docs for later version
13
+ # https://github.com/tensorflow/tensorflow/issues/89084
14
+ help_url <- "https://www.tensorflow.org/api_docs/python/"
15
+
16
# some adjustments
17
name <- sub("^tensorflow", "tf", name)
18
name <- sub("python.client.session.", "", name, fixed = TRUE)
0 commit comments