Question: Use PYTHON please: from sklearn.model_selection import train_test_split X1, X2, y1, y2 = train_test_split(X, y, random_state=0, train_size=0.8) where X.shape = (100,5), y.shape = (100,) What is
Use PYTHON please:
from sklearn.model_selection import train_test_split X1, X2, y1, y2 = train_test_split(X, y, random_state=0, train_size=0.8) where X.shape = (100,5), y.shape = (100,) What is the output of X2.shape?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
