Skip to content

Commit

Permalink
change order
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Kreuwel <[email protected]>
  • Loading branch information
FrankKr committed Mar 11, 2024
1 parent 9b669e5 commit 52469da
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions examples/07. Comparison on difficult cases.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
"outputs": [],
"source": [
"# Shared prediction job specs\n",
"pj=dict(id=1, # Should be updated for each experim\n",
"pj=dict(id=1, # Should be updated for each experiment\n",
" model='xgb',\n",
" quantiles=[0.05, 0.1, 0.3, 0.5, 0.7, 0.9, 0.95],\n",
" name=\"backtest\",\n",
Expand Down Expand Up @@ -377,12 +377,20 @@
" # Only keep region that was actually forecasted\n",
" forecast = forecast.iloc[-experiment['test_length']:]\n",
" \n",
" ############\n",
" # Calculate metrics\n",
" \n",
" \n",
"\n",
" #######\n",
" # Store artifacts - metrics and forecasts"
" # Store forecast\n",
"\n",
"\n",
"\n",
"######\n",
"# Concatenate results\n",
"\n",
"\n",
"############\n",
"# Calculate metrics\n",
" \n",
" "
]
},
{
Expand Down

0 comments on commit 52469da

Please sign in to comment.