ℹ️ Skipped - page is already crawled
| Filter | Status | Condition | Details |
|---|---|---|---|
| HTTP status | PASS | download_http_code = 200 | HTTP 200 |
| Age cutoff | PASS | download_stamp > now() - 6 MONTH | 4.1 months ago |
| History drop | PASS | isNull(history_drop_reason) | No drop reason |
| Spam/ban | PASS | fh_dont_index != 1 AND ml_spam_score = 0 | ml_spam_score=0 |
| Canonical | PASS | meta_canonical IS NULL OR = '' OR = src_unparsed | Not set |
| Property | Value |
|---|---|
| URL | https://cloud.tencent.com/developer/article/1491384 |
| Last Crawled | 2025-12-22 01:22:20 (4 months ago) |
| First Indexed | 2020-01-26 03:09:25 (6 years ago) |
| HTTP Status Code | 200 |
| Content | |
| Meta Title | Tensorflow入门教程,TensorFlow-Examples on Github-腾讯云开发者社区-腾讯云 |
| Meta Description | TensorFlow-Examples是GitHub上3.3万星标的TensorFlow入门教程,涵盖机器学习基础到深度学习模型(如CNN、RNN、GAN等)。包含TF v1/v2版本代码示例,详细讲解数据处理、模型训练、TensorBoard可视化等核心内容,特别适合初学者快速掌握TensorFlow框架的使用技巧和... |
| Meta Canonical | null |
| Boilerpipe Text | 前言
Tensorflow作为深度学习框架的头把交椅,拥有大批量的用户,当然也有很多新手想要加入Tensorflow的大部队。大家都知道github已经成为机器学习各种知识资源分享学习的平台了。今天小编给大家介绍一个十分受欢迎的Tensorflow入门教程:TensorFlow-Examples
https://github.com/aymericdamien/TensorFlow-Examples
基本信息
本教程旨在通过示例轻松地深入研究TensorFlow。为了可读性,它包括了笔记本和源代码的解释,为两个TF v1和v2版本。
它适合初学者,提供关于TensorFlow清晰和简洁的例子。除了传统的“原始”TensorFlow实现之外,您还可以找到最新的TensorFlow API实践(例如层、估计器、数据集等)。
目前该项目已经有33000+的star数目,受欢迎程度可见一斑。
教程目录
第零章 前提
机器学习介绍
介绍MNIST数据集
第一章 介绍
Hello World
基础运算
TensorFlow Eager API
注:Eager Execution是一个命令式、运行定义式的接口,其中,操作一旦从Python中调用便立刻得以执行。这样TensorFlow的入门使用就变得相对简单,并可以使研究和开发过程更为直观
第二章 基础模型
线性回归 (包括eager api)
逻辑回归 (包括eager api)
最近邻算法
K-Means算法
随机森林
Gradient Boosted Decision Tree (GBDT)
Word Embedding
第三章 神经网络
监督学习
简单神经网络 (包括tf.layers 和 eager api)
卷积神经网络 (包括tf.layers)
递归神经网络 (LSTM)
双向递归神经网络 (LSTM)
动态递归神经网络 (LSTM)
非监督学习
Auto-Encode
Variational Auto-Encoder
GAN
DCGAN
第四章 工具
保存和储存一个模型
Tensorboard
第五章 数据管理
建立一个图像数据集
TensorFlow Dataset API
加载和解析数据
建立和加载 TFRecords
图像转换
第六章 Multi GPU
Multi-GPU基本操作
用Multi-GPU训练一个神经网络
内容分析
这个教程有基本的机器学习模型,也有深度学习的基本模型,包括现在流行的GAN,在模型方面比较全面。
在数据集方面,第五章非常重要,虽然我们有标准的MNIST数据集,但是还是需要学会处理数据(包括预处理),把数据整合成可以放在网络训练的格式。
最后第四章,在可视化以及存储模型方面给出了例子。可以供大家学习使用,让TensorFlow的效率提高。
总体而言,这个教程基础扎实和全面,非常适合新手。
文末的那啥帮忙点一下~
本文参与
腾讯云自媒体同步曝光计划
,分享自微信公众号。
原始发表:2019-08-20,如有侵权请联系
cloudcommunity@tencent.com
删除 |
| Markdown | [HuangWeiAI](https://cloud.tencent.com/developer/user/5908637)
## Tensorflow入门教程,TensorFlow-Examples on Github
关注作者
[*腾讯云*](https://cloud.tencent.com/?from=20060&from_column=20060)
[*开发者社区*](https://cloud.tencent.com/developer)
[文档](https://cloud.tencent.com/document/product?from=20702&from_column=20702)[建议反馈](https://cloud.tencent.com/voc/?from=20703&from_column=20703)[控制台](https://console.cloud.tencent.com/?from=20063&from_column=20063)
登录/注册
[首页](https://cloud.tencent.com/developer)
学习
活动
专区
圈层
工具
[MCP广场](https://cloud.tencent.com/developer/mcp)
文章/答案/技术大牛
搜索
搜索
关闭
发布
HuangWeiAI
[社区首页](https://cloud.tencent.com/developer) \>[专栏](https://cloud.tencent.com/developer/column) \>Tensorflow入门教程,TensorFlow-Examples on Github
# Tensorflow入门教程,TensorFlow-Examples on Github

HuangWeiAI
关注
发布于 2019-08-21 15:37:17
发布于 2019-08-21 15:37:17
852
0
举报
文章被收录于专栏:[浊酒清味](https://cloud.tencent.com/developer/column/79156)[浊酒清味]()
前言
Tensorflow作为深度学习框架的头把交椅,拥有大批量的用户,当然也有很多新手想要加入Tensorflow的大部队。大家都知道github已经成为机器学习各种知识资源分享学习的平台了。今天小编给大家介绍一个十分受欢迎的Tensorflow入门教程:TensorFlow-Examples
https://github.com/aymericdamien/TensorFlow-Examples
基本信息
本教程旨在通过示例轻松地深入研究TensorFlow。为了可读性,它包括了笔记本和源代码的解释,为两个TF v1和v2版本。
它适合初学者,提供关于TensorFlow清晰和简洁的例子。除了传统的“原始”TensorFlow实现之外,您还可以找到最新的TensorFlow API实践(例如层、估计器、数据集等)。
目前该项目已经有33000+的star数目,受欢迎程度可见一斑。

教程目录
第零章 前提
- 机器学习介绍
- 介绍MNIST数据集
第一章 介绍
- Hello World
- 基础运算
- TensorFlow Eager API
注:Eager Execution是一个命令式、运行定义式的接口,其中,操作一旦从Python中调用便立刻得以执行。这样TensorFlow的入门使用就变得相对简单,并可以使研究和开发过程更为直观
第二章 基础模型
- 线性回归 (包括eager api)
- 逻辑回归 (包括eager api)
- 最近邻算法
- K-Means算法
- 随机森林
- Gradient Boosted Decision Tree (GBDT)
- Word Embedding
第三章 神经网络
监督学习
- 简单神经网络 (包括tf.layers 和 eager api)
- 卷积神经网络 (包括tf.layers)
- 递归神经网络 (LSTM)
- 双向递归神经网络 (LSTM)
- 动态递归神经网络 (LSTM)
非监督学习
- Auto-Encode
- Variational Auto-Encoder
- GAN
- DCGAN
第四章 工具
- 保存和储存一个模型
- Tensorboard
第五章 数据管理
- 建立一个图像数据集
- TensorFlow Dataset API
- 加载和解析数据
- 建立和加载 TFRecords
- 图像转换
第六章 Multi GPU
- Multi-GPU基本操作
- 用Multi-GPU训练一个神经网络
内容分析
这个教程有基本的机器学习模型,也有深度学习的基本模型,包括现在流行的GAN,在模型方面比较全面。
在数据集方面,第五章非常重要,虽然我们有标准的MNIST数据集,但是还是需要学会处理数据(包括预处理),把数据整合成可以放在网络训练的格式。
最后第四章,在可视化以及存储模型方面给出了例子。可以供大家学习使用,让TensorFlow的效率提高。
总体而言,这个教程基础扎实和全面,非常适合新手。
***文末的那啥帮忙点一下~***
本文参与 [腾讯云自媒体同步曝光计划](https://cloud.tencent.com/developer/support-plan),分享自微信公众号。
原始发表:2019-08-20,如有侵权请联系 [cloudcommunity@tencent.com](mailto:cloudcommunity@tencent.com) 删除
[tensorflow](https://cloud.tencent.com/developer/tag/10150)
[神经网络](https://cloud.tencent.com/developer/tag/10332)
[机器学习](https://cloud.tencent.com/developer/tag/10149)
[api](https://cloud.tencent.com/developer/tag/10292)
[人工智能](https://cloud.tencent.com/developer/tag/10539)
本文分享自 浊酒清味 微信公众号,前往查看
如有侵权,请联系 [cloudcommunity@tencent.com](mailto:cloudcommunity@tencent.com) 删除。
本文参与 [腾讯云自媒体同步曝光计划](https://cloud.tencent.com/developer/support-plan) ,欢迎热爱写作的你一起参与!
[tensorflow](https://cloud.tencent.com/developer/tag/10150)
[神经网络](https://cloud.tencent.com/developer/tag/10332)
[机器学习](https://cloud.tencent.com/developer/tag/10149)
[api](https://cloud.tencent.com/developer/tag/10292)
[人工智能](https://cloud.tencent.com/developer/tag/10539)
评论
登录后参与评论
0 条评论
热度
最新
登录 后参与评论
推荐阅读
领券
- ### 社区
- [技术文章](https://cloud.tencent.com/developer/column)
- [技术问答](https://cloud.tencent.com/developer/ask)
- [技术沙龙](https://cloud.tencent.com/developer/salon)
- [技术视频](https://cloud.tencent.com/developer/video)
- [学习中心](https://cloud.tencent.com/developer/learning)
- [技术百科](https://cloud.tencent.com/developer/techpedia)
- [技术专区](https://cloud.tencent.com/developer/zone/list)
- ### 活动
- [自媒体同步曝光计划](https://cloud.tencent.com/developer/support-plan)
- [邀请作者入驻](https://cloud.tencent.com/developer/support-plan-invitation)
- [自荐上首页](https://cloud.tencent.com/developer/article/1535830)
- [技术竞赛](https://cloud.tencent.com/developer/competition)
- ### 圈层
- [腾讯云最具价值专家](https://cloud.tencent.com/tvp)
- [腾讯云架构师技术同盟](https://cloud.tencent.com/developer/program/tm)
- [腾讯云创作之星](https://cloud.tencent.com/developer/program/tci)
- [腾讯云TDP](https://cloud.tencent.com/developer/program/tdp)
- ### 关于
- [社区规范](https://cloud.tencent.com/developer/article/1006434)
- [免责声明](https://cloud.tencent.com/developer/article/1006435)
- [联系我们](mailto:cloudcommunity@tencent.com)
- [友情链接](https://cloud.tencent.com/developer/friendlink)
- [MCP广场开源版权声明](https://cloud.tencent.com/developer/article/2537547)
### 腾讯云开发者

扫码关注腾讯云开发者
领取腾讯云代金券
### 热门产品
- [域名注册](https://cloud.tencent.com/product/domain?from=20064&from_column=20064)
- [云服务器](https://cloud.tencent.com/product/cvm?from=20064&from_column=20064)
- [区块链服务](https://cloud.tencent.com/product/tbaas?from=20064&from_column=20064)
- [消息队列](https://cloud.tencent.com/product/message-queue-catalog?from=20064&from_column=20064)
- [网络加速](https://cloud.tencent.com/product/ecdn?from=20064&from_column=20064)
- [云数据库](https://cloud.tencent.com/product/tencentdb-catalog?from=20064&from_column=20064)
- [域名解析](https://cloud.tencent.com/product/dns?from=20064&from_column=20064)
- [云存储](https://cloud.tencent.com/product/cos?from=20064&from_column=20064)
- [视频直播](https://cloud.tencent.com/product/css?from=20064&from_column=20064)
### 热门推荐
- [人脸识别](https://cloud.tencent.com/product/facerecognition?from=20064&from_column=20064)
- [腾讯会议](https://cloud.tencent.com/product/tm?from=20064&from_column=20064)
- [企业云](https://cloud.tencent.com/act/pro/enterprise2022?from=20064&from_column=20064)
- [CDN加速](https://cloud.tencent.com/product/cdn?from=20064&from_column=20064)
- [视频通话](https://cloud.tencent.com/product/trtc?from=20064&from_column=20064)
- [图像分析](https://cloud.tencent.com/product/imagerecognition?from=20064&from_column=20064)
- [MySQL 数据库](https://cloud.tencent.com/product/cdb?from=20064&from_column=20064)
- [SSL 证书](https://cloud.tencent.com/product/ssl?from=20064&from_column=20064)
- [语音识别](https://cloud.tencent.com/product/asr?from=20064&from_column=20064)
### 更多推荐
- [数据安全](https://cloud.tencent.com/solution/data_protection?from=20064&from_column=20064)
- [负载均衡](https://cloud.tencent.com/product/clb?from=20064&from_column=20064)
- [短信](https://cloud.tencent.com/product/sms?from=20064&from_column=20064)
- [文字识别](https://cloud.tencent.com/product/ocr?from=20064&from_column=20064)
- [云点播](https://cloud.tencent.com/product/vod?from=20064&from_column=20064)
- [大数据](https://cloud.tencent.com/product/bigdata-class?from=20064&from_column=20064)
- [小程序开发](https://cloud.tencent.com/solution/la?from=20064&from_column=20064)
- [网站监控](https://cloud.tencent.com/product/tcop?from=20064&from_column=20064)
- [数据迁移](https://cloud.tencent.com/product/cdm?from=20064&from_column=20064)
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:[粤B2-20090059](https://beian.miit.gov.cn/#/Integrated/index) [深公网安备号 44030502008569](https://www.beian.gov.cn/portal/index.do)
腾讯云计算(北京)有限责任公司 京ICP证150476号 \| [京ICP备11018762号](https://beian.miit.gov.cn/#/Integrated/index) \| [京公网安备号11010802020287](https://www.beian.gov.cn/portal/index.do)
[问题归档](https://cloud.tencent.com/developer/ask/archives.html)[专栏文章](https://cloud.tencent.com/developer/column/archives.html)[快讯文章归档](https://cloud.tencent.com/developer/news/archives.html)[关键词归档](https://cloud.tencent.com/developer/information/all.html)[开发者手册归档](https://cloud.tencent.com/developer/devdocs/archives.html)[开发者手册 Section 归档](https://cloud.tencent.com/developer/devdocs/sections_p1.html)
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有
登录 后参与评论
0
0
0
推荐 |
| Readable Markdown | null |
| ML Classification | |
| ML Categories | null |
| ML Page Types | null |
| ML Intent Types | null |
| Content Metadata | |
| Language | zh |
| Author | null |
| Publish Time | not set |
| Original Publish Time | 2020-01-26 03:09:25 (6 years ago) |
| Republished | No |
| Word Count (Total) | 288 |
| Word Count (Content) | 95 |
| Links | |
| External Links | 2 |
| Internal Links | 67 |
| Technical SEO | |
| Meta Nofollow | No |
| Meta Noarchive | No |
| JS Rendered | No |
| Redirect Target | null |
| Performance | |
| Download Time (ms) | 674 |
| TTFB (ms) | 524 |
| Download Size (bytes) | 24,253 |
| Shard | 50 (laksa) |
| Root Hash | 6417570461941030050 |
| Unparsed URL | com,tencent!cloud,/developer/article/1491384 s443 |