You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-studio/how-to/create-projects.md
+20-17Lines changed: 20 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.custom:
8
8
- ignite-2023
9
9
- build-2024
10
10
ms.topic: how-to
11
-
ms.date: 5/21/2024
11
+
ms.date: 10/01/2024
12
12
ms.reviewer: deeikele
13
13
ms.author: sgilley
14
14
author: sdgilley
@@ -21,6 +21,11 @@ This article describes how to create an Azure AI Studio project. A project is us
21
21
22
22
Projects are hosted by an Azure AI Studio hub that provides enterprise-grade security and a collaborative environment. For more information about the projects and resources model, see [Azure AI Studio hubs](../concepts/ai-resources.md).
23
23
24
+
## Prerequisites
25
+
26
+
- An Azure subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/).
27
+
- An Azure AI Studio hub. If you don't have a hub, see [How to create and manage an Azure AI Studio hub](create-azure-ai-resource.md).
28
+
24
29
## Create a project
25
30
26
31
Use the following tabs to select the method you plan to use to create a project:
@@ -37,18 +42,17 @@ Use the following tabs to select the method you plan to use to create a project:
37
42
38
43
```Python
39
44
from azure.ai.ml.entities import Project
40
-
45
+
41
46
my_project_name ="myexampleproject"
42
-
my_location ="East US"
43
47
my_display_name ="My Example Project"
44
-
hub_id=""# Azure resource manager ID of the hub
45
-
46
-
my_project = Project(name=my_hub_name,
47
-
location=my_location,
48
+
hub_name="myhubname"# Azure resource manager ID of the hub
@@ -105,27 +109,26 @@ az ml workspace show --name {my_project_name} --resource-group {my_resource_grou
105
109
106
110
---
107
111
108
-
## Project resource access
112
+
## Access project resources
109
113
110
114
Common configurations on the hub are shared with your project, including connections, compute instances, and network access, so you can start developing right away.
111
115
112
116
In addition, a number of resources are only accessible by users in your project workspace:
113
117
114
118
1. Components including datasets, flows, indexes, deployed model API endpoints (open and serverless).
115
-
1. Connections created by you under 'project settings'.
119
+
1. Connections created by you under 'project settings.'
116
120
1. Azure Storage blob containers, and a fileshare for data upload within your project. Access storage using the following connections:
117
121
118
122
| Data connection | Storage location | Purpose |
119
123
| --- | --- | --- |
120
-
| workspaceblobstore | {project-GUID}-azureml-blobstore | Default container for data upload|
124
+
| workspaceblobstore | {project-GUID}-azureml-blobstore | Default container for data uploads|
121
125
| workspaceartifactstore | {project-GUID}-azureml | Stores components and metadata for your project such as model weights |
122
126
| workspacefilestore | {project-GUID}-code | Hosts files created on your compute and using prompt flow |
123
127
124
128
> [!NOTE]
125
129
> Storage connections are not created directly with the project when your storage account has public network access set to disabled. These are created instead when a first user accesses AI Studio over a private network connection. [Troubleshoot storage connections](troubleshoot-secure-connection-project.md#troubleshoot-missing-storage-connections)
126
130
127
-
128
-
## Next steps
131
+
## Related content
129
132
130
133
-[Deploy an enterprise chat web app](../tutorials/deploy-chat-web-app.md)
131
134
-[Learn more about Azure AI Studio](../what-is-ai-studio.md)
0 commit comments