-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathname_deduplication.php
More file actions
32 lines (28 loc) · 1.02 KB
/
name_deduplication.php
File metadata and controls
32 lines (28 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* Example code to call Analytics API to deduplicate a list of names.
**/
require_once dirname(__FILE__) . '/../vendor/autoload.php';
use rosette\api\Api;
use rosette\api\Name;
use rosette\api\NameDeduplicationParameters;
use rosette\api\RosetteException;
$options = getopt('', array('key:', 'url::'));
if (!isset($options['key'])) {
echo 'Usage: php ' . __FILE__ . " --key <api_key> --url=<alternate_url>\n";
exit();
}
$name_dedupe_data = "Alice Terry,Alice Thierry,Betty Grable,Betty Gable,Norma Shearer,Norm Shearer,Brigitte Helm,Bridget Helem,Judy Holliday,Julie Halliday";
$dedup_array = array();
$threshold = 0.75;
foreach (explode(',', $name_dedupe_data) as $name) {
array_push($dedup_array, new Name($name));
}
$api = isset($options['url']) ? new Api($options['key'], $options['url']) : new Api($options['key']);
$params = new NameDeduplicationParameters($dedup_array, $threshold);
try {
$result = $api->nameDeduplication($params);
var_dump($result);
} catch (RosetteException $e) {
error_log($e);
}