Skip to content

Commit 9875050

Browse files
author
yongyehuang
committed
update readme
1 parent f0fb826 commit 9875050

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ ckpt/*
22
summary/*
33
data/*
44
*.pyc
5+
.ipynb_checkpoints/*
6+

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tensorflow-Tutorial
22
Some interesting TensorFlow tutorials for beginners.
3-
本人在自己学习 TensorFlow 过程中做的一些总结。希望能够帮助初学者解决一些学习过程中的疑惑,快速上手。首先介绍 TensorFlow 的基本使用,然后会相继介绍 CNN 、LSTM、seq2seq 等技术。涉及图像,文本,序列预测等主题。
3+
本人在自己学习 TensorFlow 过程中做的一些总结。希望能够帮助初学者解决一些学习过程中的疑惑,快速上手。首先介绍 TensorFlow 的基本使用,然后会相继介绍 CNN 、LSTM、seq2seq 等技术。涉及图像,文本,序列预测等主题。前面的一些例子主要参考了官网教程;后面有些例子主要是我在项目中的总结,有些可能不适合入门新手,想进一步提升或者刚好有任务需要的可以参考。
44

55
下面是相关的博客,由于时间关系,博客中的tensorflow版本可能较老没有进行更新,如果有问题,欢迎开issue或者邮件与我联系。
66

@@ -15,6 +15,7 @@ Some interesting TensorFlow tutorials for beginners.
1515
- [TensorFlow入门(八)tensorboard 的一个简单示例]
1616
- [TensorFlow入门(九)使用 tf.train.Saver()保存模型]
1717
- [TensorFlow入门(十)【迁移学习】往一个已经保存好的模型添加新的变量并进行微调]
18+
- [Tensorflow入门(十一) 【模型联合】如何利用tf.train.saver()把多个预训练好的模型联合起来fine-tune](https://github.com/yongyehuang/zhihu-text-classification/blob/master/models/Using%20saver%20to%20combine%20models.ipynb)
1819

1920
## Dependencies
2021
- python 2.7

ckpt/checkpoint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
model_checkpoint_path: "test-model.ckpt-2"
2-
all_model_checkpoint_paths: "test-model.ckpt-2"
1+
model_checkpoint_path: "T9-2-vs2.ckpt-1"
2+
all_model_checkpoint_paths: "T9-2-vs2.ckpt-1"

python/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# -*- coding:utf-8 -*-
2+

0 commit comments

Comments
 (0)