In tensorflow:::tensorboard_version(), if tensorflow gives any warnings the call will fail with Error: invalid version specification '<tensorflow warning text>'
Please could you consider adding an ignore.stderr = TRUE to the system call so that warnings from tensorflow are not parsed, only the stdout from tensorboard?
ver <- package_version(system("tensorboard --version_tb", intern = TRUE, ignore.stderr = TRUE))
Hello,
In
tensorflow:::tensorboard_version()
, if tensorflow gives any warnings the call will fail withError: invalid version specification '<tensorflow warning text>'
This comes from this line of the code:
https://github.com/rstudio/tensorflow/blob/b68aa4acf840c130c398590efdb47aea5cd9d1b3/R/tensorboard.R#L145
Please could you consider adding an
ignore.stderr = TRUE
to the system call so that warnings from tensorflow are not parsed, only the stdout from tensorboard?Thank you,
Ralph