From 55eda7edaec6b294e27c8094711f98113ca04e64 Mon Sep 17 00:00:00 2001 From: Arindam Sahoo Date: Fri, 30 Dec 2022 13:54:25 +0530 Subject: [PATCH] Input Data Check --- breastcancerdetection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/breastcancerdetection.py b/breastcancerdetection.py index 5d9ba44..a92950c 100644 --- a/breastcancerdetection.py +++ b/breastcancerdetection.py @@ -86,7 +86,7 @@ """Detecting whether the Patient has Breast Cancer in Benign or Malignant Stage""" -input_data = (17.99,10.38,122.8,1001,0.1184,0.2776,0.3001,0.1471,0.2419,0.07871,1.095,0.9053,8.589,153.4,0.006399,0.04904,0.05373,0.01587,0.03003,0.006193,25.38,17.33,184.6,2019,0.1622,0.6656,0.7119,0.2654,0.4601,0.1189) +input_data = (17.99,10.38,122.8,1001,0.1184,0.2776,0.3001,0.1471,0.2419,0.07871,0.095,1.9053,8.589,153.4,0.006399,0.04904,0.05373,0.01587,0.03003,0.006193,25.38,17.33,184.6,2019,0.1622,0.6656,0.7119,0.2654,0.4601,0.1189) #change the input_data to numpy_array to make prediction input_data_as_numpy_array = np.array(input_data) print(input_data)