Search Your Question...!
Deep Learning MCQ's
1. Data Collected from Survey results is an example of ______
View Answerstructured data
2. Gradient at a given layer is the product of all gradients at the previous layers.
View AnswerTrue
3. Name the component of a Neural Network where the true value of the input is not observed.
View Answerhidden layer
4. _______________ is a Neural Nets way of classifying inputs.
View AnswerFP
5. Prediction Accuracy of a Neural Network depends on _______________ and ______________.
View Answerweight and bias
Data Visualisation with Matplotlib MCQ's
1. Multiple lines can be plotted using a single plot function? State True or False
View AnswerTrue
2. Which of the following parameter is used to set the color of a error bar in bar plots?
View Answerecolor
3. Which of the following parameter is used to set the style of a line?
View Answerlinestyle
4. A Figure can contain multiple Axes. State true or false.?
View AnswerTrue
5. What does the function subplot return?
View AnswerAxes object
Azure - Machine Learning MCQ's
1. Which of the following is a python REPL environment ?
View Answerjupyter notebook
2. What is the default Python package manager in case of Azure ML Studio?
View Answerconda
3. Which of the following can be generally used to clean and prepare Big Data?
View AnswerU-SQL
4. Reference data is _________.
View Answeradditional application data for user
5. Get the required size of a dataset from a large amount of accumulated data is called ________.
View Answerstatistical sampling B,D,C,A,E
TensorFlow MCQ's
1. Improve quality and performance of the applications is a major driver for switching to DevOps
View AnswerTrue
2. Running the TensorFlow session is mandatory to run TensorFlow graph.
View AnswerTrue
3. In TensorFlow, a computation runs before the creation of a session.
View AnswerFalse
4. TensorFlow is based on ________________.
View Answerdataflow graph
5. What is a tensor?
View Answeran n-dimesional array
Machine Learning Axioms MCQ's
1. Which of the learning methodology applies conditional probability of all the variables with respective the dependent variable?
View AnswerSupervised Learning
2. Now Can you make quick guess where Decision tree will fall into _____
View AnswerSupervised Learning
3. Do you think heuristic for rule learning and heuristics for decision trees are both same ?
View AnswerFalse
4. What is the benefit of Naïve Bayes ?
View AnswerRequires less training data
5. What is the advantage of using an iterative algorithm like gradient descent ? (select the best)
View AnswerFor Nonlinear regression problems, there is no closed form solution
Machine Learning Using scikit-learn MCQ's
1. Which of the following utility of Pandas can be used to read from Oracle database?
View Answerread_sql
2. What do the methods starting with fetch, of sklearn.datasets module do?
View AnswerIt downloads a specific dataset from a library.
3. Which of the following function is used for loading famous iris dataset from sklearn.datasets?
View Answerload_iris()
4. Which of the following Python library is used for Machine Learning?
View AnswerScikit-Learn
5. Which of the following module of sklearn contains popular datasets, which are processed?
View Answerdatasets
Image Classification MCQ's
1. Identify the unstructured data from the following
View Answerboth image and Video clip
2. Which preprocessing technique is used for dimensinality reduction?
View AnswerSVD
3. Technique used to evaluate a classifier by dividing the data set into train set to train the classifier and test set to test the same.
View Answercross validation
4. True Negative is when
View Answerpredic are and actual negative
5. True Positive is when
View Answerpredic are and actual not negative
Unstructured Data Classification MCQ's
1. Identify the unstructured data from the following.
View AnswerIMAGE
2. What kind of classification is our case study 'Spam Detection'?
View AnswerBINARY
3. Which preprocessing technique is used to remove the most commonly used words?
View AnswerSTOPWORDS
4. Cross-validation technique is used to evaluate a classifier by dividing the data set into training set to train the classifier and testing set to test the same.
View AnswerTRUE
Structured Data MCQ's
1. Identify the structured data from the following
View AnswerData from mySQL DB and Excel
2. What kind of classification is our case study 'Churn Analysis'?
View AnswerBinary
3. Which command is used to identify the unique values of a column?
View Answerunique()
4. Which preprocessing technique is used to make the data gaussian with zero mean and unit variance?
View AnswerStandardization
5. True Negative is when the predicted instance and the actual is positive.
View AnswerFalse
SageMaker - Amazon ML MCQ's
1. Asynchronous Predictions are possible in SageMaker through _________________.
View AnswerBatchTranform
2. Training Data for SageMaker models is ___________________.
View AnswerStored in S3
3. Which of the following algorithms is best suited for detecting malicious server activity?
View AnswerIP
4. Hyperparameters are _______________________.
View AnswerModel-specific parameters which are preset before training
Overfitting & Underfitting in Machine Learning
Overfitting in Machine Learning
Overfitting refers to a model that models the
training data too well.
Overfitting happens when a model learns the detail and noise in the training data to the extent that it negatively impacts the performance of the model on new data. This means that the noise or random fluctuations in the training data is picked up and learned as concepts by the model. The problem is that these concepts do not apply to new data and negatively impact the models ability to generalize.
Machine Learning - Exploring the Model MCQ's
Machine Learning - Exploring the Model
Welcome to the course on Machine Learning - Exploring the Model
The objective of this course is to familiarize you with the steps involved in
fitting a machine learning model to a data set
You will learn all the concepts involved in building a Machine Learning Model,
from Hypothesis function that represents a model for a given data-set to evaluation of the hypothesis for a general case