Skip to content

Commit e103b51

Browse files
authored
Merge pull request MicrosoftDocs#85857 from RSavage2/patch-3
Update-how-to-train-remote
2 parents df3cb1d + ea594bc commit e103b51

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

articles/machine-learning/service/how-to-auto-train-remote.md

+4
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,14 @@ If you do wish to manually set the column types, you can set the `set_column_typ
7171

7272
```python
7373
# Create a project_folder if it doesn't exist
74+
if not os.path.isdir('data'):
75+
os.mkdir('data')
76+
7477
if not os.path.exists(project_folder):
7578
os.makedirs(project_folder)
7679

7780
from sklearn import datasets
81+
from azureml.core.dataset import Dataset
7882
from scipy import sparse
7983
import numpy as np
8084
import pandas as pd

0 commit comments

Comments
 (0)