🔹 Basic Questions
1. What is your project about?
Predicts whether a patient is High Risk or Low Risk using basic health data.
2. What type of problem is this?
It is a binary classification problem.
3. What algorithm did you use?
Support Vector Classifier (SVC) with RBF kernel.
4. Why did you choose SVC?
Because it works well with non-linear data and gives good accuracy.
🔹 Dataset & Features
5. What features are used?
Heart rate, respiratory rate, temperature, oxygen level, age, gender.
6. What is the target variable?
Risk category (High Risk / Low Risk).
7. How many records in dataset?
Around 7000 records.
🔹 Preprocessing
8. How did you handle missing values?
Used dropna() to remove them.
9. Why encoding is needed?
ML models need numerical data.
10. What encoding techniques used?
LabelEncoder (target), OneHotEncoder (gender).
11. Why scaling is important?
To make all features equal in importance.
🔹 Feature Engineering
12. What is feature engineering?
Creating new features from existing data.
13. Give example of new feature.
Oxygen_Deficit = 100 - Oxygen.
14. Why feature engineering is important?
Improves model performance.
🔹 Model & Training
15. What is RBF kernel?
Helps model learn complex patterns.
16. What is class imbalance?
One class has more data than the other.
17. How did you handle imbalance?
Used class_weight = balanced.
🔹 Evaluation
18. What metrics used?
Accuracy, Precision, Recall, F1 Score.
19. Why F1 score important?
Balances precision and recall.
20. What is confusion matrix?
Shows correct and incorrect predictions.
21. What is false negative?
High-risk patient predicted as low-risk.
🔹 System & Output
22. What is your system capable of?
Single & batch prediction with probability.
23. What tool used for UI?
Streamlit.
24. What does your app show?
Prediction, confidence score, and graphs.
🔹 Advanced / Important
25. What is hyperparameter tuning?
Finding best model parameters.
26. Which method used for tuning?
RandomizedSearchCV.
27. What is feature importance?
Shows which feature affects prediction most.
28. Most important feature?
Heart rate.
🔹 Limitations
29. What are limitations?
Limited data, no clinical validation.
30. Future improvements?
Use XGBoost, SMOTE, better explainability.