Skip to content

Commit ae1337f

Browse files
authored
Merge pull request Azure#724 from Azure/release_update/Release-167
update samples from Release-167 as a part of 1.0.83 SDK release
2 parents 9b9d112 + c95f970 commit ae1337f

File tree

61 files changed

+676
-798
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+676
-798
lines changed

configuration.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"source": [
104104
"import azureml.core\n",
105105
"\n",
106-
"print(\"This notebook was created using version 1.0.81 of the Azure ML SDK\")\n",
106+
"print(\"This notebook was created using version 1.0.83 of the Azure ML SDK\")\n",
107107
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
108108
]
109109
},

how-to-use-azureml/automated-machine-learning/automl_env.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ dependencies:
1313
- scikit-learn>=0.19.0,<=0.20.3
1414
- pandas>=0.22.0,<=0.23.4
1515
- py-xgboost<=0.80
16-
- pyarrow>=0.11.0
1716
- fbprophet==0.5
1817
- pytorch=1.1.0
1918
- cudatoolkit=9.0

how-to-use-azureml/automated-machine-learning/automl_env_mac.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ dependencies:
1414
- scikit-learn>=0.19.0,<=0.20.3
1515
- pandas>=0.22.0,<0.23.0
1616
- py-xgboost<=0.80
17-
- pyarrow>=0.11.0
1817
- fbprophet==0.5
1918
- pytorch=1.1.0
2019
- cudatoolkit=9.0

how-to-use-azureml/automated-machine-learning/classification-bank-marketing-all-features/auto-ml-classification-bank-marketing-all-features.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,3 @@ name: auto-ml-classification-bank-marketing-all-features
22
dependencies:
33
- pip:
44
- azureml-sdk
5-
- interpret
6-
- azureml-defaults
7-
- azureml-train-automl
8-
- azureml-widgets
9-
- matplotlib
10-
- pandas_ml
11-
- onnxruntime==1.0.0
12-
- azureml-explain-model
13-
- azureml-contrib-interpret

how-to-use-azureml/automated-machine-learning/classification-credit-card-fraud/auto-ml-classification-credit-card-fraud.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,3 @@ name: auto-ml-classification-credit-card-fraud
22
dependencies:
33
- pip:
44
- azureml-sdk
5-
- interpret
6-
- azureml-defaults
7-
- azureml-explain-model
8-
- azureml-train-automl
9-
- azureml-widgets
10-
- matplotlib
11-
- pandas_ml

how-to-use-azureml/automated-machine-learning/classification-text-dnn/auto-ml-classification-text-dnn.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -519,12 +519,12 @@
519519
"name": "anshirga"
520520
}
521521
],
522-
"datasets": [
523-
"None"
524-
],
525522
"compute": [
526523
"AML Compute"
527524
],
525+
"datasets": [
526+
"None"
527+
],
528528
"deployment": [
529529
"None"
530530
],

how-to-use-azureml/automated-machine-learning/classification-text-dnn/auto-ml-classification-text-dnn.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,3 @@ name: auto-ml-classification-text-dnn
22
dependencies:
33
- pip:
44
- azureml-sdk
5-
- azureml-train-automl
6-
- azureml-train
7-
- azureml-widgets
8-
- matplotlib
9-
- pandas_ml
10-
- statsmodels

how-to-use-azureml/automated-machine-learning/continuous-retraining/auto-ml-continuous-retraining.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@
347347
"\n",
348348
"automl_settings = {\n",
349349
" \"iteration_timeout_minutes\": 10,\n",
350-
" \"experiment_timeout_minutes\": 10,\n",
350+
" \"experiment_timeout_hours\": 0.2,\n",
351351
" \"n_cross_validations\": 3,\n",
352352
" \"primary_metric\": 'r2_score',\n",
353353
" \"preprocess\": True,\n",
@@ -378,7 +378,7 @@
378378
"metrics_output_name = 'metrics_output'\n",
379379
"best_model_output_name = 'best_model_output'\n",
380380
"\n",
381-
"metirics_data = PipelineData(name='metrics_data',\n",
381+
"metrics_data = PipelineData(name='metrics_data',\n",
382382
" datastore=dstor,\n",
383383
" pipeline_output_name=metrics_output_name,\n",
384384
" training_output=TrainingOutput(type='Metrics'))\n",
@@ -397,7 +397,7 @@
397397
"automl_step = AutoMLStep(\n",
398398
" name='automl_module',\n",
399399
" automl_config=automl_config,\n",
400-
" outputs=[metirics_data, model_data],\n",
400+
" outputs=[metrics_data, model_data],\n",
401401
" allow_reuse=False)"
402402
]
403403
},

how-to-use-azureml/automated-machine-learning/continuous-retraining/auto-ml-continuous-retraining.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,3 @@ name: auto-ml-continuous-retraining
22
dependencies:
33
- pip:
44
- azureml-sdk
5-
- azureml-train-automl
6-
- azureml-pipeline
7-
- azureml-widgets
8-
- matplotlib
9-
- pandas_ml

how-to-use-azureml/automated-machine-learning/forecasting-beer-remote/auto-ml-forecasting-beer-remote.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@
358358
"\n",
359359
"automl_config = AutoMLConfig(task='forecasting', \n",
360360
" primary_metric='normalized_root_mean_squared_error',\n",
361-
" experiment_timeout_minutes = 60,\n",
361+
" experiment_timeout_hours = 1,\n",
362362
" training_data=train_dataset,\n",
363363
" label_column_name=target_column_name,\n",
364364
" validation_data=valid_dataset, \n",

0 commit comments

Comments
 (0)