Classification transcription factor structural domain sentences
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -314,8 +314,8 @@ if __name__ == "__main__": | ... | @@ -314,8 +314,8 @@ if __name__ == "__main__": |
314 | oFile.write("{}\n".format(myClassifier.best_estimator_.coef_)) | 314 | oFile.write("{}\n".format(myClassifier.best_estimator_.coef_)) |
315 | oFile.write('Confidence scores: \n') | 315 | oFile.write('Confidence scores: \n') |
316 | oFile.write("{}\n".format(confidence_scores)) | 316 | oFile.write("{}\n".format(confidence_scores)) |
317 | - oFile.write('Number of support vectors per class: \n{}\n'.format(myClassifier.n_support_)) | 317 | + oFile.write('Number of support vectors per class: \n{}\n'.format(myClassifier.best_estimator_.n_support_)) |
318 | - oFile.write('Support vectors: \n{}\n'.format(myClassifier.support_vectors_)) | 318 | + oFile.write('Support vectors: \n{}\n'.format(myClassifier.best_estimator_.support_vectors_)) |
319 | 319 | ||
320 | print(" Done!") | 320 | print(" Done!") |
321 | 321 | ... | ... |
-
Please register or login to post a comment