Hot questions

1 1 vote
2 answers 2 answers
1.1k
1.1k views
If $h(x) =4x+5$, how do i find h inverse of x?
1 1 vote
2 answers 2 answers
725
725 views
Need help solving this question
4 4 votes
1 answers 1 answer
7.6k
7.6k views
Suppose, you have given the following dataset where x and y are the 2 features and color Red or Blue is the target variable.a) A new data point $x=1$ and $y=1$ is given. ...
2 2 votes
1 1 answer
1.5k
1.5k views
I am wondering if anyone can suggest the best resources for studying SQL?
0 0 votes
1 1 answer
513
513 views
3 3 votes
1 answers 1 answer
10.8k
10.8k views
The scatter plot of Iris Dataset is shown in the figure below. Assume Softmax Regression is used to classify Iris to Setosa, Versicolor, or Viriginica using just petal le...
1 1 vote
1 1 answer
1.2k
1.2k views
What kind of algorithm would best for following problem.I try to forecast reservation of different kind of tables. Let's say I have 100 different tables, which are reserv...
3 3 votes
1 answers 1 answer
9.4k
9.4k views
In the figure below, a neural network is shown. Calculate the following:1) How many neurons do we have in the input layer and the output layer?2) How many hidden layers d...
1 1 vote
0 0 answers
410
410 views
I apologize in advance if my question sounds too basic to be worthy of anyone's time, but statistics are not part of my curriculum.I am developing a proof of concept of a...
2 2 votes
1 answers 1 answer
4.9k
4.9k views
We want to use Naive Bayes for tagging documents. It is a classification task that we want to assign a class (tag) to each string. We currently have two tags: Sport and N...
0 0 votes
0 0 answers
886
886 views
I am wondering if you can share a list of websites for designing interfaces.
3 3 votes
1 answers 1 answer
7.4k
7.4k views
Assume we have the following neural network and all activation functions are $f(z)=z$. If the weights are initialized with the values you see in table below, what will be...
1 1 vote
1 answers 1 answer
15.2k
15.2k views
I can update all the libraries and packages on Anaconda using the following command:conda update all But it does not update conda itself. Is there any special command fo...
1 1 vote
0 0 answers
7.8k
7.8k views
Hi everyone.I'm currently working on my final project for a Data Science degree and after a month of literature review, exploratory analysis and model testing, I'm not su...
1 1 vote
1 1 answer
13.9k
13.9k views
2 2 votes
1 answers 1 answer
6.6k
6.6k views
For the below neural network, imagine we are going to use the backpropagation algorithm to update weights. If the Bias (b) in this problem is always 0 (ignore bias when y...
1 1 vote
0 0 answers
446
446 views
A colleague of mine is studying for tech roles, and they're asked to solve a consistent type of problem during the phone screenings: practicing manipulating data (sets, h...
0 0 votes
1 1 answer
2.9k
2.9k views
I am confused about this figure. Is not this a cross-validation test or we have a fixed few examples for which it is tested while you also have various folds being tested...
1 1 vote
1 1 answer
1.8k
1.8k views
def cross_val_score(estimator,X,y,scoring,cv): scores=cross_val_score scores_rmse=np.sqrt(-scores) print('Scores: ',scores_rmse) print("Mean:", scores_rms...