Skip to content

Commit 3cc99e2

Browse files
authored
working on step 3 - prepare data
1 parent a795d51 commit 3cc99e2

1 file changed

Lines changed: 30 additions & 9 deletions

File tree

azML-modelcreation/README.md

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Last updated: 2025-04-29
99

1010
------------------------------------------
1111

12+
1213
<details>
1314
<summary><b>List of References </b> (Click to expand)</summary>
1415

@@ -19,8 +20,6 @@ Last updated: 2025-04-29
1920

2021
</details>
2122

22-
> Azure ML is a cloud-based platform that provides tools for building, training, and deploying ML models at scale.
23-
2423
## Step 1: Set Up Your Azure ML Workspace
2524

2625
> You can use the azure portal approach:
@@ -36,17 +35,39 @@ https://github.com/user-attachments/assets/c199156f-96cf-4ed0-a8b5-c88db3e7a552
3635

3736
> Or using terraform configurations for setting up an Azure Machine Learning workspace along with compute clusters and supportive resources to form the core of an ML platform, click here to see [Demonstration: Deploying Azure Resources for an ML Platform](./infrastructure/azMachineLearning/README.md)
3837
39-
### **2. Create a Compute Instance**
40-
- In Azure ML Studio, go to **Compute > Compute Instances**.
41-
- Create a new instance (choose CPU or GPU depending on your needs).
42-
- This will be your development environment (like a cloud-based Jupyter notebook).
38+
## Step 2: Create a Compute Instance
4339

44-
---
40+
1. **Go to [Azure Machine Learning Studio](https://ml.azure.com/)** and select your workspace.
41+
2. **Select `Compute` from the left menu** Choose the **`Compute instances`** tab.
42+
3. **Click `New`**
43+
- Enter a name for your compute instance.
44+
- Choose a virtual machine size (e.g., `Standard_DS3_v2`).
45+
- Optionally, enable SSH access or assign a user.
46+
4. **Click `Create`**: Azure will provision the compute instance, which may take a few minutes.
47+
48+
https://github.com/user-attachments/assets/bd5f3ce6-7082-4741-8827-8b344cd249a4
49+
50+
## Step 3: Prepare Your Data
4551

46-
### **3. Prepare Your Data**
47-
- Upload your dataset to **Azure ML datastore** or connect to external sources (e.g., Azure Blob Storage, SQL, etc.).
52+
- Upload your dataset to **Azure ML datastore** or connect to exrnal sources (e.g., Azure Blob Storage, SQL, etc.).
4853
- Use **Data > Datasets** to register and version your dataset.
4954

55+
> For example: Upload the CSV to Azure ML
56+
57+
1. Under to **Data > + Create > From local files**.
58+
2. Choose:
59+
- **Name**: `employee_data`
60+
- **Type**: Tabular
61+
- **Browse** and upload the `sample_data.csv` file.
62+
3. Click **Next**, then **Review + Create**.
63+
64+
> Register the Dataset:
65+
66+
1. After upload, Azure will preview the data.
67+
2. Confirm the schema (column names and types).
68+
3. Click **Create** to register the dataset.
69+
70+
5071
---
5172

5273
### **4. Create a New Notebook or Script**

0 commit comments

Comments
 (0)