FranciscoLozDataScience commited on
Commit
16e719d
·
1 Parent(s): 25d0745

print predicted label to see structure

Browse files
Files changed (1) hide show
  1. model.py +2 -0
model.py CHANGED
@@ -57,4 +57,6 @@ class SmokerModel:
57
  # Now, use the scaled data to make predictions using the loaded model
58
  predicted_label = self.model.predict(X_scaled)
59
 
 
 
60
  return predicted_label
 
57
  # Now, use the scaled data to make predictions using the loaded model
58
  predicted_label = self.model.predict(X_scaled)
59
 
60
+ print(predicted_label)
61
+
62
  return predicted_label