Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 542 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 542 Bytes

DCS

Diagnostic Cancer Solution - Machine Learning with the Wisconsin Breast Cancer Database.

On this repository you will find three different model for 99.12% (1 mistake) and 100% accuracy.

Models saved with JOBLIB tools from SKLEARN.

from sklearn.externals import joblib

Python Code to save:

joblib.dump(svm_clf, '../Output/model.pkl')

Python Code to load:

clf = joblib.load('../Output/model.pkl')

Try your own test or just plot the results.

Enjoy!! :-)

#MachineLearning #DeepLearning #DataScience #Python #Code