-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14aafbf
commit cebae2c
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,9 +39,9 @@ | |
"outputs": [], | ||
"source": [ | ||
"# Parameters (make sure these are correct)\n", | ||
"subscr_id = \"2be2dbbb-7c00-4b84-8fba-4b0199750c01\" \n", | ||
"resc_name = \"marterkist5\"\n", | ||
"worksp_name = \"detectron2-workspace\"\n", | ||
"subscr_id = \"\" \n", | ||
"resc_name = \"\"\n", | ||
"worksp_name = \"\"\n", | ||
"\n", | ||
"# Get a handle to the workspace\n", | ||
"ml_client = MLClient(\n", | ||
|
@@ -88,11 +88,11 @@ | |
"\n", | ||
"from azure.ai.ml.entities import AmlCompute\n", | ||
"\n", | ||
"cpu_compute_target = \"cpu-cluster32GB\"\n", | ||
"cpu_size = \"STANDARD_E4S_V3\"\n", | ||
"cpu_compute_target = \"\"\n", | ||
"cpu_size = \"\"\n", | ||
"\n", | ||
"gpu_compute_target = \"gpu-cluster110GB\"\n", | ||
"gpu_size = \"STANDARD_NC16AS_T4_V3\"\n", | ||
"gpu_compute_target = \"\"\n", | ||
"gpu_size = \"\"\n", | ||
"\n", | ||
"def create_compute(target, size):\n", | ||
" try:\n", | ||
|
@@ -189,10 +189,10 @@ | |
"import os\n", | ||
"\n", | ||
"# Load from local (test)\n", | ||
"data_path = r\"C:/Users/augus/Documents/Studie/MGI/Internship/detection-segmentation/Data/Ready/test\" #/YOLO\"\n", | ||
"data_path = r\"\" #/YOLO\"\n", | ||
"\n", | ||
"# Load from Azure container\n", | ||
"data_path = r\"wasbs://[email protected]/Ready/5m/0bg\"\n", | ||
"data_path = r\"\"\n", | ||
"\n", | ||
"# Load from data asset \n", | ||
"# train_data_asset = ml_client.data.get(\"test_dataasset\", version=\"1\")\n", | ||
|