Final answer:
To split the dataset into training and testing sets for multi-class classification in Python, you can use the train_test_split function from the sklearn.model_selection module.
Step-by-step explanation:
To split the dataset into training and testing sets for multi-class classification using Python, you can use the train_test_split function from the sklearn.model_selection module.
Here's an example:
- Import the necessary module: from sklearn.model_selection import train_test_split
- Load your dataset
- Define your features and target variables
- Split the data into training and testing sets: X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)
- 70% of the samples will be assigned to the training set (X_train, y_train) and 30% of the samples will be assigned to the testing set (X_test, y_test)