1 1 vote
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...
0 0 votes
620
620 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
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...
0 0 votes
890
890 views
For example, Logistic regression is classification likewise what are the other types? I am a bit confused.
1 1 vote
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. ...
0 0 votes
20.9k
20.9k 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
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
20.4k
20.4k 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.1k
9.1k views
Assume we have a $5\times5$ px RGB image with 3 channels respectively for R, G, and B. IfR2000012001201021210101020G0212211100002202002002111B0100111201102021011012112 We...
0 0 votes
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...
0 0 votes
779
779 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
709
709 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
593
593 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...