in wandb/run-20231218_141601-1mdvzwqf/files/code/jobs/search-term-data-validation-v2/search_term_data_validation_v2/main_flow.py [0:0]
def record_results(self):
'''
Shoves the validation metrics calculated in the prior step into a BigQuery table.
That table has a dashboard in looker, complete with alerts
to notify data scientists if there are any changes that require manual inspection.
'''
print(f"Input Dataframe Shape: {self.validation_df.shape}")
print("Recording validation results...")
record_validation_results(self.validation_df, self.data_validation_reporting_destination)
self.next(self.end)