()
| 6 | from train import fit |
| 7 | |
| 8 | def main(): |
| 9 | resultsdir = "results/train/checkerboard/exp_longitudinal" |
| 10 | |
| 11 | fit_models() |
| 12 | |
| 13 | for neuralnet in ["siren", "fcnet", "linear"]: |
| 14 | savepath = os.path.join(resultsdir, neuralnet + ".pdf") |
| 15 | plot_summary(resultsdir, neuralnet, savepath=savepath) |
| 16 | |
| 17 | plt.show() |
| 18 | |
| 19 | extract_df_to_csv(resultsdir) |
| 20 | |
| 21 | |
| 22 | def fit_models(): |
no test coverage detected