in C3_W4_LAB_1_TFMA section Model Validation, it is emphasized to set thresholds by
metrics_specs=[
tfma.MetricsSpec(
metrics=[
tfma.MetricConfig(class_name='ExampleCount'),
tfma.MetricConfig(class_name='BinaryAccuracy',
threshold=tfma.MetricThreshold(
value_threshold=tfma.GenericValueThreshold(
# Ensure that metric is always > 0.9
lower_bound={'value': 0.9}),
# Ensure that metric does not drop by more than a small epsilon
# e.g. (candidate - baseline) > -1e-10 or candidate > baseline - 1e-10
change_threshold=tfma.GenericChangeThreshold(
direction=tfma.MetricDirection.HIGHER_IS_BETTER,
absolute={'value': -1e-10}
)
)
)
]
but what is the metric threshold and its lower_bound here?! when I increase or reduce the lower_bound, the result of validation doesn’t change?