VTU ML Module1 Chapter1 Answers
VTU ML Module1 Chapter1 Answers
2. List out the factors that drive the popularity of machine learning.
- Availability of big data
- Advancements in computational power
- Open-source libraries and frameworks (e.g., TensorFlow, Scikit-learn)
- Success in real-world applications (e.g., Siri, Netflix recommendations)
- Need for data-driven decision making
- Advances in algorithms and models
3. What is a model?
A model in machine learning is a mathematical representation of a real-world process,
learned from data.
It maps inputs to outputs and is used to make predictions or decisions.
Example:
In a spam email classifier, the model learns from labeled emails and predicts whether a new
email is spam or not.
10. Point out the differences between supervised and unsupervised learning.
| Aspect | Supervised Learning | Unsupervised Learning |
|-----------|---------------------|------------------------|
| Data Type | Labeled | Unlabeled |
| Goal | Predict output | Discover structure |
| Example | Classification, Regression | Clustering, Association |
11. What are the differences between classification and regression?
| Aspect | Classification | Regression |
|--------------|----------------|------------|
| Output Type | Categorical | Continuous |
| Example | Spam detection | House price prediction |
| Algorithms | SVM, Decision Tree | Linear Regression, SVR |
13. List out the differences between reinforced learning and supervised
learning.
| Aspect | Reinforcement Learning | Supervised Learning |
|-----------------|------------------------|---------------------|
| Feedback Type | Delayed (reward/penalty) | Immediate (correct label) |
| Goal | Learn optimal action sequence | Learn mapping from inputs to outputs |
| Environment | Dynamic (agent interacts) | Static dataset |
| Example | Game playing bots | Email classification |
Clustering Algorithms:
- K-Means
- Hierarchical Clustering
- DBSCAN
- Gaussian Mixture Models