OutputConvergence
Bases: ModelOutputItem
Source code in wt_ml/output/output_convergence.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 70 71 72 73 74 75 76 77 78 79 80 81 |
|
visualize(return_figure_flag=False)
Visualize convergence plots of layers
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 line charts of convergence plots of layers.
Source code in wt_ml/output/output_convergence.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|