Skip to content

Instantly share code, notes, and snippets.

@philschmid
Created April 19, 2020 19:42
Show Gist options
  • Select an option

  • Save philschmid/ab807fba708d43e2e906bb7e96158971 to your computer and use it in GitHub Desktop.

Select an option

Save philschmid/ab807fba708d43e2e906bb7e96158971 to your computer and use it in GitHub Desktop.
from autogluon import TabularPrediction as task
predictor = task.fit(train_data=task.Dataset(file_path="TRAIN_DATA.csv"), label="PREDICT_COLUMN")
predictions = predictor.predict(task.Dataset(file_path="TEST_DATA.csv"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment