質問編集履歴
1
コマンドの修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -7,10 +7,9 @@
|
|
7
7
|
|
8
8
|
|
9
9
|
```bash
|
10
|
-
docker run --gpus all --rm nvidia/cuda
|
10
|
+
docker run -it --gpus all --rm nvidia/cuda /bin/bash
|
11
11
|
```
|
12
12
|
|
13
13
|
```bash
|
14
|
-
docker run --gpus all -it --rm tensorflow/tensorflow:latest-gpu
|
14
|
+
docker run -it --gpus all -it --rm tensorflow/tensorflow:latest-gpu /bin/bash
|
15
|
-
python -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
|
16
15
|
```
|