File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -35,3 +35,24 @@ c. Shortlist top K resumes
3535### 20. How will you encode a feature like PinCode which has very high number of discrete values?
3636Target mean encoding
3737### 21. How do you design the architecture of a neural network?
38+
39+ ## Section II
40+
41+ | Algorithm | Problem Identification | Evaluation Metric | Bias Variance | Impact of outliers | Impact of imbalanced data | |
42+ | -------------------------| ------------------------| -------------------------------------------------------------------------------------------------| ---------------| --------------------| ---------------------------| ---|
43+ | Linear Regression | Regression | - Coefficient of determination (R2) - Adjusted R2 - Root Mean Square Error (RMSE) - Mean Absolute Error (MAE) - Root Mean Squared Logarithmic Error (RMSLE)| - High Bias Low Variance | -Impacted by outliers | | |
44+ | Logistic Regression | Classification | - Accuracy - Precision - Recall - F-beta score - Area under ROC curve | - High Bias Low Variance | -Impacted by outliers | | |
45+ | Support Vector Machines | Classification | - Accuracy - Precision - Recall - F-beta score - Area under ROC curve | - Low Bias High Variance | Sensitive to outliers | Sensitive to imbalanced data | |
46+ | K-nearest neighbors | Classification | - Accuracy - Precision - Recall - F-beta score - Area under ROC curve | - Low Bias High Variance | Sensitive to outliers | Sensitive to imbalanced data | |
47+ | Decision Tree | Both | Both | - Low Bias High Variance | - Not impacted by outliers | - Not impacted by imbalanced data | |
48+ | Random Forest | Both | Both | - Low Bias High Variance | - Not impacted by outliers | - Not impacted by imbalanced data | |
49+ | K-means clustering | Clustering | - Elbow method - Silhoutte Analysis | | | | |
50+ | | | | | | | |
51+
52+ ### 22. Why do CNNs perfom better with images ? (What is it that CNN achieve better than ANN when delaing with image data)
53+ ### 23. Explain K-means clustering in laymen terms ?
54+ ### 24. What is the evaluation metric for K-means clustering ?
55+ ### 25. What is the impact of outliers on K-means clustering ?
56+ ### 26. What is the impact of outliers on K-nearest neigbors ?
57+ ### 25. What is the impact of imbalanced data on K-means clustering ?
58+ ### 26. What is the impact of imbalanced data on K-nearest neigbors ?
You can’t perform that action at this time.
0 commit comments