Last active
January 5, 2020 15:39
-
-
Save aribornstein/8eb7f49fc39d139e7038d8b9dd8997b7 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 azureml.train.estimator import Estimator | |
script_params = { | |
'--data_folder': ds, | |
} | |
nlp_est = Estimator(source_directory='.', | |
script_params=script_params, | |
compute_target=cluster, | |
entry_script='train.py', | |
pip_packages=['git+https://github.com/NervanaSystems/nlp-architect.git@absa']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment