We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d3b871 commit bbdec48Copy full SHA for bbdec48
openlayer/model_runners/ll_model_runners.py
@@ -104,6 +104,10 @@ def _run_in_memory_and_yield_progress(
104
output_value = input_data_row[output_column_name]
105
if output_value is not None:
106
model_outputs.append(output_value)
107
+ if "output_time_utc" in input_data_row:
108
+ timestamps.append(input_data_row["output_time_utc"])
109
+ else:
110
+ timestamps.append(datetime.datetime.utcnow().isoformat())
111
current_row += 1
112
yield pd.DataFrame(
113
{"output": model_outputs, "output_time_utc": timestamps}
0 commit comments