Expand description
Visualization module for TrustformeRS debugging tools
This module has been refactored into focused submodules to comply with the 2000-line policy. The original visualization.rs (2843 lines) has been split into:
types- Basic visualization types, enums, and data structures- Additional modules to be created as needed for terminal, video, etc.
Re-exports§
pub use modern_plotting::*;pub use types::*;
Modules§
- ascii_
tools - ASCII-based visualization tools for loss curves, gradient histograms, layer activation statistics, and attention pattern inspection.
- gradient_
animation - Animated gradient flow visualization.
- modern_
plotting - Modern Plotting Engine
- svg_
render - Dependency-free SVG rendering for
crate::visualization::DebugVisualizer. - types
- Basic visualization types, enums, and data structures
Structs§
- Debug
Visualizer - Debug visualizer that renders real plot documents to disk.
- Rendered
Plot - One rendered plot: its source data, the document that was actually written, and where it was written to.
- Terminal
Visualizer - Simple terminal-based visualizer
Enums§
- Plot
Source - A plot’s source data, kept so exports and dashboards work off the real numbers rather than a re-derived guess.