【问题标题】:how to implement cross-validation in this Tensorflow multiclass SVM code如何在这个 Tensorflow 多类 SVM 代码中实现交叉验证
【发布时间】:2017-11-15 09:24:34
【问题描述】:

在以下链接提供的代码中,我需要在训练循环中添加 10 倍交叉验证,但我是 Tensorflow 的新手,我真的很努力地寻找一种方法来做到这一点,但仍然不知道。

https://github.com/nfmcclure/tensorflow_cookbook/blob/master/04_Support_Vector_Machines/06_Implementing_Multiclass_SVMs/06_multiclass_svm.py

我根据我的数据集调整了提供的代码,它运行良好,但我需要使用相同的重采样技术将我的旧 R 代码性能与 Tensorflow 性能进行比较,以便使用 GPU 评估 Tensorflow 的性能。

另外,我需要知道最终模型的参数,以及对验证数据的预测。任何帮助将不胜感激

谢谢

编辑: 我正在尝试使用 Kfold,但问题在于为多类 SVM 编写代码的方式。 y_vals 的大小与类数 (3) 相同,但实际上并非如此。如果您可以查看上面的代码或复制它,请明白我的意思。由于这个原因,我现在遇到了这个错误:IndexError: index (number of samples by number of splits) is out of bounds for axis 0 with size (number of classes) 这是我用 kFold 修改的代码:

import matplotlib.pyplot as plt
import numpy as np
import tensorflow as tf
from sklearn import datasets
from tensorflow.python.framework import ops
from sklearn.model_selection import KFold
ops.reset_default_graph()

# Create graph
sess = tf.Session()

# Load the data
# iris.data = [(Sepal Length, Sepal Width, Petal Length, Petal Width)]
iris = datasets.load_iris()
x_vals = np.array([[x[0], x[3]] for x in iris.data])
y_vals1 = np.array([1 if y==0 else -1 for y in iris.target])
y_vals2 = np.array([1 if y==1 else -1 for y in iris.target])
y_vals3 = np.array([1 if y==2 else -1 for y in iris.target])
y_vals = np.array([y_vals1, y_vals2, y_vals3])

# Declare batch size
batch_size = 50

# Initialize placeholders
x_data = tf.placeholder(shape=[None, 2], dtype=tf.float32)
y_target = tf.placeholder(shape=[3, None], dtype=tf.float32)
prediction_grid = tf.placeholder(shape=[None, 2], dtype=tf.float32)


# Create variables for svm
b = tf.Variable(tf.random_normal(shape=[3,batch_size]))

# Gaussian (RBF) kernel
gamma = tf.constant(-10.0)
dist = tf.reduce_sum(tf.square(x_data), 1)
dist = tf.reshape(dist, [-1,1])
sq_dists = tf.multiply(2., tf.matmul(x_data, tf.transpose(x_data)))
my_kernel = tf.exp(tf.multiply(gamma, tf.abs(sq_dists)))

# Declare function to do reshape/batch multiplication
def reshape_matmul(mat):
v1 = tf.expand_dims(mat, 1)
v2 = tf.reshape(v1, [3, batch_size, 1])
return(tf.matmul(v2, v1))

# Compute SVM Model
first_term = tf.reduce_sum(b)
b_vec_cross = tf.matmul(tf.transpose(b), b)
y_target_cross = reshape_matmul(y_target)

second_term = tf.reduce_sum(tf.multiply(my_kernel, tf.multiply(b_vec_cross, 
y_target_cross)),[1,2])
loss = tf.reduce_sum(tf.negative(tf.subtract(first_term, second_term)))

# Gaussian (RBF) prediction kernel
rA = tf.reshape(tf.reduce_sum(tf.square(x_data), 1),[-1,1])
rB = tf.reshape(tf.reduce_sum(tf.square(prediction_grid), 1),[-1,1])
pred_sq_dist = tf.add(tf.subtract(rA, tf.multiply(2., tf.matmul(x_data, 
tf.transpose(prediction_grid)))), tf.transpose(rB))
pred_kernel = tf.exp(tf.multiply(gamma, tf.abs(pred_sq_dist)))

prediction_output = tf.matmul(tf.multiply(y_target,b), pred_kernel)
prediction = tf.arg_max(prediction_output-
tf.expand_dims(tf.reduce_mean(prediction_output,1), 1), 0)
accuracy = tf.reduce_mean(tf.cast(tf.equal(prediction, 
tf.argmax(y_target,0)), tf.float32))

# Declare optimizer
 my_opt = tf.train.GradientDescentOptimizer(0.01)
 train_step = my_opt.minimize(loss)

# Initialize variables
init = tf.global_variables_initializer()
sess.run(init)

# Training loop
kf = KFold(n_splits=3) 

