AUTO_VI$summary {autovi} | R Documentation |
Summary of the object
Description
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.
Usage
AUTO_VI$summary()
Value
An AUTO_VI_SUMMARY
object.
Examples
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)
}
[Package autovi version 0.4.1 Index]