Created
April 19, 2020 19:42
-
-
Save philschmid/ab807fba708d43e2e906bb7e96158971 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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