Skip to content

Instantly share code, notes, and snippets.

@dcshapiro
Last active January 11, 2021 16:51
Show Gist options
  • Save dcshapiro/7cb07f5e27a1ff863736f528477ab2dd to your computer and use it in GitHub Desktop.
Save dcshapiro/7cb07f5e27a1ff863736f528477ab2dd to your computer and use it in GitHub Desktop.
lazy-text-predict quickstart
from lazytextpredict import basic_classification
X=["Good","Good day", "Bad", "Bad day"]
Y=[1,1,0,0]
trial=basic_classification.LTP(Xdata=X,Ydata=Y, models='all')
trial.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment