本文整理匯總了Python中KNN.meanfree方法的典型用法代碼示例。如果您正苦於以下問題:Python KNN.meanfree方法的具體用法?Python KNN.meanfree怎麽用?Python KNN.meanfree使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類KNN
的用法示例。
在下文中一共展示了KNN.meanfree方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: open
# 需要導入模塊: import KNN [as 別名]
# 或者: from KNN import meanfree [as 別名]
""" See the module for the explanation of each function. """
train = open('IrisTrain2014.dt', 'r')
test = open('IrisTest2014.dt', 'r')
#Calling read and split
train_set = KNN.read_data(train)
test_set = KNN.read_data(test)
transformed_test = KNN.transformtest(train_set, test_set)
print "*" * 45
print "Mean and variance"
print "*" * 45
print " Train set:"
zeromean_train = KNN.meanfree(train_set)
print "-" * 45
print " Normalized rain set:"
getting_mean_for_normalized_train = KNN.meanfree(zeromean_train)
print "-" * 45
print "Scaled test set"
just_for_getting_mean_on_scaled_test_set = KNN.meanfree(transformed_test)
print "-" * 45
#Different K
K = [1,3,5]
Kcrossval = [1,3,5,7,9,11,13,15,17,21,25]
Kbest = [15]
Kbest2 = [1,21]
示例2: open
# 需要導入模塊: import KNN [as 別名]
# 或者: from KNN import meanfree [as 別名]
""" See the module for the explanation of each function. """
train = open("IrisTrain2014.dt", "r")
test = open("IrisTest2014.dt", "r")
# Calling read and split
train_set = KNN.read_data(train)
test_set = KNN.read_data(test)
print "*" * 45
print "Mean and variance"
print "*" * 45
print " Train set:"
zeromean_train = KNN.meanfree(train_set)
print "-" * 45
print "Test set"
zeromean_test = KNN.meanfree(test_set)
print "-" * 45
print "Normalized test set"
just_for_getting_mean_on_test_set = KNN.meanfree(zeromean_test)
# Different K
K = [1, 3, 5]
Kcrossval = [1, 3, 5, 7, 9, 11, 13, 15, 17, 21, 25]
Kbest = [15]
Kbest2 = [1, 21]