deepviz
deepviz copied to clipboard
An R Package to Visualize Neural Network Architectures
Hi. using c(4, 1) %>% + plot_deepviz() as described in help-section on deepviz-github main page ... throws following error: error in layout_fun(graph, circular = circular, ...) : unused argument (node.position...
Here is a piece of code that creates a siamese network: ``` input_a % layer_dense(2, activation='softmax') model model Model Model: "model_3" ________________________________________________________________________________________________________________________________________________________________________________________________ Layer (type) Output Shape Param # Connected to...
I plan on adding this later. A simple function to take care of saving the plot as an image file. Something like: ```r save.graph
This fixes the bug introduced by the newest version of `keras` on CRAN where model layers are accessed via `model$get_config()` now instead of `model$get_config()$layers`. It also lowers the R version...
I'm getting a strange error when installing on Ubuntu 18.04. First, I installed R 3.5 following [these instructions](https://linuxize.com/post/how-to-install-r-on-ubuntu-18-04/). Then I installed `r-cran-devtools` (`sudo apt install r-cran-devtools`). Then I installed `deepviz`...
I was trying to save an image as so in Rstudio: ```r jpeg(file = '/home/nate/github/neural_net_prototyping/images/simple.model.jpg') plot_model(simple.model) dev.off() ``` But it doesn't seem to be working. Any ideas on how to...
R 3.5.1 RStudio 1.1.381 used devtools::install_github("andrie/deepviz") it decided to reinstall keras/tensorflow which broke it; it now cannot find tensorflow I've had these install issues before w/Keras in RStudio; the issue...
I tried to reproduce the example in the readme. I encountered this error. ``` r library(reprex) library(deepviz) library(tidyverse) library(keras) model % layer_dense(10, input_shape = 4) %>% layer_dense(2, activation = "sigmoid")...
this is quite common for embedding layers e.g. Also added an example.
I get the following warning when using plot_model() on a sequential keras model: Warning: The `x` argument of `as_tibble.matrix()` must have unique column names if `.name_repair` is omitted as of...