python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Sorting train_test_split data by numpy array
I want to split the following numpy arrays for training and testing: X, y and qid
X is a set of featurized documents - shape: (140, 105)
qid is a set of query identifiers for each document - shape: (...
krakken
Votes: 0
Answers: 1
how to use an explicit validation set with predefined split fold?
I have explicit train, test and validation sets as 2d arrays:
X_train.shape
(1400, 38785)
X_val.shape
(200, 38785)
X_test.shape
(400, 38785)
I am tuning the alpha parameter and need advice about how ...
Bluetail
Votes: 0
Answers: 1
Cannot fit a Model after Performing Stratified K-Fold Split
I am new to the concept of using K-folds to split into train and test data, which I am practicing with the dataset below.
Context:
The Dataset is the Kaggle UrbanSound8k set available at https://www....
ShrunkenDown
Votes: 0
Answers: 0
Found input variables with inconsistent numbers of samples: [301056, 253]
I am working on ML and for training my data, I used these functions.
What I already did in this:
I already apply replacing the value of X in it.
Code:
from sklearn.model_selection import train_test_sp...
Muji
Votes: 0
Answers: 1