NEW
Font size
WorksheetsSCRS-QUIZ-MANIA
Total questions: 25
Worksheet time: 26mins
1)Which of the following is a convex polygon?
Calculate the number of trainable parameter in keras/tensorflow sequential model
12
13
14
10
Given Below Is the logo of scrs vit in RGB channels then which of the following is of BGR channels
Given below is a simple neural network architecture and I have a 100000 rows of cleaned data.If I train the below model with this data then which of the following Is correct
this model get underfitted for above data
this model get overfitted for above data
All neural networks are black box which cannot be predicted without providing sample data
none of the above
After training a data of diabetes in Indian population these are the results of loss and accuracy after training the data
The data is overfitted to the neural network model
The data is underfitted to the neural network model
The data is perfectly fit to the neural network model
The data is just fit to the model
A 4-input neuron has weights 1, 2, 3 and 4. The transfer function is linear with the constant of proportionality being equal to 2. The inputs are 4, 3, 2 and 1 respectively. What will be the output?
30
40
50
60
Which search method takes less memory?
Depth-First Search
Breadth-First search
Both (a) and (b)
Linear Search.
Optimal search.
Which is the best way to go for Game playing problem?
Linear approach
Heuristic approach
Random approach
Optimal approach
Stratified approach.
select the correct answer
precision =1
recall =1
precision =1 AND recall =1
F1 score :-2
10. Which of the following is NOT a parameter of the confusion matrix?
True positive
False negetive
Untrue positive
True Negetive
Which of these is a predictive model ?
Naive bayes
Random forest
Decision tree
All of the above
Which graph is used to represent semantic network?
Undirected graph
Directed graph
Directed Acyclic graph
Directed complete graph
Which of the following is an activation function
All the above are activation function
What does SVM stands for?
support vector machine
schematic vector machine
support vertical machine
support vector mechanism
In training a neural network, you notice that the loss does not decrease in the few starting epochs.
The reasons for this could be:
1-The learning is rate is low
2-Regularization parameter is high
3-Stuck at local minima
What according to you are the probable reasons?
1 and 2
2 and 3
3 and 1
all 1 and 2 and 3
What is the sequence of the following tasks in a perceptron?
1)Initialize weights of perceptron randomly
2)Go to the next batch of dataset
3)If the prediction does not match the output, change the weights
4)For a sample input, compute an output
1, 2, 3, 4
4, 3, 2, 1
3, 1, 2, 4
1, 4, 3, 2
The number of neurons in the output layer should match the number of classes (Where the number of classes is greater than 2) in a supervised learning task. True or False?
True
False
What are the factors to select the depth of neural network?
1 - Type of neural network (eg. MLP, CNN etc)
2 - Input data
3 - Computation power, i.e. Hardware capabilities and software capabilities
4 - Learning Rate
5 - The output function to map
1, 2, 4, 5
2, 3, 4, 5
1, 3, 4, 5
All of these
I have a data of sudoku with solution and feeded this data to neural network and after training the accuracy of the data is 90%?Do you think that the Neural Network has intrepreted the logic behind the game?
Maybe because It have gave the accuracy for testing data
YES!!!
NO!!!
Cannot say particularly
which of the following is false?
neural networks are artificial copy of the human brain
neural networks have high computational rates than conventional computers
neural networks learn by examples
none of the mentioned
Guess the output of the above python code
0 Python
1 Interview
2 Questions
0 Python
1 Questions
2 Interview
0 Interview
1 Python
2 Question
0 Questions
1 Interview
2 Python
Predict the output of the open-cv code for the following logo
#python code below
(thresh, img_bin) = cv2.threshold(img, 100, 255, cv2.THRESH_BINARY | cv2.THRESH_OTSU)
img_bin = img_bin
cv2.imshow("Image_bin.jpg", img_bin)
cv2.waitKey(0)
guess the output of the above python code
[['mon', 3], ['tue', 1], ['wed', 1], ['fri', 1], ['thu', 1], ['sun', 2]]
[['mon', 3], ['tue', 1], ['wed', 1], ['fri', 1], ['thu', 2], ['sun', 1]]
[['mon', 2], ['tue', 1], ['wed', 1], ['fri', 1], ['thu', 1], ['sun', 2]]
[['mon', 3], ['tue', 4], ['wed', 1], ['fri', 1], ['thu', 1], ['sun', 2]]
Guess the output of the following python code:-
I have vit id card now my i aim is to extract that id card from the image /photo .If so what algorithm can i use to extract the card (Like in the above picture)
sobel Edge detection
canny Edge detection
Hough Line Transform
All of the above
