• Stars
    star
    453
  • Rank 95,937 (Top 2 %)
  • Language
    Jupyter Notebook
  • License
    Other
  • Created over 5 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

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. 学这个课程需要什么样的基础?

More Repositories

1

openai-quickstart

A comprehensive guide to understanding and implementing large language models with hands-on examples using LangChain for GenAI applications.
Jupyter Notebook
1,094
star
2

LLM-quickstart

Quick Start for Large Language Models (Theoretical Learning and Practical Fine-tuning) 大语言模型快速入门(理论学习与微调实战)
Jupyter Notebook
450
star
3

tensorflow-in-depth

《深入理解TensorFlow》项目代码与样章
Python
304
star
4

agent-hub

This repository is a hub for AI Agent projects, including GitHub Sentinel, LanguageMentor, and ChatPPT, designed to enhance enterprise workflows, language learning, and multimodal interaction. Explore a growing family of agents geared towards revolutionizing various industries with cutting-edge AI solutions.
Shell
75
star
5

openai-translator

A versatile AI translation tool powered by LLMs.
Python
72
star
6

GitHubSentinel

GitHub Sentinel 是专为大模型(LLMs)时代打造的智能信息检索和高价值内容挖掘 AI Agent。它面向那些需要高频次、大量信息获取的用户,特别是开源爱好者、个人开发者和投资人等。GitHub Sentinel 不仅能帮助用户自动跟踪和分析 GitHub 开源项目 的最新动态,还能快速扩展到其他信息渠道,如 Hacker News 的热门话题,提供更全面的信息挖掘与分析能力。
Jupyter Notebook
66
star
7

keras-101

Keras 快速入门与实战
Jupyter Notebook
60
star
8

start-ai

从零开始学习人工智能(Start-AI)
39
star
9

aml-101

微软机器学习(Azure Machine Learning)快速入门与实战
Jupyter Notebook
25
star
10

tensorflow2-tutorials

Tutorials of TensorFlow 2.0(Keras, Eager, TFX, etc)
Jupyter Notebook
18
star
11

leetcode-solutions

The Python solutions of leetcode
Jupyter Notebook
12
star
12

DjangoPeng.github.io

Personal Blog
HTML
9
star
13

CRF

Build the crf++ project with Visual Studio in MS-Windows
C++
7
star
14

PredictionModel

Python
6
star
15

word2vec

Build word2vec with Visual Studio in MS-Windows
C
2
star