Topic 1 Question 120
One of your models is trained using data provided by a third-party data broker. The data broker does not reliably notify you of formatting changes in the data. You want to make your model training pipeline more robust to issues like this. What should you do?
Use TensorFlow Data Validation to detect and flag schema anomalies.
Use TensorFlow Transform to create a preprocessing component that will normalize data to the expected distribution, and replace values that don’t match the schema with 0.
Use tf.math to analyze the data, compute summary statistics, and flag statistical anomalies.
Use custom TensorFlow functions at the start of your model training to detect and flag known formatting errors.
ユーザの投票
コメント(7)
- 正解だと思う選択肢: A
TensorFlow Data Validation (TFDV) is a library that can help you detect and flag anomalies in your dataset, such as changes in the schema or data types. https://www.tensorflow.org/tfx/data_validation/get_started
👍 4mil_spyro2022/12/13 - 正解だと思う選択肢: A👍 3hiromi2022/12/21
- 正解だと思う選択肢: A
Tensorflow Data Validation (TFDV) can analyze training and serving data to: compute descriptive statistics, infer a schema, detect data anomalies. A.
👍 1ares812023/01/03
シャッフルモード