def features_and_labels()

in courses/DSL/challenge-mlprep/fraud_detection/trainer/model.py [0:0]


def features_and_labels(row_data):
    label = row_data.pop(LABEL_COLUMN)
    return row_data, label