Skip to content

Commit

Permalink
3dp
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Feb 8, 2024
1 parent dc6d56e commit a6c7be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forecast-inference/forecast_inference/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _run_model_and_save_for_one_pv(
dict(
start_utc=timestamp + dt.timedelta(minutes=start),
end_utc=timestamp + dt.timedelta(minutes=end),
forecast_power_kw=np.round(value, 2),
forecast_power_kw=np.round(value, 3),
horizon_minutes=start,
)
for (start, end), value in zip(model.config.horizons, pred.powers)
Expand Down

0 comments on commit a6c7be4

Please sign in to comment.