From fd7de78017bbc44ac431909c121e93a7c84a597c Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Tue, 19 Nov 2024 11:57:55 -0500 Subject: [PATCH] Fix notebook escaping --- examples/notebooks/beam-ml/automatic_model_refresh.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/notebooks/beam-ml/automatic_model_refresh.ipynb b/examples/notebooks/beam-ml/automatic_model_refresh.ipynb index 7a5d660a99e..a5b78bc8f58 100644 --- a/examples/notebooks/beam-ml/automatic_model_refresh.ipynb +++ b/examples/notebooks/beam-ml/automatic_model_refresh.ipynb @@ -270,7 +270,7 @@ "cell_type": "code", "source": [ "# In a requirements file, define the dependencies required for the pipeline.\n", - "!printf 'tensorflow==2.15.0\ntensorflow_hub==0.16.1\nkeras==2.15.0\nPillow==11.0.0' > ./requirements.txt\n", + "!printf 'tensorflow==2.15.0 tensorflow_hub==0.16.1 keras==2.15.0 Pillow==11.0.0' > ./requirements.txt\n", "# Install the pipeline dependencies on Dataflow.\n", "options.view_as(SetupOptions).requirements_file = './requirements.txt'" ],