From 8b03c0cab2598f2acf23e024c27ae2b66413ca82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EB=AF=BC=EC=9A=B0?= Date: Wed, 20 Mar 2024 11:18:00 +0900 Subject: [PATCH] Fix typo in docker/README.md This commit fixes a typo in the README file in docker directory. Previous text: tf.config.list_physical_devices("GPU) Corrected text: tf.config.list_physical_devices("GPU") --- docker/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/README.md b/docker/README.md index d209de1..468bf5c 100644 --- a/docker/README.md +++ b/docker/README.md @@ -138,7 +138,7 @@ $ docker run --name handson-ml3 --gpus all -p 8888:8888 -p 6006:6006 --log-opt m If you are using an older version of Docker, then replace `--gpus all` with `--runtime=nvidia`. -Now point your browser to the displayed URL: Jupyter should appear, and you can open a notebook and run `import tensorflow as tf` and `tf.config.list_physical_devices("GPU)` as above to confirm that TensorFlow does indeed see your GPU device(s). +Now point your browser to the displayed URL: Jupyter should appear, and you can open a notebook and run `import tensorflow as tf` and `tf.config.list_physical_devices("GPU")` as above to confirm that TensorFlow does indeed see your GPU device(s). Lastly, to interrupt the server, press Ctrl-C, then run: