(Choose 1 answer)
Select the option that has the syntax to obtain the data splits you will need to train a model having a test split that is a third the size of your available data.
A. X_train, X_test, y_train, y_test = train_test_split(x, y, test_size=0.5)
B. X_train, X_test, y_train, y_test = train_test_split(x, y, test_size=0.33)
C. X_train, y_test = train_test_split(x, y, test_size=0.33)
D. X_train, y_test = train_test_split(x, y, test_size=0.5)
Q: 24