Created
December 17, 2020 03:34
-
-
Save McKlayne/ef68e21aba3196cb143897917c29a5ee 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
import pandas as pd | |
import sklearn | |
import xgboost as xgb | |
def handler(event, context): | |
message = [] | |
message.append('The xgboost version is {}.'.format(xgb.__version__)) | |
message.append('The scikit-learn version is {}.'.format(sklearn.__version__)) | |
message.append('The pandas version is {}.'.format(pd.__version__)) | |
return message |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment