From 26541a106f783ac8bbbc7c2c14ac5a37d0479de7 Mon Sep 17 00:00:00 2001 From: Pathan Faisal Khan Date: Mon, 13 May 2024 19:49:57 +0100 Subject: [PATCH] Update tensorflow.md added missing parentheses in tensorflow.md tf.config.experimental.enable_op_determinism() --- doc/d9m/tensorflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/d9m/tensorflow.md b/doc/d9m/tensorflow.md index 2b9e816..3addb0e 100644 --- a/doc/d9m/tensorflow.md +++ b/doc/d9m/tensorflow.md @@ -86,7 +86,7 @@ The following Python code is running on a machine in which `pip` package ``` import tensorflow as tf tf.keras.utils.set_random_seed(1) -tf.config.experimental.enable_op_determinism +tf.config.experimental.enable_op_determinism() # Now build your graph and train it ```