TinyML
来自Jack's Lab
(版本间的差异)
(→Quick Start) |
(→Quick Start) |
||
| 第14行: | 第14行: | ||
import tensorflow as tf | import tensorflow as tf | ||
hello = tf.constant('Hello, TensorFlow!') | hello = tf.constant('Hello, TensorFlow!') | ||
| − | + | print(hello) | |
| − | print | + | |
Hello, TensorFlow! | Hello, TensorFlow! | ||
2022年4月1日 (五) 10:09的版本
1 Overview
2 Quick Start
$ pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow-gpu==2.3.0
$ python3
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
print(hello)
Hello, TensorFlow!