Here are some possible questions and answers based on the uploaded documents
Here are some possible questions and answers based on the uploaded documents
Questions
Answers
13. Deep learning is a subset of machine learning that uses artificial neural networks
(ANNs) for complex pattern recognition (e.g., CNNs for images, RNNs for time series).
14. Common machine learning applications: Image recognition, speech processing,
recommendation systems, fraud detection, self-driving cars.
15. Machine learning limitations: Requires large datasets, can have bias, high
computational cost, lack of explainability, potential ethical issues.
16. A confusion matrix is a table used to evaluate classification models by comparing
predicted vs. actual outcomes (TP, TN, FP, FN).
17. Precision measures how many of the predicted positives are correct, while recall
measures how many actual positives were correctly identified.
18. ROC curves help evaluate classification models by plotting True Positive Rate (TPR) vs.
False Positive Rate (FPR).
19. AUC (Area Under Curve) measures a classifier’s ability to distinguish between classes;
a higher AUC means better performance.
20. Reinforcement learning trains models using rewards and penalties, unlike supervised
learning (which has labeled data) or unsupervised learning (which finds hidden patterns).
Answer: Classification is a supervised learning approach where unknown items are categorized
into a discrete set of categories or "classes." The target attribute is a categorical variable.
Answer:
Answer:
Precision: Measures how many of the predicted positive cases are actually positive.
Precision=TPTP+FPPrecision = \frac{TP}{TP + FP}
Recall (Sensitivity): Measures how many actual positive cases were correctly predicted.
Recall=TPTP+FNRecall = \frac{TP}{TP + FN}
Answer: The ROC curve (Receiver Operating Characteristic) assesses a model’s ability to
distinguish between classes. The AUC (Area Under Curve) measures the overall performance
of a classifier. AUC values range from 0.5 (random classifier) to 1 (perfect classifier).
Answer:
Logistic Regression
K-Nearest Neighbors (KNN)
Support Vector Machine (SVM)
Decision Trees
Random Forest
Boosting techniques (AdaBoost, Gradient Boosting, XGBoost)
Answer:
Answer:
Answer:
Mean Absolute Error (MAE): Measures the absolute difference between predictions
and actual values.
Mean Squared Error (MSE): Similar to MAE but squares the differences, penalizing
large errors more.
Root Mean Square Error (RMSE): The square root of MSE, providing a more
interpretable measure.
R-Square (R²): Measures how well the model explains the variance in the data.
11. What is regularization in regression?
Answer: K-Fold Cross-Validation divides the dataset into K subsets, training the model on K-1
subsets and testing on the remaining one, improving model generalization.
Would you like me to add more detailed explanations or include additional topics? 😊
Summarized Notes on Classification and Regression
Classification is a supervised learning approach that categorizes data into discrete classes.
It determines the class label for an unlabelled test case.
3. Classification Algorithms
ROC Curve: Plots true positive rate vs. false positive rate.
AUC (Area Under Curve): Measures classifier performance (higher AUC = better
classifier).
4. Regularization in Regression
Key Takeaways: