From 9a122d96ac2e83733a48704fb545c8e200c9b12b Mon Sep 17 00:00:00 2001 From: Attila Vamos Date: Thu, 30 Jan 2025 10:12:14 +0000 Subject: [PATCH] WIP: More hack to find TF error Signed-off-by: Attila Vamos --- .github/workflows/bundleTest-thor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bundleTest-thor.yml b/.github/workflows/bundleTest-thor.yml index 3a9d4464143..b8fbe42f7a1 100644 --- a/.github/workflows/bundleTest-thor.yml +++ b/.github/workflows/bundleTest-thor.yml @@ -138,9 +138,9 @@ jobs: sudo apt install libsvm-dev libsvm-tools sudo pip install tensorflow-cpu numpy keras - echo "Tensorflow version: $(python3 -c 'import tensorflow as tf; print(tf.__version__)')" - echo "Tensorflow version: $(python3 -c 'import tensorflow.compat.v1 as tf; tf.disable_v2_behavior(); print(tf.__version__)')" - echo "TF + NumPy: $(python3 -c 'import tensorflow as tf; tf.add(1, 2).numpy()')" + echo "Tensorflow version : $(python3 -c 'import tensorflow as tf; print(tf.__version__)')" + echo "Tensorflow version v1: $(python3 -c 'import tensorflow.compat.v1 as tf; tf.disable_v2_behavior(); print(tf.__version__)')" + echo "TF + NumPy: $(python3 -c 'import tensorflow as tf; print(\"TF+NumPy:\", tf.add(1, 2).numpy())')" - name: Start HPCC-Platform shell: "bash"