scikit LearnでSVMの画像に属するクラスを予測すると
...
print "Predicting on 1 sample"
print "Input features:"
fv = [0.16666666666628771, 5.169878828456423e-26, 2.584939414228212e-22, 1.0, 1.0000000000027285]
print fv
print "Predicted class index:"
print clf.predict([fv])
出力:
Predicted class index:
[5]
クラス内で最も類似した5つの画像を取得するにはどうすればよいですか?