Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaypal5/2292efe13dffeca05592d05d772edf74 to your computer and use it in GitHub Desktop.
Save shaypal5/2292efe13dffeca05592d05d772edf74 to your computer and use it in GitHub Desktop.
Deepchecks Phishing URLs Example: Random Forest Model Evaluation
from sklearn.tree import DecisionTreeClassifier
model = DecisionTreeClassifier(criterion='entropy', splitter='random', random_state=SEED)
model.fit(train_X, train_y)
msuite.run(model=model, train_dataset=ds_train, test_dataset=ds_test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment