All Projects → DjangoPeng → Tensorflow 101

DjangoPeng / Tensorflow 101

Licence: other
《TensorFlow 快速入门与实战》和《TensorFlow 2 项目进阶实战》课程代码与课件

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Tensorflow 101

Megvii Pku Dl Course
Homepage for the joint course of Megvii Inc. and Peking University on Deep Learning.
Stars: ✭ 393 (-2.24%)
Mutual labels:  jupyter-notebook
Jupyter Renderers
Renderers and renderer extensions for JupyterLab
Stars: ✭ 395 (-1.74%)
Mutual labels:  jupyter-notebook
Face specific augm
Face Renderer to perform Domain (Face) Specific Data Augmentation
Stars: ✭ 398 (-1%)
Mutual labels:  jupyter-notebook
User Machine Learning Tutorial
useR! 2016 Tutorial: Machine Learning Algorithmic Deep Dive http://user2016.org/tutorials/10.html
Stars: ✭ 393 (-2.24%)
Mutual labels:  jupyter-notebook
Deep Learning Har
Convolutional and LSTM networks to classify human activity
Stars: ✭ 395 (-1.74%)
Mutual labels:  jupyter-notebook
Icnet Tensorflow
TensorFlow-based implementation of "ICNet for Real-Time Semantic Segmentation on High-Resolution Images".
Stars: ✭ 396 (-1.49%)
Mutual labels:  jupyter-notebook
Deepnetsforeo
Deep networks for Earth Observation
Stars: ✭ 393 (-2.24%)
Mutual labels:  jupyter-notebook
Triplet recommendations keras
An example of doing MovieLens recommendations using triplet loss in Keras
Stars: ✭ 400 (-0.5%)
Mutual labels:  jupyter-notebook
Pytorch classification
利用pytorch实现图像分类的一个完整的代码,训练,预测,TTA,模型融合,模型部署,cnn提取特征,svm或者随机森林等进行分类,模型蒸馏,一个完整的代码
Stars: ✭ 395 (-1.74%)
Mutual labels:  jupyter-notebook
Automl
Google Brain AutoML
Stars: ✭ 4,795 (+1092.79%)
Mutual labels:  jupyter-notebook
Motion Cosegmentation
Reference code for "Motion-supervised Co-Part Segmentation" paper
Stars: ✭ 393 (-2.24%)
Mutual labels:  jupyter-notebook
Ephemera Miscellany
Ephemera and other documentation associated with the 1337list project.
Stars: ✭ 395 (-1.74%)
Mutual labels:  jupyter-notebook
Bloom Contrib
Making carbon footprint data available to everyone.
Stars: ✭ 398 (-1%)
Mutual labels:  jupyter-notebook
Baiduyun deeplearning competition
百度云魅族深度学习应用大赛
Stars: ✭ 393 (-2.24%)
Mutual labels:  jupyter-notebook
Vcdb
VERIS Community Database
Stars: ✭ 398 (-1%)
Mutual labels:  jupyter-notebook
Examples
Example deep learning projects that use wandb's features.
Stars: ✭ 391 (-2.74%)
Mutual labels:  jupyter-notebook
Notes On Dirichlet Processes
🎲 Notes explaining Dirichlet Processes, HDPs, and Latent Dirichlet Allocation
Stars: ✭ 396 (-1.49%)
Mutual labels:  jupyter-notebook
Anlp19
Course repo for Applied Natural Language Processing (Spring 2019)
Stars: ✭ 402 (+0%)
Mutual labels:  jupyter-notebook
Trainyourownyolo
Train a state-of-the-art yolov3 object detector from scratch!
Stars: ✭ 399 (-0.75%)
Mutual labels:  jupyter-notebook
Pandas
Data & Code for my video on the Pandas library of Python
Stars: ✭ 397 (-1.24%)
Mutual labels:  jupyter-notebook

Table of Contents generated with DocToc

TensorFlow 快速入门与实战

交流讨论群

课程列表

第一部分:TensorFlow初印象

课件

第二部分:TensorFlow初接触

课件 | 代码

第三部分:TensorFlow基础概念解析

课件 | 代码

第四部分:实战TensorFlow房价预测

课件 | 代码

第五部分:实战TensorFlow手写体数字识别

课件 | 代码

第六部分:实战TensorFlow验证码识别

课件 | 代码

第七部分:实战TensorFlow人脸识别

课件 | 代码

第八部分:TensorFlow社区参与指南

课件

问题答疑

我将极客时间上多次提到的问题整理在此,希望可以解答有同样问题的朋友。

1. Windows 上安装 TensorFlow 流程

对于有英文基础的朋友,建议直接阅读官网安装教程。本答案翻译自 TensorFlow 官网。

系统环境要求:

  • Windows 7(64位) 以上版本
  • Python 3.4, 3.5 或 3.6

Windows 上安装 TensorFlow 步骤:

  1. 安装 Python 开发环境

检查系统是否已安装 Python 开发环境。如果已安装,则跳过该步骤。

python3 --version
pip3 --version
virtualenv --version
  1. 独立安装 Microsoft Visual C++ 2015 Redistributable Update 3 或安装完整的 Visual Studio 2015:
  • 进入 Visual Studio 下载页
  • 选择 Redistributables and Build Tools
  • 下载和安装 Microsoft Visual C++ 2015 Redistributable Update 3
  1. 安装 Windows 上 64位的 Python 3 发布版
  1. 安装 pipvirtualenv
pip3 install -U pip virtualenv
  1. 创建 Python 虚拟环境
virtualenv --system-site-packages -p python3 ./venv
.\venv\Scripts\activate
pip install --upgrade pip
pip list  # 展示 venv 中已安装的软件包
deactivate  # 使用完 TensorFlow 后,方可推出 venv 虚拟环境
  1. 安装 TensorFlow pip 包
pip install --upgrade tensorflow
python -c "import tensorflow as tf; tf.enable_eager_execution(); print(tf.reduce_sum(tf.random_normal([1000, 1000])))"

2. 学这个课程需要什么样的基础?

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].