Fixed data directories · hblv/tensorflow-tutorial@101df4e · GitHub
Skip to content

Commit 101df4e

Browse files
committed
Fixed data directories
1 parent f3632d4 commit 101df4e

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Deep_Learning_with_TensorFlow/0.12.1/Chapter04/1. 自定义损失函数.ipynb

Lines changed: 1 addition & 1 deletion

Deep_Learning_with_TensorFlow/0.12.1/Chapter09/2. 改造后的mnist_train.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
],
138138
"source": [
139139
"def main(argv=None): \n",
140-
" mnist = input_data.read_data_sets(\"../../Data_sets/MNIST_data\", one_hot=True)\n",
140+
" mnist = input_data.read_data_sets(\"../../Datasets/MNIST_data\", one_hot=True)\n",
141141
" train(mnist)\n",
142142
"\n",
143143
"if __name__ == '__main__':\n",

Deep_Learning_with_TensorFlow/0.12.1/Chapter09/3. 监控指标可视化.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"outputs": [],
8383
"source": [
8484
"def main():\n",
85-
" mnist = input_data.read_data_sets(\"../../Data_sets/MNIST_data\", one_hot=True)\n",
85+
" mnist = input_data.read_data_sets(\"../../Datasets/MNIST_data\", one_hot=True)\n",
8686
"\n",
8787
" with tf.name_scope('input'):\n",
8888
" x = tf.placeholder(tf.float32, [None, 784], name='x-input')\n",

Deep_Learning_with_TensorFlow/0.12.1/Chapter10/4. 异步更新模式样例程序.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# 模型保存的路径和文件名。
1717
MODEL_SAVE_PATH = "logs/log_async"
18-
DATA_PATH = "../../Data_sets/MNIST_data"
18+
DATA_PATH = "../../Datasets/MNIST_data"
1919

2020
FLAGS = tf.app.flags.FLAGS
2121

Deep_Learning_with_TensorFlow/0.12.1/Chapter10/5. 同步更新模式样例程序.py

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)