We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55f31b2 commit 767712eCopy full SHA for 767712e
tests/system/aiplatform/test_experiments.py
@@ -427,6 +427,8 @@ def test_get_experiments_df(self):
427
true_df_dict_1["state"] = aiplatform.gapic.Execution.State.COMPLETE.name
428
true_df_dict_1["run_type"] = aiplatform.metadata.constants.SYSTEM_EXPERIMENT_RUN
429
true_df_dict_1[f"time_series_metric.{_TIME_SERIES_METRIC_KEY}"] = 4.0
430
+ for i in range(_READ_TIME_SERIES_BATCH_SIZE + 1):
431
+ true_df_dict_1[f"time_series_metric.{_TIME_SERIES_METRIC_KEY}-{i}"] = 1.0
432
433
true_df_dict_2 = {f"metric.{key}": value for key, value in _METRICS_2.items()}
434
for key, value in _PARAMS_2.items():
0 commit comments