Highest voted questions in Artificial Intelligence

#42
449
views
1 answers
0 votes
Imagine you are guiding a robot through a grid-based maze using the A* algorithm. The robot is currently at node A (start) and wants to reach node B (goal). The heuristi...
#43
313
views
1 answers
0 votes
When choosing one feature from \(X_1, \ldots, X_n\) while building a Decision Tree, which of the following criteria is the most appropriate to maximize? (Here, \(H()\) me...
#44
358
views
1 answers
0 votes
Given the following table of observations, calculate the information gain $IG(Y |X)$ that would result from learning the value of $X$. XYRedTrueGreenFalseBrownFalseBrownF...
#45
340
views
1 answers
0 votes
In fitting some data using radial basis functions with kernel width $σ$, we compute training error of $345$ and a testing error of $390$.(a) increasing $σ$ will most li...
#46
568
views
1 answers
0 votes
Suppose you have a three-class problem where class label \( y \in \{0, 1, 2\} \), and each training example \( \mathbf{X} \) has 3 binary attributes \( X_1, X_2, X_3 \in ...
#47
348
views
2 answers
0 votes
Suppose you have picked the parameter \( \theta \) for a model using 10-fold cross-validation. The best way to pick a final model to use and estimate its error is to(a) p...
#48
333
views
1 answers
0 votes
$True$ or $False?$ If decision trees such as the ones we built in class are allowed to have decision nodes based on questions that can have many possible answers (e.g. �...
#49
277
views
1 answers
0 votes
P1: In the limit of infinite training and test data, consistent estimators always give at least as low a test error as biased estimators. P2: Leave-one out cross validati...
#50
347
views
1 answers
0 votes
After applying a regularization penalty in linear regression, you find that some of the coefficients of $w$ are zeroed out. Which of the following penalties might have be...
#51
174
views
0 answers
0 votes
Using the same data as above \( \mathbf{X} = [-3, 5, 4] \) and \( \mathbf{Y} = [-10, 20, 20] \), assuming a ridge penalty \( \lambda = 50 \), what ratio versus the MLE es...
#52
205
views
1 answers
0 votes
Consider the statements:$P1:$ It is generally more important to use consistent estimators when one has smaller numbers of training examples.$P2:$ It is generally more imp...
#53
249
views
1 answers
0 votes
Suppose we have a regularized linear regression model: \[ \text{argmin}_{\mathbf{w}} \left||\mathbf{Y} - \mathbf{Xw} \right||^2 + k \|\mathbf{w}\|_p^p. \] What is the eff...
#54
173
views
1 answers
0 votes
Suppose we have a regularized linear regression model: \[ \text{argmin}_{\mathbf{w}} \left||\mathbf{Y} - \mathbf{Xw} \right||^2 + \lambda \|\mathbf{w}\|_1. \] What is the...
#55
208
views
1 answers
0 votes
Suppose we want to compute $10-Fold$ Cross-Validation error on $100$ training examples. We need to compute error $N1$ times, and the Cross-Validation error is the average...
#56
421
views
1 answers
0 votes
Given a tree with a branching factor of 3 and a depth of 4, calculate the maximum number of nodes expanded during a breadth-first search.
#57
405
views
0 answers
0 votes
Consider the feature transform z = [L0(x) L1(x) L2(x)]T with Legendre polynomials and the linear model h(x) = w T .z. For the regularized hypothesis with w = [−1 + 2 �...
#58
305
views
1 answers
0 votes
Please Solve this question with full explanation.
#59
1.5k
views
4 answers
0 votes
A perceptron has input weights $W_1=-3.9$ and $W_2=1.1$ with threshold value $T=0.3.$ What output does it give for the input $x_1=1.3$ and $x_2=2.2?$$-2.65$$-2.30$$0$$1$
#60
961
views
1 answers
0 votes
A software program that infers and manipulates existing knowledge in order to generate new knowledge is known as:Data dictionaryReference mechanismInference engineControl...