AUTO_VI$summary | R Documentation |
The AUTO_VI$..str..()
method provides a string
representation of the object. If a check is performed, the string
will contain some simple statistics of the check result. This method
does this same thing as AUTO_VI$..str..()
, but it returns an
AUTO_VI_SUMMARY
object which stores those statistics, such as sample
quantiles of the distribution of null visual signal strength, in the object.
AUTO_VI$summary()
An AUTO_VI_SUMMARY
object.
keras_model <- try(get_keras_model("vss_phn_32"))
if (!inherits(keras_model, "try-error")) {
myvi <- auto_vi(lm(dist ~ speed, data = cars), keras_model)
myvi$check()
myvi_summary <- myvi$summary()
print(myvi_summary)
names(myvi_summary)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.