def should_reload_data()

in bindings/python-compute/main.py [0:0]


    def should_reload_data(self, feature_dataset, pred_datasets):
        # if user already specified datasets in command line, and datasets sent from front end is None,
        # then don't reload data. Specifying datasets from command line might be disabled in the future
        if feature_dataset is None or pred_datasets is None:
            return False
        if self.data_sets['feature_dataset'] != feature_dataset or \
            self.data_sets['pred_datasets'] != pred_datasets:
            return True
        return False