initialize temp_train_samples in SVM::autoTrain
add smoke test
This commit is contained in:
@@ -1795,10 +1795,10 @@ public:
|
||||
if( !do_train( temp_train_samples, temp_train_responses ))
|
||||
continue;
|
||||
|
||||
for( i = 0; i < train_sample_count; i++ )
|
||||
for( i = 0; i < test_sample_count; i++ )
|
||||
{
|
||||
j = sidx[(i+start+train_sample_count) % sample_count];
|
||||
memcpy(temp_train_samples.ptr(i), samples.ptr(j), sample_size);
|
||||
memcpy(temp_test_samples.ptr(i), samples.ptr(j), sample_size);
|
||||
}
|
||||
|
||||
predict(temp_test_samples, temp_test_responses, 0);
|
||||
|
Reference in New Issue
Block a user