OutputHistogram
Bases: ModelOutputItem
Source code in wt_ml/output/output_histograms.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
|
visualize()
Visualize layer param histograms
Parameters:
Name | Type | Description | Default |
---|---|---|---|
show_plots |
bool
|
Flag to indicate whether to show the plots. Defaults to True. |
required |
file_name |
str
|
Name of the file to save the plots. Defaults to "intermediary_histograms". |
required |
plot_title |
str
|
Title of the plot. Defaults to "Intermediaries - Histograms". |
required |
output_dir |
Path | str
|
Path to save the plots. Defaults to None. |
required |
Returns: dict[str, go.Figure]: Prepared histograms of layer params.
Source code in wt_ml/output/output_histograms.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
|