TensorFlow preguntas y respuestas de entrevista
Question: How can you handle missing data in a TensorFlow dataset?Answer: Missing data can be handled using the tf.data.Dataset.skip and tf.data.Dataset.filter operations to skip or filter out examples with missing values.Example: dataset = dataset.filter(lambda x, y: tf.math.logical_not(tf.reduce_any(tf.math.is_nan(x)))) |
Guardar para repaso
Guarda este elemento en marcadores, marcalo como dificil o agregalo a un conjunto de repaso.
Inicia sesion para guardar marcadores, preguntas dificiles y conjuntos de repaso.
Es util? Si No
Lo mas util segun los usuarios: