Newer
Older
from itertools import takewhile
import numpy as np
import pandas as pd
def invalidate_records(frame, check_name):
for index,percent in frame.ix[frame[check_name] > 0, check_name].iteritems():
invalidate_record(frame, index, check_name, percent)
return frame
def invalidate_record(frame, loc, check_name, value, annotation=''):
frame.loc[loc, check_name] = value
if 'qc_notes' not in frame:
frame['qc_notes'] = None
if type(frame.loc[loc, 'qc_notes']) == str and len(frame.loc[loc, 'qc_notes']) > 0:
frame.loc[loc, 'qc_notes'] = ','.join([frame.loc[loc,'qc_notes'], annotation])
corrupt_view = frame.loc[loc,'sceneMirrorPosition']
if frame.sceneMirrorPosition.loc[neighbor] == corrupt_view:
elif frame.sceneMirrorPosition.loc[neighbor] in [ord('H'), ord('A')]:
# Skip opposite calibration views
return
else:
# Invalidate non-calibration views
frame.loc[neighbor,check_name] = value
previous_notes = frame.loc[neighbor,'qc_notes']
if type(previous_notes) == str and len(previous_notes) > 0:
frame.loc[neighbor,'qc_notes'] = ','.join([previous_notes, 'invalid calibration:{:d}'.format(loc)])
frame.loc[neighbor,'qc_notes'] = 'invalid calibration:{:d}'.format(loc)
# Corrupt calibration view, must also invalidate neighboring scenes
# _idx is the iloc
_idx = frame.index.tolist().index(loc) + 1
# _idx is the iloc
_idx = frame.index.tolist().index(loc) - 1
class BaseCheckList:
def __init__(self, *args, **kwargs):
self.check_results = {}
self.parameters = {}
def set_params(self, parameters):
self.parameters = parameters
def update_qc_percent(self, frame):
for check_func in self.checks:
name = check_func.__name__
if name in frame.columns:
results = frame[name].fillna(0)
# Compute P(A U B)
previous_percent = frame['qc_percent']
frame['qc_percent'] = previous_percent + results - previous_percent*results
return frame
def compute(self, frame):
# Filter bad records from previous level
filtered_frame = frame.ix[frame.qc_percent < 1].copy()
filtered_frame = check(filtered_frame, self.parameters)
assert filtered_frame.shape[0] == original_shape[0]
return self.update_qc_percent(frame.combine_first(filtered_frame))