loss_vec = []
train_accuracy = []
valid_accuracy = []
x_trains = []
y_trains = []
x_tests = []
y_tests = []
for train_index, test_index in kf.split(x_vals):
 X_train, X_test = x_vals[train_index], x_vals[test_index]
 y_train, y_test = y_vals[train_index], y_vals[test_index]
x_trains.append(X_train)
y_trains.append(y_train)
x_tests.append(X_test)
y_tests.append(y_test)
x_trains = np.asarray(x_trains)
y_trains = np.asarray(y_trains)
x_tests = np.asarray(x_tests)
y_tests = np.asarray(y_tests)
for i in range(100):
 rand_index = np.random.choice(len(x_trains), size=batch_size)
 rand_x = x_trains[rand_index]
 rand_y = y_trains[:,rand_index]
 sess.run(train_step, feed_dict={x_data: rand_x, y_target: rand_y})

 temp_loss = sess.run(loss, feed_dict={x_data: rand_x, y_target: rand_y})
 loss_vec.append(temp_loss)

 train_acc_temp = sess.run(accuracy, feed_dict={x_data: x_trains,
                                               y_target: y_trains,
                                               prediction_grid:x_trains})
 train_accuracy.append(train_acc_temp)

 valid_acc_temp = sess.run(accuracy, feed_dict={x_data: x_tests,
                                              y_target: y_tests,
                                              prediction_grid: x_tests})
 valid_accuracy.append(valid_acc_temp)

 if (i+1)%25==0:
    print('Step #' + str(i+1))
    print('Loss = ' + str(temp_loss))


 # Plot train/test accuracies
 plt.plot(train_accuracy, 'k-', label='Training Accuracy')
 plt.plot(valid_accuracy, 'r--', label='Validation Accuracy')
 plt.title('Train and Validation Set Accuracies')
 plt.xlabel('Generation')
 plt.ylabel('Accuracy')
 plt.legend(loc='lower right')
 plt.show()

 # Plot loss over time
 plt.plot(loss_vec, 'k-')
 plt.title('Loss per Generation')
 plt.xlabel('Generation')
 plt.ylabel('Loss')
 plt.show()

【问题讨论】:

  • 交叉验证是您在 python 中实现的,然后将每个折叠的正确数据提供给您的 TF 模型。
  • 感谢您的指导。我正在尝试使用 Kfold,但问题在于为多类 SVM 编写代码的方式。 y_vals 的大小与类数 (3) 相同,但实际上并非如此。如果您可以查看上面的代码,请明白我的意思。由于这个原因,我现在遇到了这个错误:IndexError: index (number of samples by number of splits) is out of bounds for axis 0 with size (number of classes)。

标签: tensorflow svm cross-validation


【解决方案1】:

在您的代码中,每次创建训练和测试数据集时都会覆盖 X_train 和 y_train。

for train_index, test_index in kf.split(x_vals):
    X_train, X_test = x_vals[train_index], x_vals[test_index]
    y_train, y_test = y_vals[train_index], y_vals[test_index]

我建议您创建数组并附加训练数据,例如:

x_trains = []
y_trains = []
for train_index, test_index in kf.split(x_vals):
    X_train, X_test = x_vals[train_index], x_vals[test_index]
    y_train, y_test = y_vals[train_index], y_vals[test_index]
x_trains.append(X_train)
y_trains.append(y_train)

如果这还不够,请提供 x_vals、y_vals 的实现,因为它们不在您的代码中。

【讨论】:

  • 感谢您的帮助。我会试试你的建议。对于 x_vals 和 y_vals,请查看帖子中提供的链接中的完整原始代码。
  • 我已经编辑了我的帖子。由于我猜 y_vals 的形状,我对 y_vals 有同样的越界错误。你能重现整个代码吗?
  • 好的,这是一个更基本的错误。 y_vals 的长度应该与 x_vals 的长度相同,因为 x_vals[a] 的训练数据应该对应于 y_vals[a]。例如,如果您将 y 定义为“y_vals = y_vals1”,则不会看到越界错误。此外,您需要将 x_trains 和 y_trains 转换为 numpy 数组,例如 x_trains = np.asarray(x_trains) y_trains = np.asarray(y_trains) 通过这两个修改,我可以在我的环境中运行您的代码。如果您需要更多帮助,请告诉我。
  • 我用你建议的修改再次编辑了我的代码。我用 y_vals 得到了同样的越界错误。例如,当我用 y_vals1 替换它时,我得到另一个错误:ValueError:无法为具有形状“(?,2)”的张量“Placeholder:0”提供形状(50,100,2)的值。问题是多类的,所以我需要 y_vals,但由于它的形状,它似乎不起作用。
猜你喜欢
  • 2016-01-16
  • 1970-01-01
  • 2014-04-02
  • 2014-10-02
  • 2016-06-02
  • 2012-09-30
  • 2016-05-24
  • 1970-01-01
  • 2020-08-16
相关资源
最近更新 更多