deep learning notebook, lots of fixes

This commit is contained in:
Pawel Sarkowicz
2026-03-29 16:56:30 -04:00
parent 3ab9b77bb7
commit e7b5db56d2
22 changed files with 1444 additions and 10206 deletions

View File

@@ -363,6 +363,7 @@
" ax.set_title(f'{model_name}: Residual Plot', fontsize=14)\n",
"\n",
" plt.tight_layout()\n",
" plt.savefig(f'../images/05_predictive_modelling/{model_name.lower().replace(\" \", \"_\")}_predictions.png', dpi=150, bbox_inches='tight')\n",
" plt.show()\n",
"\n",
"\n",
@@ -394,6 +395,7 @@
" plt.suptitle('') # Remove automatic title\n",
"\n",
" plt.tight_layout()\n",
" plt.savefig(f'../images/05_predictive_modelling/{model_name.lower().replace(\" \", \"_\")}_errors.png', dpi=150, bbox_inches='tight')\n",
" plt.show()\n"
]
},