|
| 1 | +{ |
| 2 | + "cells": [ |
| 3 | + { |
| 4 | + "cell_type": "markdown", |
| 5 | + "metadata": {}, |
| 6 | + "source": [ |
| 7 | + "# Azure AI Safety Multi-modal Evaluations\n", |
| 8 | + "\n", |
| 9 | + "## Objective\n", |
| 10 | + "\n", |
| 11 | + "This tutorial demonstrates the evaluation of quality and safety evaluations for following multi-modal (text + images) scenarios.\n", |
| 12 | + "\n", |
| 13 | + "This tutorial uses the following Azure AI services:\n", |
| 14 | + "\n", |
| 15 | + "- [Azure AI Safety Evaluation](https://aka.ms/azureaistudiosafetyeval)\n", |
| 16 | + "- [azure-ai-evaluation](https://learn.microsoft.com/en-us/azure/ai-studio/how-to/develop/evaluate-sdk)\n", |
| 17 | + "\n", |
| 18 | + "## Time\n", |
| 19 | + "\n", |
| 20 | + "You should expect to spend 15 minutes running this sample. \n", |
| 21 | + "\n", |
| 22 | + "## About this example\n", |
| 23 | + "\n", |
| 24 | + "This example demonstrates running quality and safety evaluation on multi-modal (text + image) datasets. \n", |
| 25 | + "\n", |
| 26 | + "## Before you begin\n", |
| 27 | + "\n", |
| 28 | + "### Prerequesite\n", |
| 29 | + "Have an azure ai project in regions that support the harmful evaluation. More information [here](https://learn.microsoft.com/en-us/azure/ai-studio/how-to/develop/evaluate-sdk#region-support)\n", |
| 30 | + "\n", |
| 31 | + "\n", |
| 32 | + "Install the following packages required to execute this notebook. " |
| 33 | + ] |
| 34 | + }, |
| 35 | + { |
| 36 | + "cell_type": "code", |
| 37 | + "execution_count": null, |
| 38 | + "metadata": {}, |
| 39 | + "outputs": [], |
| 40 | + "source": [ |
| 41 | + "%pip install azure-ai-evaluation --upgrade" |
| 42 | + ] |
| 43 | + }, |
| 44 | + { |
| 45 | + "cell_type": "markdown", |
| 46 | + "metadata": {}, |
| 47 | + "source": [ |
| 48 | + "### Parameters and imports" |
| 49 | + ] |
| 50 | + }, |
| 51 | + { |
| 52 | + "cell_type": "code", |
| 53 | + "execution_count": null, |
| 54 | + "metadata": {}, |
| 55 | + "outputs": [], |
| 56 | + "source": [ |
| 57 | + "from pprint import pprint\n", |
| 58 | + "from azure.ai.evaluation import ViolenceEvaluator, SexualEvaluator, SelfHarmEvaluator, HateUnfairnessEvaluator" |
| 59 | + ] |
| 60 | + }, |
| 61 | + { |
| 62 | + "cell_type": "markdown", |
| 63 | + "metadata": {}, |
| 64 | + "source": [ |
| 65 | + "#### Project settings\n", |
| 66 | + "\n", |
| 67 | + "Make sure you fill these values accurately" |
| 68 | + ] |
| 69 | + }, |
| 70 | + { |
| 71 | + "cell_type": "code", |
| 72 | + "execution_count": null, |
| 73 | + "metadata": {}, |
| 74 | + "outputs": [], |
| 75 | + "source": [ |
| 76 | + "import os\n", |
| 77 | + "\n", |
| 78 | + "os.environ[\"AZURE_SUBSCRIPTION_ID\"] = \"\"\n", |
| 79 | + "os.environ[\"AZURE_RESOURCE_GROUP\"] = \"\"\n", |
| 80 | + "os.environ[\"AZURE_PROJECT_NAME\"] = \"\"" |
| 81 | + ] |
| 82 | + }, |
| 83 | + { |
| 84 | + "cell_type": "code", |
| 85 | + "execution_count": null, |
| 86 | + "metadata": {}, |
| 87 | + "outputs": [], |
| 88 | + "source": [ |
| 89 | + "from azure.identity import DefaultAzureCredential\n", |
| 90 | + "\n", |
| 91 | + "project_scope = {\n", |
| 92 | + " \"subscription_id\": os.environ.get(\"AZURE_SUBSCRIPTION_ID\"),\n", |
| 93 | + " \"resource_group_name\": os.environ.get(\"AZURE_RESOURCE_GROUP\"),\n", |
| 94 | + " \"project_name\": os.environ.get(\"AZURE_PROJECT_NAME\"),\n", |
| 95 | + "}" |
| 96 | + ] |
| 97 | + }, |
| 98 | + { |
| 99 | + "cell_type": "markdown", |
| 100 | + "metadata": {}, |
| 101 | + "source": [ |
| 102 | + "### 1. Multi-modal Content Safety Evaluator" |
| 103 | + ] |
| 104 | + }, |
| 105 | + { |
| 106 | + "cell_type": "code", |
| 107 | + "execution_count": null, |
| 108 | + "metadata": {}, |
| 109 | + "outputs": [], |
| 110 | + "source": [ |
| 111 | + "violence_evaluator = ViolenceEvaluator(credential=DefaultAzureCredential(), azure_ai_project=project_scope)\n", |
| 112 | + "sexual_evaluator = SexualEvaluator(credential=DefaultAzureCredential(), azure_ai_project=project_scope)\n", |
| 113 | + "self_harm_evaluator = SelfHarmEvaluator(credential=DefaultAzureCredential(), azure_ai_project=project_scope)\n", |
| 114 | + "hate_unfair_evaluator = HateUnfairnessEvaluator(credential=DefaultAzureCredential(), azure_ai_project=project_scope)\n", |
| 115 | + "\n", |
| 116 | + "conversation = {\n", |
| 117 | + " \"messages\": [\n", |
| 118 | + " {\n", |
| 119 | + " \"role\": \"system\",\n", |
| 120 | + " \"content\": [{\"type\": \"text\", \"text\": \"You are an AI Assistant that can describe images\"}],\n", |
| 121 | + " },\n", |
| 122 | + " {\n", |
| 123 | + " \"role\": \"user\",\n", |
| 124 | + " \"content\": [\n", |
| 125 | + " {\"type\": \"text\", \"text\": \"Can you describe this image?\"},\n", |
| 126 | + " {\n", |
| 127 | + " \"type\": \"image_url\",\n", |
| 128 | + " \"image_url\": {\"url\": \"https://cdn.britannica.com/68/178268-050-5B4E7FB6/Tom-Cruise-2013.jpg\"},\n", |
| 129 | + " },\n", |
| 130 | + " ],\n", |
| 131 | + " },\n", |
| 132 | + " {\n", |
| 133 | + " \"role\": \"assistant\",\n", |
| 134 | + " \"content\": [\n", |
| 135 | + " {\n", |
| 136 | + " \"type\": \"text\",\n", |
| 137 | + " \"text\": \"The image shows a man with short brown hair smiling, wearing a dark-colored shirt.\",\n", |
| 138 | + " }\n", |
| 139 | + " ],\n", |
| 140 | + " },\n", |
| 141 | + " ]\n", |
| 142 | + "}\n", |
| 143 | + "\n", |
| 144 | + "result = violence_evaluator(conversation=conversation)\n", |
| 145 | + "pprint(result)\n", |
| 146 | + "result = sexual_evaluator(conversation=conversation)\n", |
| 147 | + "pprint(result)\n", |
| 148 | + "result = self_harm_evaluator(conversation=conversation)\n", |
| 149 | + "pprint(result)\n", |
| 150 | + "result = hate_unfair_evaluator(conversation=conversation)\n", |
| 151 | + "pprint(result)" |
| 152 | + ] |
| 153 | + }, |
| 154 | + { |
| 155 | + "cell_type": "markdown", |
| 156 | + "metadata": {}, |
| 157 | + "source": [ |
| 158 | + "### 2. Content Safety Evaluator supports multi-modal images + text\n", |
| 159 | + "Following code can run all the above individual safety evaluator together in one composite evaluator called Content Safety Evaluator." |
| 160 | + ] |
| 161 | + }, |
| 162 | + { |
| 163 | + "cell_type": "code", |
| 164 | + "execution_count": null, |
| 165 | + "metadata": {}, |
| 166 | + "outputs": [], |
| 167 | + "source": [ |
| 168 | + "from pprint import pprint\n", |
| 169 | + "from azure.ai.evaluation import ContentSafetyEvaluator\n", |
| 170 | + "\n", |
| 171 | + "evaluator = ContentSafetyEvaluator(credential=DefaultAzureCredential(), azure_ai_project=project_scope)\n", |
| 172 | + "result = evaluator(conversation=conversation)\n", |
| 173 | + "pprint(result)" |
| 174 | + ] |
| 175 | + }, |
| 176 | + { |
| 177 | + "cell_type": "markdown", |
| 178 | + "metadata": {}, |
| 179 | + "source": [ |
| 180 | + "### 3. Protected Material Evaluator supports multi-modal images + text" |
| 181 | + ] |
| 182 | + }, |
| 183 | + { |
| 184 | + "cell_type": "code", |
| 185 | + "execution_count": null, |
| 186 | + "metadata": {}, |
| 187 | + "outputs": [], |
| 188 | + "source": [ |
| 189 | + "from pprint import pprint\n", |
| 190 | + "from azure.ai.evaluation import ProtectedMaterialEvaluator\n", |
| 191 | + "\n", |
| 192 | + "evaluator = ProtectedMaterialEvaluator(credential=DefaultAzureCredential(), azure_ai_project=project_scope)\n", |
| 193 | + "result = evaluator(conversation=conversation)\n", |
| 194 | + "pprint(result)" |
| 195 | + ] |
| 196 | + }, |
| 197 | + { |
| 198 | + "cell_type": "markdown", |
| 199 | + "metadata": {}, |
| 200 | + "source": [ |
| 201 | + "### 4. Using Evaluate API" |
| 202 | + ] |
| 203 | + }, |
| 204 | + { |
| 205 | + "cell_type": "code", |
| 206 | + "execution_count": null, |
| 207 | + "metadata": {}, |
| 208 | + "outputs": [], |
| 209 | + "source": [ |
| 210 | + "import pathlib\n", |
| 211 | + "\n", |
| 212 | + "\n", |
| 213 | + "file_path = pathlib.Path(\"data.jsonl\")\n", |
| 214 | + "\n", |
| 215 | + "from azure.ai.evaluation import evaluate\n", |
| 216 | + "\n", |
| 217 | + "content_safety_eval = ContentSafetyEvaluator(azure_ai_project=project_scope, credential=DefaultAzureCredential())\n", |
| 218 | + "\n", |
| 219 | + "result = evaluate(\n", |
| 220 | + " data=file_path,\n", |
| 221 | + " azure_ai_project=project_scope,\n", |
| 222 | + " evaluators={\"content_safety\": content_safety_eval},\n", |
| 223 | + ")\n", |
| 224 | + "pprint(result)" |
| 225 | + ] |
| 226 | + }, |
| 227 | + { |
| 228 | + "cell_type": "markdown", |
| 229 | + "metadata": {}, |
| 230 | + "source": [ |
| 231 | + "### 5. base 64 encoded images\n", |
| 232 | + "Here's how a conversation looks like when you want to run evaluations on an image with b64 encoding" |
| 233 | + ] |
| 234 | + }, |
| 235 | + { |
| 236 | + "cell_type": "code", |
| 237 | + "execution_count": null, |
| 238 | + "metadata": {}, |
| 239 | + "outputs": [], |
| 240 | + "source": [ |
| 241 | + "from pathlib import Path\n", |
| 242 | + "import base64\n", |
| 243 | + "\n", |
| 244 | + "base64_image = \"\"\n", |
| 245 | + "\n", |
| 246 | + "with Path.open(\"Image1.jpg\", \"rb\") as image_file:\n", |
| 247 | + " base64_image = base64.b64encode(image_file.read()).decode(\"utf-8\")\n", |
| 248 | + "\n", |
| 249 | + "conversation = {\n", |
| 250 | + " \"messages\": [\n", |
| 251 | + " {\"content\": \"create an image of a branded apple\", \"role\": \"user\"},\n", |
| 252 | + " {\n", |
| 253 | + " \"content\": [{\"type\": \"image_url\", \"image_url\": {\"url\": f\"data:image/jpg;base64,{base64_image}\"}}],\n", |
| 254 | + " \"role\": \"assistant\",\n", |
| 255 | + " },\n", |
| 256 | + " ]\n", |
| 257 | + "}\n", |
| 258 | + "result = evaluator(conversation=conversation)\n", |
| 259 | + "pprint(result)" |
| 260 | + ] |
| 261 | + } |
| 262 | + ], |
| 263 | + "metadata": { |
| 264 | + "kernelspec": { |
| 265 | + "display_name": ".env", |
| 266 | + "language": "python", |
| 267 | + "name": "python3" |
| 268 | + }, |
| 269 | + "language_info": { |
| 270 | + "codemirror_mode": { |
| 271 | + "name": "ipython", |
| 272 | + "version": 3 |
| 273 | + }, |
| 274 | + "file_extension": ".py", |
| 275 | + "mimetype": "text/x-python", |
| 276 | + "name": "python", |
| 277 | + "nbconvert_exporter": "python", |
| 278 | + "pygments_lexer": "ipython3" |
| 279 | + } |
| 280 | + }, |
| 281 | + "nbformat": 4, |
| 282 | + "nbformat_minor": 4 |
| 283 | +} |
0 commit comments