pub fn sequential_model_summary<F: Float + Debug + ScalarOperand + FromPrimitive + Display>(
model: &Sequential<F>,
inputshape: Option<Vec<usize>>,
title: Option<&str>,
options: Option<ModelVizOptions>,
) -> Result<String>
Expand description
Create an ASCII text representation of a sequential model architecture
§Arguments
model
- The sequential model to visualizeinputshape
- Optional input shape to propagate through the modeltitle
- Optional title for the visualizationoptions
- Visualization options
§Returns
Result<String>
- ASCII representation of the model architecture