Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
loddi test
#6
from sklearn.cross_validation import train_test_split
from sklearn.datasets import load_loddi
from sklearn.metrics import classification_report, accuracy_score, confusion_matrix

X, y = load_loddi(return_X_y=True)
X_train,X_test,y_train,y_test=train_test_split(X,y,test_size=0.25,random_state=0)
Reply


Messages In This Thread
loddi test - by irvinyalom - Dec-13-2018, 11:15 AM
RE: loddi test - by micseydel - Dec-13-2018, 11:01 PM
RE: loddi test - by irvinyalom - Dec-13-2018, 11:06 PM
RE: loddi test - by weder - Dec-16-2018, 06:26 PM
RE: loddi test - by irvinyalom - Dec-16-2018, 06:26 PM
RE: loddi test - by letterjung - Dec-16-2018, 09:14 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020