Tensorflow流程

Posted kresnikshi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tensorflow流程相关的知识,希望对你有一定的参考价值。

1. 导入/生成样本数据集

2. 转换和归一化数据

data = tf.nn.batch_norm_with_global_normalization(...)

3. 划分样本数据集为训练样本集、测试样本集和验证样本集

4. 设置机器学习参数(超参数)

learning_rate = 0.01
batch_size = 100
iterations = 1000

5. 初始化变量和占位符

a_var = tf.constant(42)
x_input = tf.placeholder(tf.float32, [None, input_size])
y_input = tf.placeholder(tf.float32, [None, num_classes])

6. 定义模型结构

# 线性模型
y_pred = tf.add(tf.mul(x_input, weight_matrix), b_matrix)

7. 声明损失函数

loss = tf.reduce_mean(tf.square(y_actual - y_pred))

8. 初始化模型和训练模型

with tf.Session(graph=graph) as session:
    ...
    session.run(...)
    ...

9. 评估机器学习模型

10. 调优超参数

11. 发布/预测结果

 

以上是关于Tensorflow流程的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

从源代码构建TensorFlow流程记录

tensorflow笔记:流程,概念和简单代码注释

Tensorflow[架构流程]

使用TensorFlow训练模型的基本流程

手写数字识别——基于全连接层和MNIST数据集