1 1 vote
1.4k
1.4k 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...
0 0 votes
738
738 views
Hello Guys,I have been given a task where I need to analyse the impact of all the products that were discontinued last year on the customers and sales? I work for a retai...
0 0 votes
2.0k
2.0k 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...
0 0 votes
1.0k
1.0k views
For example, Logistic regression is classification likewise what are the other types? I am a bit confused.
1 1 vote
7.7k
7.7k 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. ...
0 0 votes
21.3k
21.3k views
Use the k-means algorithm and Euclidean distance to cluster the following 8 examples into 3 clusters:$A1=(2,10), A2=(2,5), A3=(8,4), A4=(5,8), A5=(7,5), A6=(6,4), A7=(1,2...
0 0 votes
5.0k
5.0k 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
21.3k
21.3k views
The dataset with two features $(x,y)$ is shown as follows (note $y$ in this example is the second feature, not a target value):xy2.52.40.50.72.22.91.92.23.13.02.32.72.01....
0 0 votes
9.6k
9.6k views
Assume we have a $5\times5$ px RGB image with 3 channels respectively for R, G, and B. IfR2000012001201021210101020G0212211100002202002002111B0100111201102021011012112 We...
0 0 votes
3.1k
3.1k 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...
0 0 votes
942
942 views
Make a scatter plot where the x-axis is the height of the citizens and the y-axis is the weight of the citizens. The color of the points need to be different for males an...
0 0 votes
820
820 views
Python3 and Python2 seems so similar, and the only changes which are obvious are some changes in functions such as print that now needs parentheses. Are there other impro...
0 0 votes
683
683 views
https://stackoverflow.com/questions/55930051/is-impossible-predict-hours-time-series-to-minutes-time-series i want to this hours time series predict model to minute predi...