Skip to content

Instantly share code, notes, and snippets.

@Desjajja
Last active December 20, 2022 06:51
Show Gist options
  • Save Desjajja/da201e57142a0089a845befdb2082027 to your computer and use it in GitHub Desktop.
Save Desjajja/da201e57142a0089a845befdb2082027 to your computer and use it in GitHub Desktop.
Split Dataset in Paddle #DeepLearning
import numpy as np
from sklearn.model_selection import train_test_split
# load filepath to list X, labels to list y
# test_size appoints the ratio(0,1), random_state gives the random seed
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.33, random_state=42)
# define dataset class, pass two lists in
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment