def record_results()

in wandb/latest-run.40280/files/code/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)