Skip to content

Commit 4692d78

Browse files
author
yu2nshuai
committed
update
1 parent d775598 commit 4692d78

31 files changed

+2479
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
REFER.MD

01_TensorFlow_basics/01_01_Tensors.ipynb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
"metadata": {},
1717
"outputs": [],
1818
"source": [
19+
"\n",
20+
"### 1.1 张量\n",
21+
"\n",
1922
"### 1.1.1 基础知识\n",
2023
"#张量是具有统一类型(称为 dtype)的多维数组.您可以在 tf.dtypes.DType 中查看所有支持的 dtypes。\n",
2124
"#如果您熟悉 NumPy,就会知道张量与 np.arrays 有一定的相似性。\n",

01_TensorFlow_basics/01_02_Variables.ipynb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
}
4141
],
4242
"source": [
43+
"\n",
44+
"### 1.2 变量\n",
45+
"\n",
4346
"### 1.2.1 创建变量\n",
4447
"#变量通过 tf.Variable 类进行创建和跟踪。tf.Variable 表示张量,对它执行运算可以改变其值。\n",
4548
"#要创建变量,请提供一个初始值。tf.Variable 与初始值的 dtype 相同。\n",

0 commit comments

Comments
 (0)