我一直在测试 Tensorflow 数据验证(版本 0.22.0)以在我当前的 ML 管道中使用,我注意到它在数值特征中没有任何异常。例如,
> import pandas as pd
> import pyarrow
> import tensorflow as tf
> import apache_beam as beam
> import apache_beam.io.iobase
> import tensorflow_data_validation as tfdv
> print('TFDV version: {}'.format(tfdv.version.__version__))
>
> train_df = pd.DataFrame({
> 'FeatA' : ['A'] * 1000,
> 'FeatB' : ['B'] * 1000,
> 'FeatC' : [10] * 1000,
> 'FeatD' : [50.2] * 1000 })
>
> eval_df = pd.DataFrame({
> 'FeatA' : ['A1'] * 1000,
> 'FeatB' : ['B1'] * 1000,
> 'FeatC' : [4] * 1000,
> 'FeatD' : [200.43] * 1000 })
>
> train_stats = tfdv.generate_statistics_from_dataframe(train_df)
> schema = tfdv.infer_schema(statistics = train_stats)
> eval_stats = tfdv.generate_statistics_from_dataframe(eval_df)
> anomalies = tfdv.validate_statistics(statistics = eval_stats, schema = schema)
> tfdv.display_anomalies(anomalies)
仅在分类异常的FeatA和FeatB中检测到异常。但是在FeatC和FeatD中,TFDV 没有检测到任何东西。
结果显示在这张图片中
我也尝试过设置偏斜和漂移比较器,但没有任何变化。我想这与自动生成的模式有关,它没有为数字特征映射域。
任何人都知道如何让 TFDV 为数字特征工作?