tensorflow基础模型之RandomForest(随机森林)算法

Posted hyhy904

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow基础模型之RandomForest(随机森林)算法相关的知识,希望对你有一定的参考价值。

随机森林算法原理请参照上篇:随机森林。数据依旧为MNIST数据集。

代码如下:

 

from __future__ import print_function
?
# Ignore all GPUs, tf random forest does not benefit from it.
import os
?
import tensorflow as tf
from tensorflow.contrib.tensor_forest.python import tensor_forest
from tensorflow.python.ops import resources
?
os.environ["CUDA_VISIBLE_DEVICES"] = ""
?
# 导入 MNIST 数据
from tensorflow.examples.tutorials.mnist import input_data
?
mnist = input_data.read_data_sets("./tmp/data/", one_hot=False)
?
# 参数
num_steps = 500 # Total steps to train
batch_size = 1024 # 每批处理样本数
num_classes = 10 # 10个数字=>10个分类
num_features = 784 # 每张图片 28x28 像素 => 784特征
num_trees = 10
max_nodes = 1000
?
# 输入数据
X = tf.placeholder(tf.float32, shape=[None, num_features])
# 用数字表示随机森林中的标签(类id)
Y = tf.placeholder(tf.int32, shape=[None])
?
# 随机森林参数
hparams = tensor_forest.ForestHParams(num_classes=num_classes,
                                    num_features=num_features,
                                    num_trees=num_trees,
                                    max_nodes=max_nodes).fill()
?
# 建立随机森林
forest_graph = tensor_forest.RandomForestGraphs(hparams)
# 获取训练图,计算损失率
train_op = forest_graph.training_graph(X, Y)
loss_op = forest_graph.training_loss(X, Y)
?
# 计算准确率
infer_op, _, _ = forest_graph.inference_graph(X)
correct_prediction = tf.equal(tf.argmax(infer_op, 1), tf.cast(Y, tf.int64))
accuracy_op = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
?
# 初始化变量和森林资源
init_vars = tf.group(tf.global_variables_initializer(),
                    resources.initialize_resources(resources.shared_resources()))
?
# 启动TensorFlow会话
sess = tf.Session()
?
# 初始化
sess.run(init_vars)
?
# 训练
for i in range(1, num_steps + 1):
  # 准备数据
  # 获取一批图片数据
  batch_x, batch_y = mnist.train.next_batch(batch_size)
  _, l = sess.run([train_op, loss_op], feed_dict=X: batch_x, Y: batch_y)
  if i % 50 == 0 or i == 1:
      acc = sess.run(accuracy_op, feed_dict=X: batch_x, Y: batch_y)
      print(‘Step %i, Loss: %f, Acc: %f‘ % (i, l, acc))
?
# 测试模型
test_x, test_y = mnist.test.images, mnist.test.labels
print("Test Accuracy:", sess.run(accuracy_op, feed_dict=X: test_x, Y: test_y))
---------------------

以上是关于tensorflow基础模型之RandomForest(随机森林)算法的主要内容,如果未能解决你的问题,请参考以下文章

tensorflow基础模型之RandomForest(随机森林)算法

TensorFlow基础——常用函数

利用Tensorflow进行自然语言处理(NLP)系列之二高级Word2Vec

二寒假学习计划:Tensorflow之保存加载模型

使用Tensorflow搭建回归预测模型之八:模型与外部接口对接

TensorFlow基础 —— 模型的保存读取与可视化方法总结