Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Created March 27, 2022 10:58
Show Gist options
  • Save AI-MOO/cc26237b52dfe99c5dd8b1cc499fcd55 to your computer and use it in GitHub Desktop.
Save AI-MOO/cc26237b52dfe99c5dd8b1cc499fcd55 to your computer and use it in GitHub Desktop.
# y X تقسيم كل من بيانات التدريب والاختبار إلى مدخلات ومخرجات
X_train = training_data.drop(columns = ['Activity', 'subject'])
y_train = training_data["Activity"]
X_test = testing_data.drop(columns = ['Activity', 'subject'])
y_test = testing_data['Activity']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment