Search Your Question...!

Showing posts with label Machine Learning. Show all posts
Showing posts with label Machine Learning. Show all posts

Machine Learning MCQ's

1. If you have a basket of different fruit varieties with some prior information on size, color, shape of each and every fruit . Which learning methodology is best applicable?

   View Answer   

   super



2. If the outcome is binary(0/1), which model to be applied?

   View Answer   

   Logistic



3. For which one of these relationships could we use a regression analysis? Chose the correct one

   View Answer   

   HEIGHT



4. Which clustering technique requires prior knowledge of the number of clusters required?

   View Answer   

   k means



5. Which of the learning methodology applies conditional probability of all the variables with respective the dependent variable?

   View Answer   

   supervised



Deep Learning MCQ's

1. Data Collected from Survey results is an example of ______

   View Answer   

   structured data



2. Gradient at a given layer is the product of all gradients at the previous layers.

   View Answer   

   True



3. Name the component of a Neural Network where the true value of the input is not observed.

   View Answer   

   hidden layer



4. _______________ is a Neural Nets way of classifying inputs.

   View Answer   

   FP



5. Prediction Accuracy of a Neural Network depends on _______________ and ______________.

   View Answer   

   weight and bias



Data Visualisation with Matplotlib MCQ's

1. Multiple lines can be plotted using a single plot function? State True or False

   View Answer   

   True



2. Which of the following parameter is used to set the color of a error bar in bar plots?

   View Answer   

   ecolor



3. Which of the following parameter is used to set the style of a line?

   View Answer   

   linestyle



4. A Figure can contain multiple Axes. State true or false.?

   View Answer   

   True



5. What does the function subplot return?

   View Answer   

   Axes object



Azure - Machine Learning MCQ's

1. Which of the following is a python REPL environment ?

   View Answer   

   jupyter notebook



2. What is the default Python package manager in case of Azure ML Studio?

   View Answer   

    conda 



3. Which of the following can be generally used to clean and prepare Big Data?

   View Answer   

    U-SQL



4. Reference data is _________.

   View Answer   

    additional application data for user



5. Get the required size of a dataset from a large amount of accumulated data is called ________.

   View Answer   

    statistical 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 Answer   

   True



2. Running the TensorFlow session is mandatory to run TensorFlow graph.

   View Answer   

   True



3. In TensorFlow, a computation runs before the creation of a session.

   View Answer   

   False



4. TensorFlow is based on ________________.

   View Answer   

   dataflow graph



5. What is a tensor?

   View Answer   

   an 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 Answer   

   Supervised Learning



2. Now Can you make quick guess where Decision tree will fall into _____ 

   View Answer   

   Supervised Learning



3. Do you think heuristic for rule learning and heuristics for decision trees are both same ? 

   View Answer   

    False



4. What is the benefit of Naïve Bayes ? 

   View Answer   

   Requires less training data



5. What is the advantage of using an iterative algorithm like gradient descent ? (select the best)

   View Answer   

   For 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 Answer   

   read_sql



2. What do the methods starting with fetch, of sklearn.datasets module do?

   View Answer   

   It downloads a specific dataset from a library.



3. Which of the following function is used for loading famous iris dataset from sklearn.datasets?

   View Answer   

   load_iris()



4. Which of the following Python library is used for Machine Learning?

   View Answer   

   Scikit-Learn



5. Which of the following module of sklearn contains popular datasets, which are processed?

   View Answer   

   datasets



Image Classification MCQ's

1. Identify the unstructured data from the following

   View Answer   

   both image and Video clip



2. Which preprocessing technique is used for dimensinality reduction?

   View Answer   

   SVD



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 Answer   

   cross validation



4. True Negative is when

   View Answer   

   predic are and actual negative



5. True Positive is when

   View Answer   

   predic are and actual  not  negative



Unstructured Data Classification MCQ's

1.  Identify the unstructured data from the following.

   View Answer   

   IMAGE



2.  What kind of classification is our case study 'Spam Detection'?

   View Answer   

   BINARY



3.  Which preprocessing technique is used to remove the most commonly used words?

   View Answer   

   STOPWORDS



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 Answer   

   TRUE



Structured Data MCQ's

1.  Identify the structured data from the following

   View Answer   

   Data from mySQL DB and Excel



2. What kind of classification is our case study 'Churn Analysis'?

   View Answer   

   Binary



3. Which command is used to identify the unique values of a column?

   View Answer   

   unique()



4. Which preprocessing technique is used to make the data gaussian with zero mean and unit variance?

   View Answer   

   Standardization



5. True Negative is when the predicted instance and the actual is positive.

   View Answer   

   False



SageMaker - Amazon ML MCQ's

1.  Asynchronous Predictions are possible in SageMaker through _________________.

   View Answer   

   BatchTranform



2. Training Data for SageMaker models is ___________________.

   View Answer   

   Stored in S3



3. Which of the following algorithms is best suited for detecting malicious server activity?

   View Answer   

   IP



4. Hyperparameters are _______________________.

   View Answer   

   Model-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