{ "cells": [ { "cell_type": "markdown", "source": [ "# Cloud အတွင်း Data Science: \"Azure ML SDK\" နည်းလမ်း\n", "\n", "## အကျဉ်းချုပ်\n", "\n", "ဒီ notebook မှာ Azure ML SDK ကို သုံးပြီး Azure ML မှတဆင့် မော်ဒယ်တစ်ခုကို လေ့ကျင့်၊ တင်သွင်း၊ အသုံးပြုပုံကို လေ့လာသင်ယူပါမယ်။\n", "\n", "လိုအပ်ချက်များ:\n", "1. သင်သည် Azure ML workspace တစ်ခုကို ဖန်တီးပြီးဖြစ်ရမည်။\n", "2. သင်သည် [Heart Failure dataset](https://www.kaggle.com/andrewmvd/heart-failure-clinical-data) ကို Azure ML ထဲသို့ တင်ပြီးဖြစ်ရမည်။\n", "3. သင်သည် ဒီ notebook ကို Azure ML Studio ထဲသို့ တင်ထားပြီးဖြစ်ရမည်။\n", "\n", "နောက်ထပ် လုပ်ဆောင်ရမည့်အဆင့်များမှာ:\n", "\n", "1. ရှိပြီးသား Workspace အတွင်း Experiment တစ်ခု ဖန်တီးပါ။\n", "2. Compute cluster တစ်ခု ဖန်တီးပါ။\n", "3. Dataset ကို Load လုပ်ပါ။\n", "4. AutoMLConfig ကို အသုံးပြု၍ AutoML ကို Configure လုပ်ပါ။\n", "5. AutoML experiment ကို Run လုပ်ပါ။\n", "6. ရလဒ်များကို စူးစမ်းပြီး အကောင်းဆုံး မော်ဒယ်ကို ရယူပါ။\n", "7. အကောင်းဆုံး မော်ဒယ်ကို Register လုပ်ပါ။\n", "8. အကောင်းဆုံး မော်ဒယ်ကို Deploy လုပ်ပါ။\n", "9. Endpoint ကို အသုံးပြုပါ။\n", "\n", "## Azure Machine Learning SDK အတွက် သီးသန့် Import များ\n" ], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "from azureml.core import Workspace, Experiment\n", "from azureml.core.compute import AmlCompute\n", "from azureml.train.automl import AutoMLConfig\n", "from azureml.widgets import RunDetails\n", "from azureml.core.model import InferenceConfig, Model\n", "from azureml.core.webservice import AciWebservice" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [ "## အလုပ်ခွင် စတင်ခြင်း \n", "သိမ်းဆည်းထားသော configuration မှ အလုပ်ခွင် object ကို စတင်ပါ။ config ဖိုင်ကို .\\config.json တွင် ရှိနေကြောင်း သေချာပါ။ \n" ], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "ws = Workspace.from_config()\n", "print(ws.name, ws.resource_group, ws.location, ws.subscription_id, sep = '\\n')" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [ "## Azure ML စမ်းသပ်မှုတစ်ခု ဖန်တီးရန်\n", "\n", "ကျွန်တော်တို့ အခုမှ စတင်ပြင်ဆင်ထားတဲ့ workspace အတွင်း 'aml-experiment' ဟု အမည်ပေးထားသော စမ်းသပ်မှုတစ်ခု ဖန်တီးကြမယ်။\n" ], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "experiment_name = 'aml-experiment'\n", "experiment = Experiment(ws, experiment_name)\n", "experiment" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [ "## ကွန်ပျူတာကလပ်စတာတစ်ခု ဖန်တီးရန် \n", "သင့် AutoML အလုပ်လည်ပတ်မှုအတွက် [compute target](https://docs.microsoft.com/azure/machine-learning/concept-azure-machine-learning-architecture#compute-target) တစ်ခု ဖန်တီးရန် လိုအပ်ပါမည်။ \n" ], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "aml_name = \"heart-f-cluster\"\n", "try:\n", " aml_compute = AmlCompute(ws, aml_name)\n", " print('Found existing AML compute context.')\n", "except:\n", " print('Creating new AML compute context.')\n", " aml_config = AmlCompute.provisioning_configuration(vm_size = \"Standard_D2_v2\", min_nodes=1, max_nodes=3)\n", " aml_compute = AmlCompute.create(ws, name = aml_name, provisioning_configuration = aml_config)\n", " aml_compute.wait_for_completion(show_output = True)\n", "\n", "cts = ws.compute_targets\n", "compute_target = cts[aml_name]" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [ "## ဒေတာ \n", "သင့် dataset ကို Azure ML တွင် upload လုပ်ပြီးသားဖြစ်ကြောင်းနှင့် key သည် dataset နာမည်နှင့်တူညီကြောင်းသေချာပါ။ \n" ], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "key = 'heart-failure-records'\n", "dataset = ws.datasets[key]\n", "df = dataset.to_pandas_dataframe()\n", "df.describe()" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "automl_settings = {\n", " \"experiment_timeout_minutes\": 20,\n", " \"max_concurrent_iterations\": 3,\n", " \"primary_metric\" : 'AUC_weighted'\n", "}\n", "\n", "automl_config = AutoMLConfig(compute_target=compute_target,\n", " task = \"classification\",\n", " training_data=dataset,\n", " label_column_name=\"DEATH_EVENT\",\n", " enable_early_stopping= True,\n", " featurization= 'auto',\n", " debug_log = \"automl_errors.log\",\n", " **automl_settings\n", " )" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "remote_run = experiment.submit(automl_config)" ], "outputs": [], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "RunDetails(remote_run).show()" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "best_run, fitted_model = remote_run.get_output()" ], "outputs": [], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "best_run.get_properties()" ], "outputs": [], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "model_name = best_run.properties['model_name']\n", "script_file_name = 'inference/score.py'\n", "best_run.download_file('outputs/scoring_file_v_1_0_0.py', 'inference/score.py')\n", "description = \"aml heart failure project sdk\"\n", "model = best_run.register_model(model_name = model_name,\n", " description = description,\n", " tags = None)" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [ "## အကောင်းဆုံးမော်ဒယ်ကို တင်သွင်းပါ\n", "\n", "အောက်ပါကုဒ်ကို အကောင်းဆုံးမော်ဒယ်ကို တင်သွင်းရန် အလုပ်လှန်ပါ။ တင်သွင်းမှုအခြေအနေကို Azure ML ပေါ်တယ်တွင် ကြည့်ရှုနိုင်ပါသည်။ ဒီအဆင့်မှာ မိနစ်အနည်းငယ်ကြာနိုင်ပါသည်။\n" ], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "inference_config = InferenceConfig(entry_script=script_file_name, environment=best_run.get_environment())\n", "\n", "aciconfig = AciWebservice.deploy_configuration(cpu_cores = 1,\n", " memory_gb = 1,\n", " tags = {'type': \"automl-heart-failure-prediction\"},\n", " description = 'Sample service for AutoML Heart Failure Prediction')\n", "\n", "aci_service_name = 'automl-hf-sdk'\n", "aci_service = Model.deploy(ws, aci_service_name, [model], inference_config, aciconfig)\n", "aci_service.wait_for_deployment(True)\n", "print(aci_service.state)" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "source": [ "## Endpoint ကိုသုံးစွဲရန်\n", "အောက်ပါ input နမူနာတွင် input များကို ထည့်သွင်းနိုင်ပါသည်။\n" ], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "data = {\n", " \"data\":\n", " [\n", " {\n", " 'age': \"60\",\n", " 'anaemia': \"false\",\n", " 'creatinine_phosphokinase': \"500\",\n", " 'diabetes': \"false\",\n", " 'ejection_fraction': \"38\",\n", " 'high_blood_pressure': \"false\",\n", " 'platelets': \"260000\",\n", " 'serum_creatinine': \"1.40\",\n", " 'serum_sodium': \"137\",\n", " 'sex': \"false\",\n", " 'smoking': \"false\",\n", " 'time': \"130\",\n", " },\n", " ],\n", "}\n", "\n", "test_sample = str.encode(json.dumps(data))" ], "outputs": [], "metadata": {} }, { "cell_type": "code", "execution_count": null, "source": [ "response = aci_service.run(input_data=test_sample)\n", "response" ], "outputs": [], "metadata": {} }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n---\n\n**ဝက်ဘ်ဆိုက်မှတ်ချက်**: \nဤစာရွက်စာတမ်းကို AI ဘာသာပြန်ဝန်ဆောင်မှု [Co-op Translator](https://github.com/Azure/co-op-translator) ကို အသုံးပြု၍ ဘာသာပြန်ထားပါသည်။ ကျွန်ုပ်တို့သည် တိကျမှန်ကန်မှုအတွက် ကြိုးစားနေပါသော်လည်း၊ အလိုအလျောက်ဘာသာပြန်ဆိုမှုများတွင် အမှားများ သို့မဟုတ် မတိကျမှုများ ပါဝင်နိုင်သည်ကို ကျေးဇူးပြု၍ သိရှိပါ။ မူရင်းစာရွက်စာတမ်းကို ၎င်း၏ မူလဘာသာစကားဖြင့် အာဏာတည်သောရင်းမြစ်အဖြစ် သတ်မှတ်သင့်ပါသည်။ အရေးကြီးသော အချက်အလက်များအတွက် လူပညာရှင်များမှ ဘာသာပြန်ဆိုမှုကို အကြံပြုပါသည်။ ဤဘာသာပြန်ကို အသုံးပြုခြင်းမှ ဖြစ်ပေါ်လာသော နားလည်မှုမှားမှုများ သို့မဟုတ် အဓိပ္ပာယ်မှားမှုများအတွက် ကျွန်ုပ်တို့သည် တာဝန်မယူပါ။\n" ] } ], "metadata": { "orig_nbformat": 4, "language_info": { "name": "python" }, "coopTranslator": { "original_hash": "af42669556d5dc19fc4cc3866f7d2597", "translation_date": "2025-09-02T05:37:15+00:00", "source_file": "5-Data-Science-In-Cloud/19-Azure/notebook.ipynb", "language_code": "my" } }, "nbformat": 4, "nbformat_minor": 2 }