ML Exam Answers
ML Exam Answers
7. Define SVM.
- Support Vector Machine finds the optimal hyperplane for classification.
PART - B (5 x 13 = 65 Marks)
11a. List and explain some successful applications of machine learning.
- Healthcare: Disease prediction, medical imaging, drug discovery.
- Finance: Fraud detection, stock market prediction.
- Autonomous Vehicles: Self-driving car navigation.
- Speech Recognition: Virtual assistants like Siri, Alexa.
- Recommendation Systems: Netflix, Amazon personalized suggestions.
12a. Explain machine learning process steps with an example.
- Data Collection, Preprocessing, Model Selection, Training, Evaluation, Deployment.
- Example: Predicting customer churn in a telecom company.
13a. Using KNN algorithm, predict which sport Angela belongs to.
- Calculate Euclidean distance.
- Identify k-nearest neighbors.
- Assign majority sport category.
14a. Explain decision tree and how it works.
- A flowchart-like model where nodes represent features.
- Example: Spam classification based on keywords.
15a. Explain in detail the backpropagation algorithm.
- Forward propagation, Compute loss, Backpropagation, Weight updates using gradient descent.