質問編集履歴

1

コマンドの修正

2021/08/04 04:18

投稿

MagMag
MagMag

スコア80

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  ```bash
18
18
 
19
- docker run --gpus all --rm nvidia/cuda nvidia-smi
19
+ docker run -it --gpus all --rm nvidia/cuda /bin/bash
20
20
 
21
21
  ```
22
22
 
@@ -24,8 +24,6 @@
24
24
 
25
25
  ```bash
26
26
 
27
- docker run --gpus all -it --rm tensorflow/tensorflow:latest-gpu \
27
+ docker run -it --gpus all -it --rm tensorflow/tensorflow:latest-gpu /bin/bash
28
-
29
- python -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
30
28
 
31
29
  ```