Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Created March 2, 2022 17:43
Show Gist options
  • Save AI-MOO/ca70c22aa023936364bd1f3cfcffa2fa to your computer and use it in GitHub Desktop.
Save AI-MOO/ca70c22aa023936364bd1f3cfcffa2fa to your computer and use it in GitHub Desktop.
# تقسيم مجموعة البيانات إلى بيانات تدريب و اختبار
from sklearn.model_selection import train_test_split
X = dataset.drop('target', axis=1)
y = dataset.target
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment