Personalizer Client v1.1-preview.1

Personalizer Service is an Azure Cognitive Service that makes it easy to target content and experiences without complex pre-analysis or cleanup of past data. Given a context and featurized content, the Personalizer Service returns which content item to show to users in rewardActionId. As rewards are sent in response to the use of rewardActionId, the reinforcement learning algorithm will improve the model and improve performance of future rank calls.

Get Evaluation.

Get the Offline Evaluation associated with the Id.

Select the testing console in the region where you created your resource:

Open API testing console

Request URL

Request parameters

string

Id of the Offline Evaluation.

Request headers

string
Subscription key which provides access to this API. Found in your Cognitive Services accounts.

Request body

Response 200

Success

{
  "id": "b58c6d92-b727-48c1-9487-4be2782c9e0a",
  "name": "myFirstEvaluation",
  "startTime": "2018-12-19T00:00:00Z",
  "endTime": "2019-01-19T00:00:00Z",
  "status": "completed",
  "policyResults": [
    {
      "name": "Custom learning settings 1",
      "arguments": "--cb_explore_adf --epsilon 0.2 --dsjson --cb_type ips -l 0.5 --l1 1E-07 --power_t 0.5",
      "policySource": "Custom",
      "summary": [
        {
          "timeStamp": "2018-12-19T00:00:00Z",
          "ipsEstimatorNumerator": 0,
          "ipsEstimatorDenominator": 170,
          "snipsEstimatorDenominator": 308.25,
          "aggregateTimeWindow": "PT0S",
          "nonZeroProbability": 64,
          "sumOfSquares": 0,
          "confidenceInterval": 0,
          "averageReward": 0
        },
        {
          "timeStamp": "2018-12-19T00:05:00Z",
          "ipsEstimatorNumerator": 2.2,
          "ipsEstimatorDenominator": 196,
          "snipsEstimatorDenominator": 193.761,
          "aggregateTimeWindow": "PT0S",
          "nonZeroProbability": 68,
          "sumOfSquares": 2.424,
          "confidenceInterval": 0.015529361,
          "averageReward": 0.01122449
        }
      ],
      "totalSummary": {
        "timeStamp": "2019-01-19T00:00:00Z",
        "ipsEstimatorNumerator": 22.2,
        "ipsEstimatorDenominator": 1906,
        "snipsEstimatorDenominator": 1993.761,
        "aggregateTimeWindow": "PT0S",
        "nonZeroProbability": 68,
        "sumOfSquares": 2.484,
        "confidenceInterval": 0.0015344538,
        "averageReward": 0.011647429
      }
    }
  ],
  "featureImportance": [
    [
      "f1",
      "f2"
    ],
    [
      "f3",
      "f4"
    ]
  ],
  "evaluationType": "Manual",
  "optimalPolicy": "Custom learning settings 1",
  "creationTime": "2019-01-20T00:00:00Z"
}
{
  "description": "A counterfactual evaluation.",
  "type": "object",
  "properties": {
    "id": {
      "description": "The ID of the evaluation.",
      "maxLength": 256,
      "type": "string",
      "readOnly": true
    },
    "name": {
      "description": "The name of the evaluation.",
      "maxLength": 256,
      "type": "string",
      "readOnly": true
    },
    "startTime": {
      "format": "date-time",
      "description": "The start time of the evaluation.",
      "type": "string",
      "readOnly": true
    },
    "endTime": {
      "format": "date-time",
      "description": "The end time of the evaluation.",
      "type": "string",
      "readOnly": true
    },
    "jobId": {
      "description": "The ID of the job processing the evaluation.",
      "type": "string",
      "readOnly": true
    },
    "status": {
      "description": "The status of the job processing the evaluation.",
      "enum": [
        "completed",
        "pending",
        "failed",
        "notSubmitted",
        "timeout",
        "optimalPolicyApplied",
        "onlinePolicyRetained"
      ],
      "type": "string",
      "readOnly": true,
      "x-ms-enum": {
        "name": "EvaluationJobStatus",
        "modelAsString": true
      }
    },
    "policyResults": {
      "description": "The results of the evaluation.",
      "type": "array",
      "items": {
        "description": "This class contains the Learning Settings information and the results of the Offline Evaluation using that policy.",
        "type": "object",
        "properties": {
          "name": {
            "description": "The name of the Learning Settings.",
            "type": "string",
            "readOnly": true
          },
          "arguments": {
            "description": "The arguments of the Learning Settings.",
            "type": "string",
            "readOnly": true
          },
          "policySource": {
            "description": "The source of the Learning Settings.",
            "enum": [
              "Online",
              "Baseline",
              "Random",
              "Custom",
              "OfflineExperimentation"
            ],
            "type": "string",
            "readOnly": true,
            "x-ms-enum": {
              "name": "PolicySource",
              "modelAsString": true
            }
          },
          "summary": {
            "description": "The aggregate results of the Offline Evaluation.",
            "type": "array",
            "items": {
              "description": "This class contains the summary of evaluating a policy on a counterfactual evaluation.",
              "type": "object",
              "properties": {
                "timeStamp": {
                  "format": "date-time",
                  "description": "Timestamp of the aggregation.",
                  "type": "string",
                  "readOnly": true
                },
                "ipsEstimatorNumerator": {
                  "format": "float",
                  "description": "Numerator for IPS estimator.",
                  "type": "number",
                  "readOnly": true
                },
                "ipsEstimatorDenominator": {
                  "format": "float",
                  "description": "Denominator for IPS estimator.",
                  "type": "number",
                  "readOnly": true
                },
                "snipsEstimatorDenominator": {
                  "format": "float",
                  "description": "Denominator for SNIPS estimator.",
                  "type": "number",
                  "readOnly": true
                },
                "aggregateTimeWindow": {
                  "format": "duration",
                  "description": "Time window for aggregation.\r\nFor example, PT5M (5 mins). For information about the time format,\r\nsee http://en.wikipedia.org/wiki/ISO_8601#Durations",
                  "type": "string",
                  "readOnly": true
                },
                "nonZeroProbability": {
                  "format": "float",
                  "description": "Probability of non-zero values for the Policy evaluation.",
                  "type": "number",
                  "readOnly": true
                },
                "sumOfSquares": {
                  "format": "float",
                  "description": "Sum of Squares for the Policy evaluation results.",
                  "type": "number",
                  "readOnly": true
                },
                "confidenceInterval": {
                  "format": "float",
                  "description": "Gaussian confidence interval for the Policy evaluation.",
                  "type": "number",
                  "readOnly": true
                },
                "averageReward": {
                  "format": "float",
                  "description": "Average reward.",
                  "type": "number",
                  "readOnly": true
                }
              }
            },
            "readOnly": true
          },
          "totalSummary": {
            "allOf": [
              {
                "description": "This class contains the summary of evaluating a policy on a counterfactual evaluation.",
                "type": "object",
                "properties": {
                  "timeStamp": {
                    "format": "date-time",
                    "description": "Timestamp of the aggregation.",
                    "type": "string",
                    "readOnly": true
                  },
                  "ipsEstimatorNumerator": {
                    "format": "float",
                    "description": "Numerator for IPS estimator.",
                    "type": "number",
                    "readOnly": true
                  },
                  "ipsEstimatorDenominator": {
                    "format": "float",
                    "description": "Denominator for IPS estimator.",
                    "type": "number",
                    "readOnly": true
                  },
                  "snipsEstimatorDenominator": {
                    "format": "float",
                    "description": "Denominator for SNIPS estimator.",
                    "type": "number",
                    "readOnly": true
                  },
                  "aggregateTimeWindow": {
                    "format": "duration",
                    "description": "Time window for aggregation.\r\nFor example, PT5M (5 mins). For information about the time format,\r\nsee http://en.wikipedia.org/wiki/ISO_8601#Durations",
                    "type": "string",
                    "readOnly": true
                  },
                  "nonZeroProbability": {
                    "format": "float",
                    "description": "Probability of non-zero values for the Policy evaluation.",
                    "type": "number",
                    "readOnly": true
                  },
                  "sumOfSquares": {
                    "format": "float",
                    "description": "Sum of Squares for the Policy evaluation results.",
                    "type": "number",
                    "readOnly": true
                  },
                  "confidenceInterval": {
                    "format": "float",
                    "description": "Gaussian confidence interval for the Policy evaluation.",
                    "type": "number",
                    "readOnly": true
                  },
                  "averageReward": {
                    "format": "float",
                    "description": "Average reward.",
                    "type": "number",
                    "readOnly": true
                  }
                }
              }
            ],
            "readOnly": true
          }
        }
      }
    },
    "featureImportance": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    },
    "evaluationType": {
      "enum": [
        "Manual",
        "Auto"
      ],
      "type": "string",
      "x-ms-enum": {
        "name": "EvaluationType",
        "modelAsString": true
      }
    },
    "optimalPolicy": {
      "type": "string"
    },
    "creationTime": {
      "format": "date-time",
      "type": "string"
    }
  }
}

Response 404

Offline Evaluation not found.

Code samples

@ECHO OFF

curl -v -X GET "https://*.cognitiveservices.azure.com/personalizer/v1.1-preview.1/evaluations/{evaluationId}"
-H "Ocp-Apim-Subscription-Key: {subscription key}"

--data-ascii "{body}" 
using System;
using System.Net.Http.Headers;
using System.Text;
using System.Net.Http;
using System.Web;

namespace CSHttpClientSample
{
    static class Program
    {
        static void Main()
        {
            MakeRequest();
            Console.WriteLine("Hit ENTER to exit...");
            Console.ReadLine();
        }
        
        static async void MakeRequest()
        {
            var client = new HttpClient();
            var queryString = HttpUtility.ParseQueryString(string.Empty);

            // Request headers
            client.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", "{subscription key}");

            var uri = "https://*.cognitiveservices.azure.com/personalizer/v1.1-preview.1/evaluations/{evaluationId}?" + queryString;

            var response = await client.GetAsync(uri);
        }
    }
}	
// // This sample uses the Apache HTTP client from HTTP Components (http://hc.apache.org/httpcomponents-client-ga/)
import java.net.URI;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

public class JavaSample 
{
    public static void main(String[] args) 
    {
        HttpClient httpclient = HttpClients.createDefault();

        try
        {
            URIBuilder builder = new URIBuilder("https://*.cognitiveservices.azure.com/personalizer/v1.1-preview.1/evaluations/{evaluationId}");


            URI uri = builder.build();
            HttpGet request = new HttpGet(uri);
            request.setHeader("Ocp-Apim-Subscription-Key", "{subscription key}");


            // Request body
            StringEntity reqEntity = new StringEntity("{body}");
            request.setEntity(reqEntity);

            HttpResponse response = httpclient.execute(request);
            HttpEntity entity = response.getEntity();

            if (entity != null) 
            {
                System.out.println(EntityUtils.toString(entity));
            }
        }
        catch (Exception e)
        {
            System.out.println(e.getMessage());
        }
    }
}

<!DOCTYPE html>
<html>
<head>
    <title>JSSample</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>

<script type="text/javascript">
    $(function() {
        var params = {
            // Request parameters
        };
      
        $.ajax({
            url: "https://*.cognitiveservices.azure.com/personalizer/v1.1-preview.1/evaluations/{evaluationId}?" + $.param(params),
            beforeSend: function(xhrObj){
                // Request headers
                xhrObj.setRequestHeader("Ocp-Apim-Subscription-Key","{subscription key}");
            },
            type: "GET",
            // Request body
            data: "{body}",
        })
        .done(function(data) {
            alert("success");
        })
        .fail(function() {
            alert("error");
        });
    });
</script>
</body>
</html>
#import <Foundation/Foundation.h>

int main(int argc, const char * argv[])
{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    
    NSString* path = @"https://*.cognitiveservices.azure.com/personalizer/v1.1-preview.1/evaluations/{evaluationId}";
    NSArray* array = @[
                         // Request parameters
                         @"entities=true",
                      ];
    
    NSString* string = [array componentsJoinedByString:@"&"];
    path = [path stringByAppendingFormat:@"?%@", string];

    NSLog(@"%@", path);

    NSMutableURLRequest* _request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:path]];
    [_request setHTTPMethod:@"GET"];
    // Request headers
    [_request setValue:@"{subscription key}" forHTTPHeaderField:@"Ocp-Apim-Subscription-Key"];
    // Request body
    [_request setHTTPBody:[@"{body}" dataUsingEncoding:NSUTF8StringEncoding]];
    
    NSURLResponse *response = nil;
    NSError *error = nil;
    NSData* _connectionData = [NSURLConnection sendSynchronousRequest:_request returningResponse:&response error:&error];

    if (nil != error)
    {
        NSLog(@"Error: %@", error);
    }
    else
    {
        NSError* error = nil;
        NSMutableDictionary* json = nil;
        NSString* dataString = [[NSString alloc] initWithData:_connectionData encoding:NSUTF8StringEncoding];
        NSLog(@"%@", dataString);
        
        if (nil != _connectionData)
        {
            json = [NSJSONSerialization JSONObjectWithData:_connectionData options:NSJSONReadingMutableContainers error:&error];
        }
        
        if (error || !json)
        {
            NSLog(@"Could not parse loaded json with error:%@", error);
        }
        
        NSLog(@"%@", json);
        _connectionData = nil;
    }
    
    [pool drain];

    return 0;
}
<?php
// This sample uses the Apache HTTP client from HTTP Components (http://hc.apache.org/httpcomponents-client-ga/)
require_once 'HTTP/Request2.php';

$request = new Http_Request2('https://*.cognitiveservices.azure.com/personalizer/v1.1-preview.1/evaluations/{evaluationId}');
$url = $request->getUrl();

$headers = array(
    // Request headers
    'Ocp-Apim-Subscription-Key' => '{subscription key}',
);

$request->setHeader($headers);

$parameters = array(
    // Request parameters
);

$url->setQueryVariables($parameters);

$request->setMethod(HTTP_Request2::METHOD_GET);

// Request body
$request->setBody("{body}");

try
{
    $response = $request->send();
    echo $response->getBody();
}
catch (HttpException $ex)
{
    echo $ex;
}

?>
########### Python 2.7 #############
import httplib, urllib, base64

headers = {
    # Request headers
    'Ocp-Apim-Subscription-Key': '{subscription key}',
}

params = urllib.urlencode({
})

try:
    conn = httplib.HTTPSConnection('*.cognitiveservices.azure.com')
    conn.request("GET", "/personalizer/v1.1-preview.1/evaluations/{evaluationId}?%s" % params, "{body}", headers)
    response = conn.getresponse()
    data = response.read()
    print(data)
    conn.close()
except Exception as e:
    print("[Errno {0}] {1}".format(e.errno, e.strerror))

####################################

########### Python 3.2 #############
import http.client, urllib.request, urllib.parse, urllib.error, base64

headers = {
    # Request headers
    'Ocp-Apim-Subscription-Key': '{subscription key}',
}

params = urllib.parse.urlencode({
})

try:
    conn = http.client.HTTPSConnection('*.cognitiveservices.azure.com')
    conn.request("GET", "/personalizer/v1.1-preview.1/evaluations/{evaluationId}?%s" % params, "{body}", headers)
    response = conn.getresponse()
    data = response.read()
    print(data)
    conn.close()
except Exception as e:
    print("[Errno {0}] {1}".format(e.errno, e.strerror))

####################################
require 'net/http'

uri = URI('https://*.cognitiveservices.azure.com/personalizer/v1.1-preview.1/evaluations/{evaluationId}')


request = Net::HTTP::Get.new(uri.request_uri)
# Request headers
request['Ocp-Apim-Subscription-Key'] = '{subscription key}'
# Request body
request.body = "{body}"

response = Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https') do |http|
    http.request(request)
end

puts response.body