report_results
Report all results to dbnl
Parameters
run
The DBNL Run that the results will be reported to.
column_data
A pandas DataFrame with all the column results to report to DBNL. The columns of the DataFrame must match the columns
described in the RunConfig associated with the Run.
scalar_data
A dict or pandas Dataframe with all the scalar results to report to DBNL. The key of the dict must match the scalars
described in the RunConfig associated with the Run.
report_results
is the equivalent of calling both report_column_results
and report_scalar_results
.
Limitations
All data should be reported to dbnl at once. Calling dbnl.report_results
more than once will overwrite the previously uploaded data.
Once a Run is closed. You can no longer call report_results
to send data to DBNL.
Examples
Was this helpful?