Skip to content

Instantly share code, notes, and snippets.

@aribornstein
Last active January 5, 2020 15:39
Show Gist options
  • Save aribornstein/8eb7f49fc39d139e7038d8b9dd8997b7 to your computer and use it in GitHub Desktop.
Save aribornstein/8eb7f49fc39d139e7038d8b9dd8997b7 to your computer and use it in GitHub Desktop.
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