We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/t-kalinowski/deep-learning-with-R-2nd-edition-code/blame/5d666f93d52446511a8a8e4eb739eba1c0ffd199/ch07.R#L188
Running this with the current version of the code hitting the error with plot(model) as plot requires two dependencies:
plot(model)
keras3::install_keras(envname = "r-reticulate", extra_packages = "pydot")
brew install graphviz
To address 1): It seems that original books's code is still using keras (not keras3).
keras3::install_keras(envname = "r-reticulate", extra_packages = "pydot") addressed the issue for me.
To address 2): It might be worth mentioning here to install graphviz
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/t-kalinowski/deep-learning-with-R-2nd-edition-code/blame/5d666f93d52446511a8a8e4eb739eba1c0ffd199/ch07.R#L188
Running this with the current version of the code hitting the error with
plot(model)
as plot requires two dependencies:keras3::install_keras(envname = "r-reticulate", extra_packages = "pydot")
brew install graphviz
on a macTo address 1):
It seems that original books's code is still using keras (not keras3).
keras3::install_keras(envname = "r-reticulate", extra_packages = "pydot")
addressed the issue for me.To address 2):
It might be worth mentioning here to install graphviz
The text was updated successfully, but these errors were encountered: