tensorflow
沫嫣子
这个作者很懒,什么都没留下…
展开
-
anaconda如何更新TensorFlow版本
打开anaconda自带的命令行窗口查看当前版本pythonimport tensorflow as tfprint(tf.version.VERSION)# 退出Pythonexit()卸载当前的版本pip uninstall tensorflow安装tensorflow2pip install tensorflow==2.0.0原创 2020-05-17 22:32:58 · 6803 阅读 · 0 评论 -
TF Girls——总结(20)
GitHub:https://github.com/CreatCodeBuild/TensorFlow-and-DeepLearning-Tutorial/blob/master/Season1/20/load.py### load.py# encoding:utf-8# Python2 兼容from __future__ import print_function, divisionfrom scipy.io import loadmat as loadimport m.原创 2020-05-12 16:04:11 · 200 阅读 · 0 评论 -
TF Girls——模型调优(16-19)
GitHub:https://github.com/CreatCodeBuild/TensorFlow-and-DeepLearning-Tutorial/tree/master/Season1/16-19本文内容:Regularization Dropout follow the Gradient与优化 学习率衰减### load.py# encoding:utf-8# Python2 兼容from __future__ import print_function, .原创 2020-05-12 15:50:02 · 459 阅读 · 0 评论 -
TF Girls——卷积神经网络(12-15)
github:https://github.com/CreatCodeBuild/TensorFlow-and-DeepLearning-Tutorial/tree/master/Season1/12-15视频:https://space.bilibili.com/16696495/channel/detail?cid=1588<<<<<<< HEAD 关于卷积神经网络的理论知识,请一定阅读 cs231n 的课件。 虽然是英文的,但是内容浅显易读,又不.原创 2020-05-12 15:30:50 · 232 阅读 · 0 评论 -
TF Girls——TensorBoard可视化(10-11)
数据下载:http://ufldl.stanford.edu/housenumbers/load.py# encoding:utf-8# Python2 兼容from __future__ import print_function, divisionfrom scipy.io import loadmat as loadimport matplotlib.pyplot as pltimport numpy as npdef reformat(samples, labe原创 2020-05-12 15:12:35 · 156 阅读 · 0 评论 -
TF Girls——神经网络(7-9)
GitHub:https://github.com/CreatCodeBuild/TensorFlow-and-DeepLearning-Tutorial/tree/master/Season1/7-9本文内容:神经网络dp.pyfrom __future__ import print_function, divisionimport tensorflow as tffrom sklearn.metrics import confusion_matriximport nu.原创 2020-05-12 14:58:25 · 170 阅读 · 0 评论 -
TF Girls——数据探索(4-6)
本文内容:4、机器学习5、数据预处理6、数据分布#《TF Girls 修炼指南》第四期# 正式开始机器学习# 首先我们要确定一个目标: 图像识别# 我这里就用Udacity Deep Learning的作业作为辅助了# 1. 下载数据 http://ufldl.stanford.edu/housenumbers/# 2. 探索数据# 3. 处理数据# 4. 构建一个基本网络, 基本的概念+代码 , TensorFlow的世界...原创 2020-05-12 14:40:43 · 150 阅读 · 0 评论 -
TF Girls——tensorflow基本使用
视频:https://space.bilibili.com/16696495/channel/detail?cid=1588github:https://github.com/CreatCodeBuild/TensorFlow-and-DeepLearning-Tutorial/blob/master/Season2/1%20Word2Vec/word2vec_tf.py# encoding: utf-8# 为了 Python3 的兼容,如果你用的 Python2.7from ..原创 2020-05-12 14:36:02 · 258 阅读 · 0 评论 -
TF Girls——Work2vec
视频:https://space.bilibili.com/16696495/channel/detail?cid=1588github:https://github.com/CreatCodeBuild/TensorFlow-and-DeepLearning-Tutorial/blob/master/Season2/1%20Word2Vec/word2vec_tf.py# Copyright 2015 The TensorFlow Authors. All Rights Reserved.#原创 2020-05-11 22:07:34 · 208 阅读 · 0 评论