routine
This commit is contained in:
17
README.md
17
README.md
@@ -29,4 +29,19 @@ pip install jupyter
|
||||
```
|
||||
```shell
|
||||
jupyter notebook
|
||||
```
|
||||
```
|
||||
|
||||
## tensorflow
|
||||
### python
|
||||
```shell
|
||||
# win and linux
|
||||
pip install tensorflow
|
||||
```
|
||||
|
||||
```shell
|
||||
#mac apple silicon
|
||||
pip install tensorflow-macos
|
||||
pip install tensorflow-metal
|
||||
```
|
||||
|
||||
### c++
|
||||
|
||||
File diff suppressed because one or more lines are too long
209
lab/3_Polynomial_Regression.ipynb
Normal file
209
lab/3_Polynomial_Regression.ipynb
Normal file
File diff suppressed because one or more lines are too long
@@ -2,4 +2,6 @@ numpy
|
||||
pandas
|
||||
pillow
|
||||
matplotlib
|
||||
ipywidgets
|
||||
ipywidgets
|
||||
tensorflow
|
||||
jupyter
|
||||
9
tf/test.py
Normal file
9
tf/test.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import tensorflow as tf
|
||||
|
||||
# 创建一个TensorFlow常量
|
||||
hello = tf.constant('Hello, TensorFlow!')
|
||||
|
||||
# 将TensorFlow张量转换为NumPy数组
|
||||
numpy_array = hello.numpy()
|
||||
|
||||
print(numpy_array) # 输出: b'Hello, TensorFlow!'
|
||||
Reference in New Issue
Block a user