深度学习
Mmagic1
自律带来自由!
展开
-
Tensorflow保存和读入pb文件
tensorflow保存pb文件 import tensorflow as tf import os from tensorflow.python.framework import graph_util #消除警告:Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 ...原创 2020-04-30 00:58:23 · 1257 阅读 · 0 评论 -
深度学习:3_手写一个单层的神经网络
# ******************************* # 手写一个单隐层的神经网络 # Author: Miao # 思路: # 1、定义网络结构(指定输出层、隐藏层、输出层的大小) # 2、初始化模型参数 # 3、循环操作:执行前向传播/计算损失/执行后向传播/权值更新 # ******************************* import numpy as np i...原创 2020-03-18 23:01:50 · 352 阅读 · 0 评论