Basic Questions
What is Machine Learning?
- Machine Learning is a subset of artificial intelligence that involves the use of algorithms and statistical models to enable computers to perform specific tasks without explicit instructions, relying on patterns and inference instead.
What are the different types of Machine Learning?
- Supervised Learning: The model is trained on labeled data.
- Unsupervised Learning: The model is trained on unlabeled data.
- Semi-supervised Learning: The model is trained on a mix of labeled and unlabeled data.
- Reinforcement Learning: The model learns through trial and error by receiving rewards or penalties.
What is overfitting and how can you prevent it?
- Overfitting occurs when a model performs well on training data but poorly on unseen data. Prevention methods include:
- Cross-validation
- Pruning (for decision trees)
- Using more training data
- Regularization techniques like Lasso (L1) and Ridge (L2)
- Overfitting occurs when a model performs well on training data but poorly on unseen data. Prevention methods include:
Explain the difference between a parametric and a non-parametric model.
- Parametric models summarize data with a set of parameters of fixed size (e.g., linear regression).
- Non-parametric models do not assume a fixed form or parameters (e.g., k-nearest neighbors).
Intermediate Questions
What is the bias-variance tradeoff?
- Bias refers to error due to overly simplistic models, while variance refers to error due to models that are too complex. The tradeoff is balancing these two to minimize total error.
What is the difference between bagging and boosting?
- Bagging (Bootstrap Aggregating) reduces variance by training multiple models on different subsets of data and averaging the results.
- Boosting reduces bias by training models sequentially, each one correcting errors of the previous one.
What is a confusion matrix?
- A confusion matrix is a table used to evaluate the performance of a classification algorithm, showing true positives, true negatives, false positives, and false negatives.
Explain the ROC curve and AUC.
- The ROC (Receiver Operating Characteristic) curve plots the true positive rate against the false positive rate at various threshold settings.
- AUC (Area Under the ROC Curve) measures the overall performance of a classification model; higher AUC indicates better performance.
Advanced Questions
What are the advantages and disadvantages of using k-nearest neighbors?
- Advantages: Simple to understand and implement, no training phase, versatile for classification and regression.
- Disadvantages: Computationally expensive, sensitive to irrelevant features and the scale of data, requires large storage.
Explain the concept of dimensionality reduction and name some techniques.
- Dimensionality reduction reduces the number of random variables under consideration, making the model simpler and faster. Techniques include:
- Principal Component Analysis (PCA)
- Linear Discriminant Analysis (LDA)
- t-Distributed Stochastic Neighbor Embedding (t-SNE)
- Dimensionality reduction reduces the number of random variables under consideration, making the model simpler and faster. Techniques include:
What is gradient descent and how does it work?
- Gradient descent is an optimization algorithm used to minimize a function by iteratively moving towards the steepest descent direction (negative gradient) of the function.
What is the difference between L1 and L2 regularization?
- L1 regularization (Lasso) adds the absolute value of the coefficient magnitude to the loss function, leading to sparse models with few coefficients.
- L2 regularization (Ridge) adds the squared value of the coefficient magnitude to the loss function, leading to small coefficients but not necessarily zero.
Practical Questions
How would you handle missing data?
- Options include:
- Removing rows/columns with missing values
- Imputing missing values with mean, median, mode, or using algorithms like KNN
- Using models that handle missing data intrinsically
- Options include:
Explain how you would evaluate a classification model.
- Metrics include accuracy, precision, recall, F1-score, confusion matrix, ROC curve, and AUC.
What are the steps to build a machine learning model?
- Define the problem
- Collect data
- Preprocess data (cleaning, normalization, etc.)
- Choose a model
- Train the model
- Evaluate the model
- Tune hyperparameters
- Validate and test the model
- Deploy the model
What techniques would you use for feature selection?
- Techniques include:
- Filter methods (e.g., chi-square test, information gain)
- Wrapper methods (e.g., forward selection, backward elimination)
- Embedded methods (e.g., regularization techniques like Lasso)
- Techniques include:
Tips for Preparation
- Brush up on fundamental concepts and algorithms.
- Practice coding algorithms from scratch.
- Work on real-life datasets to gain practical experience.
- Review common machine learning libraries (e.g., scikit-learn, TensorFlow, PyTorch).
- Understand the mathematics behind algorithms, especially for advanced positions.
- Keep up with recent developments and research in the field.
For more detailed explanations and examples, consider reviewing resources like:
Comments
Post a Comment