Skip to content

Instantly share code, notes, and snippets.

@christinapetris
Forked from dribnet/.block
Created August 7, 2017 01:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christinapetris/a3e7cba67919639dcdb4d7e2ddfdd016 to your computer and use it in GitHub Desktop.
Save christinapetris/a3e7cba67919639dcdb4d7e2ddfdd016 to your computer and use it in GitHub Desktop.
17.2.MDDN342 PS2
license: mit
function resetFocusedRandom() {
return Math.seedrandom(arguments);
}
function focusedRandom(min, max, focus, mean) {
// console.log("hello")
if(max === undefined) {
max = min;
min = 0;
}
if(focus === undefined) {
focus = 1.0;
}
if(mean === undefined) {
mean = (min + max) / 2.0;
}
if(focus == 0) {
return d3.randomUniform(min, max)();
}
else if(focus < 0) {
focus = -1 / focus;
}
sigma = (max - mean) / focus;
val = d3.randomNormal(mean, sigma)();
if (val > min && val < max) {
return val;
}
return d3.randomUniform(min, max)();
}
// note: this file is poorly named - it can generally be ignored.
// helper functions below for supporting blocks/purview
function saveBlocksImages(doZoom) {
if(doZoom == null) {
doZoom = false;
}
// generate 960x500 preview.jpg of entire canvas
// TODO: should this be recycled?
var offscreenCanvas = document.createElement('canvas');
offscreenCanvas.width = 960;
offscreenCanvas.height = 500;
var context = offscreenCanvas.getContext('2d');
// background is flat white
context.fillStyle="#FFFFFF";
context.fillRect(0, 0, 960, 500);
context.drawImage(this.canvas, 0, 0, 960, 500);
// save to browser
var downloadMime = 'image/octet-stream';
var imageData = offscreenCanvas.toDataURL('image/jpeg');
imageData = imageData.replace('image/jpeg', downloadMime);
p5.prototype.downloadFile(imageData, 'preview.jpg', 'jpg');
// generate 230x120 thumbnail.png centered on mouse
offscreenCanvas.width = 230;
offscreenCanvas.height = 120;
// background is flat white
context = offscreenCanvas.getContext('2d');
context.fillStyle="#FFFFFF";
context.fillRect(0, 0, 230, 120);
if(doZoom) {
// pixelDensity does the right thing on retina displays
var pd = this._pixelDensity;
var sx = pd * mouseX - pd * 230/2;
var sy = pd * mouseY - pd * 120/2;
var sw = pd * 230;
var sh = pd * 120;
// bounds checking - just displace if necessary
if (sx < 0) {
sx = 0;
}
if (sx > this.canvas.width - sw) {
sx = this.canvas.width - sw;
}
if (sy < 0) {
sy = 0;
}
if (sy > this.canvas.height - sh) {
sy = this.canvas.height - sh;
}
// save to browser
context.drawImage(this.canvas, sx, sy, sw, sh, 0, 0, 230, 120);
}
else {
// now scaledown
var full_width = this.canvas.width;
var full_height = this.canvas.height;
context.drawImage(this.canvas, 0, 0, full_width, full_height, 0, 0, 230, 120);
}
imageData = offscreenCanvas.toDataURL('image/png');
imageData = imageData.replace('image/png', downloadMime);
p5.prototype.downloadFile(imageData, 'thumbnail.png', 'png');
}

PS2 MDDN 342 2017

For this project I based off the fire character Calcifer from Howl's Moving Castle and reiterated it. The fire is slightly animated and there is now a white part in the eye to show more life in the character. My chosen images relate to dance because I wanted to highlight the elegant, joyful movement from the fire. I wanted to emphasise some subtle dynamic element in my work. If I were to spend more time on this project I would pick out an image with a wide variety of faces to show the various colours that I have mapped.

The parameterised values include: fire colour (RGB), hair opacity, hair length, skin opacity, skin saturation, eye hue and eye brightness. The more transparent the hair part of the fire is the, darker the hair it is meant to represent. To make the faces more different from each other I now made the top face colour (the skin colour) a set colour which is controlled with in saturation and opacity levels according to the image’s skin colour. This is more effective as it is now more distinguishable against the hair colour.

The hair height on the fire depends on the visable length of the hair on the image. I think this is very affective and definately helps differentiate between the faces better.

/*
* Face class - holds all informaiton about one face
*/
function Face() {
// these are state variables for a face
// (your variables may be different)
this.tilt_value = 0;
this.mouth_width = 60;
this.mouth_height = 20;
this.fireOpacity = 150;
this.fireColour=0;
this.pupilSize=20;
this.faceWidth=55;
this.chin=110;
this.flameSize=1;
this.eyeX=0;
this.eyeY=0;
this.crossEyed=1;
// other variables can be in here too
// these control the colors used
this.bg_color = "#1a0400";
this.fg_color = [151, 102, 52];
this.stroke_color = 0;
this.emotion = 0;
this.flameSpread=50;
baseColour = int(focusedRandom(0,2));
/*
* Draw a face centered at x,y with an allowed
* width and height of w,h.
*/
this.draw1 = function(x, y, w, h) {
// Uncomment to see drawing area
// fill(255);
// stroke(0);
// rect(x-w/2, y-h/2, w, h);
// fill(0)
// ellipse(x, y, w, h);
//
push();
translate(x, y);
rotate(this.tilt_value);
var extent = 0;
if(h < w) {
extent = h / 2;
}
else {
extent = w / 2;
}
var scale2 = extent / 220.0;
// head
stroke(this.stroke_color);
fill(this.fg_color);
noStroke();
//body
push();
translate(0,0);
scale(0.43,0.38);
//v is amount of variance of the fire's placement
v=15;
//d is the amount of difference the flames are from the middle.
d= this.flameSpread;
var flameHeight = [random(-110,-110+v),random(-95,-95+v),random(-80,-80+v),random(-35,-35+v),random(-30,-30+v),random(0,0+v/2),random(0,0+v/2)]
var flameWidth = [random(-10,-10+v),random(35+d,35+v+d), random(-55-d,-55+v-d),random(55+d,55+v+d),random(-75-d,-75+v-d),random(75+d,75+v/2+d),random(-80-d,-80+v/2-d)]
baseIntensity = random(70,150);
var flameIntensity =[baseIntensity,baseIntensity+20,baseIntensity+20,baseIntensity+30,baseIntensity+40,baseIntensity+50,baseIntensity+60]
if(baseColour ==0){
this.fireColour = mostlyOrange();
}
else {
this.fireColour = mostlypastelOrange();
}
//this.fireColour = mostlypastelOrange();
//flameIntensity=focusedRandom(90, 150);
for(var i=0; i<flameHeight.length; i++){
if (this.fireColour==0){
//pretty blue
fill(0, flameIntensity[i], 255, this.fireOpacity/2);
}
else if (this.fireColour==1){
//orange
fill(255, flameIntensity[i], 0, this.fireOpacity);
}
else if (this.fireColour==2){
//pastel orange
fill(255, flameIntensity[i], 100, this.fireOpacity);
}
else if(this.fireColour==3){
//pretty purple
fill(200, flameIntensity[i]-60, 250, this.fireOpacity/2);
}
else if(this.fireColour==4){
// pretty greenish blue:
fill(0, flameIntensity[i], 100, this.fireOpacity);
}
else{
// pretty greenish yellow:
fill(flameIntensity[i]+100, flameIntensity[i]+200, 100, this.fireOpacity);
}
push();
scale(this.flameSize);
quad(0, this.chin, -this.faceWidth, 80, flameWidth[i], flameHeight[i], this.faceWidth, 80);
pop();
}
pop();
// eyes
fill(255);
push();
scale(this.flameSize);
strokeWeight(0.1);
stroke(0);
ellipse(-68 * scale2, 105 * scale2, 70 * scale2, 70 * scale2);
ellipse( 68 * scale2, 105 * scale2, 70 * scale2, 70 * scale2);
fill(0);
if(this.crossEyed == 0){
ellipse(-68 * scale2-this.eyeX*2, 105 * scale2+this.eyeY, this.pupilSize * scale2, this.pupilSize * scale2);
ellipse( 68 * scale2+this.eyeX*2, 105 * scale2+this.eyeY, this.pupilSize * scale2, this.pupilSize * scale2);
}
else{
ellipse(-68 * scale2 +this.eyeX, 105 * scale2+this.eyeY, this.pupilSize * scale2, this.pupilSize * scale2);
ellipse( 68 * scale2+this.eyeX, 105 * scale2+this.eyeY, this.pupilSize * scale2, this.pupilSize * scale2);
}
pop();
//eyebrows
push();
scale(this.flameSize);
strokeWeight(0.5);
stroke(0);
if(this.emotion ==0){
//sad
line(-100* scale2, 80* scale2, -60* scale2, 60* scale2);
line(100* scale2, 80* scale2, 60* scale2, 60* scale2);
}
else if(this.emotion ==1){
//slightly indifferent
line(-90* scale2, 70* scale2, -50* scale2, 70* scale2);
line(90* scale2, 70* scale2, 50* scale2, 70* scale2);
}
else if(this.emotion ==2){
//surprised
line(-90* scale2, 55* scale2, -50* scale2, 54* scale2);
line(90* scale2, 55* scale2, 50* scale2, 54* scale2);
}
else if(this.emotion ==3){
//angry
line(-80* scale2, 60* scale2, -40* scale2, 80* scale2);
line(80* scale2, 60* scale2, 40* scale2, 80* scale2);
}
else{
}
// mouth
noStroke();
fill(this.bg_color);
ellipse(0 * scale2, 167 * scale2, this.mouth_width * scale2, this.mouth_height * scale2);
pop();
pop();
}
//colors
// blue =0
//orange =1
//pastel orange =2
//purple =3
//greenish blue =4
//yellow green =5
/*
* Draw a face with position lists that include:
* chin, right_eye, left_eye, right_eyebrow, left_eyebrow
* bottom_lip, top_lip, nose_tip, nose_bridge,
*/
this.draw2 = function(positions) {
var nose_pos = average_point(positions.nose_bridge);
var eye1_pos = average_point(positions.left_eye);
var eye2_pos = average_point(positions.right_eye);
var half_height = positions.chin[7][1] - nose_pos[1];
var face_width = positions.chin[positions.chin.length-1][0] - positions.chin[0][0];
var x = nose_pos[0];
var y = nose_pos[1];
var w = 2 * face_width;
var h = 2.5 * half_height;
var extent = 0;
if(h < w) {
extent = h / 2;
}
else {
extent = w / 2;
}
var scale2 = extent / 220.0;
// Uncomment to see drawing area
// fill(255);
// stroke(0);
// rect(x-w/2, y-h/2, w, h);
// fill(0)
// ellipse(x, y, w, h);
push();
translate(x, y);
rotate(this.tilt_value);
// head
stroke(this.stroke_color);
fill(this.fg_color);
ellipse(0, 0, 300 * scale2, 400 * scale2);
noStroke();
// mouth
fill(this.bg_color);
ellipse(0 * scale2, 70 * scale2, this.mouth_width * scale2, this.mouth_height * scale2);
pop();
noStroke();
fill(this.bg_color);
ellipse(eye1_pos[0], eye1_pos[1], 50 * scale2, 30 * scale2);
ellipse(eye2_pos[0], eye2_pos[1], 50 * scale2, 30 * scale2);
fill(this.fg_color);
ellipse(eye1_pos[0], eye1_pos[1], 20 * scale2, 20 * scale2);
ellipse(eye2_pos[0], eye2_pos[1], 20 * scale2, 20 * scale2);
}
/*
* Update internal state variables to a random state.
*/
this.randomize = function(values, size) {
this.tilt_value = focusedRandom(-30, 30,8);;
this.mouth_width = focusedRandom(20, 100);
this.mouth_height = focusedRandom(0, 50, 4,1);
this.fireOpacity = focusedRandom(0, 250, 5);
this.baseColour=int(focusedRandom(0,2));
//this.fireColour =int(focusedRandom(0, 6));
this.pupilSize = focusedRandom(15, 50);
this.faceWidth = focusedRandom(43,70, 4);
this.chin = focusedRandom(100,110);
this.flameSize = focusedRandom(0.7,1, 3);
this.eyeX =focusedRandom(-1.7,1.7, 2);
this.eyeY =focusedRandom(-1.7,1.7, 2);
this.emotion =int(focusedRandom(0,6));
//this.eyeX=1.7;
//this.pupilSize = 50;
this.crossEyed =int(focusedRandom(0,2,10));
//this.crossEyed = 0;
this.flameSpread=focusedRandom(-50,50,6);
}
}
//function getRandomBaseColour(){
// random_result = focusedRandom(0, 100);
// if(random_result < 50) {
// return 0;
// }
// else {
// return 1;
// }
// }
//mostle reddy orange and purple and blue
function mostlyOrange() {
random_result = focusedRandom(0, 100);
if(random_result < 5) {
return 0;
}
else if(random_result < 95) {
return 1;
}
else if(random_result < 0) {
return 2;
}
else if(random_result < 100) {
return 3;
}
else if(random_result < 0) {
return 4;
}
else {
return 5;
}
}
function mostlypastelOrange() {
random_result = focusedRandom(0, 100);
if(random_result < 0) {
return 0;
}
else if(random_result <0) {
return 1;
}
else if(random_result < 90) {
return 2;
}
else if(random_result < 0) {
return 3;
}
else if(random_result < 95) {
return 4;
}
else {
return 5;
}
}
// given a point, return the average
function average_point(list) {
var sum_x = 0;
var sum_y = 0;
var num_points = 0;
for(var i=0; i<list.length; i++) {
sum_x += list[i][0];
sum_y += list[i][1];
num_points += 1;
}
return [sum_x / num_points, sum_y / num_points];
}
[
{"url": "z_face5.jpg", "embedding": [[-0.1500638872385025, 0.09777595847845078, 0.04465930536389351, -0.1185937151312828, -0.1566048413515091, 0.013899730518460274, -0.000580145395360887, -0.1160593330860138, 0.22382594645023346, -0.08275605738162994, 0.16151249408721924, -0.07704097777605057, -0.21681654453277588, 0.01612076722085476, 0.014540879055857658, 0.2069796323776245, -0.07381856441497803, -0.1777450442314148, -0.05362007021903992, -0.049435682594776154, -0.015432917512953281, 0.12147644907236099, -0.11386749148368835, 0.06292931735515594, -0.1204037293791771, -0.3090141713619232, -0.048855315893888474, -0.10888649523258209, 0.0010615898063406348, -0.02036280557513237, 0.07911184430122375, 0.16495844721794128, -0.14038138091564178, -0.042050253599882126, 0.0693800300359726, 0.18590296804904938, -0.13677553832530975, -0.1064218059182167, 0.18473665416240692, 0.049358610063791275, -0.20066697895526886, -0.01258581131696701, 0.11194287240505219, 0.2664312422275543, 0.14014023542404175, -0.03874620795249939, 0.07535971701145172, -0.08107614517211914, 0.03359347581863403, -0.2505389153957367, -0.02091798558831215, 0.12203923612833023, 0.0680672749876976, 0.15441769361495972, 0.11085975915193558, -0.1846785843372345, 0.05838031321763992, 0.06382068991661072, -0.24925440549850464, 0.07621430605649948, 0.11475493758916855, -0.0926128551363945, -0.022583695128560066, -0.05505010858178139, 0.2784186601638794, 0.0758906826376915, -0.09480097144842148, -0.10008110851049423, 0.22436408698558807, -0.1303507536649704, -0.13253389298915863, 0.08081075549125671, -0.11231835186481476, -0.17305217683315277, -0.2505505681037903, 0.07673497498035431, 0.3138331472873688, 0.14942775666713715, -0.15494659543037415, 0.030644718557596207, -0.0022968861740082502, -0.028169026598334312, 0.02683599479496479, 0.06754359602928162, 0.04420433193445206, -0.13341695070266724, -0.03037666529417038, -0.021494444459676743, 0.265733927488327, -0.023303400725126266, 0.04560418426990509, 0.2269487828016281, 0.038539886474609375, -0.08414483070373535, -0.03611907362937927, 0.06969036161899567, -0.06743286550045013, -0.014707175083458424, -0.10371989756822586, -0.05466776341199875, 0.04271670803427696, -0.06737881153821945, 0.034688711166381836, 0.15126097202301025, -0.22547224164009094, 0.18585000932216644, -0.002030466916039586, -0.05722314864397049, -0.03709489479660988, 0.021637339144945145, -0.08495279401540756, 0.015524829737842083, 0.21671949326992035, -0.20236365497112274, 0.24492524564266205, 0.14506757259368896, 0.0036946600303053856, 0.12137728929519653, 0.06359520554542542, 0.07397257536649704, 0.006001254078000784, -0.06700576841831207, -0.1509082019329071, -0.1291445791721344, 0.03261054307222366, 0.006159497424960136, -0.033594269305467606, 0.10965967178344727], [-0.09180554747581482, 0.040534257888793945, 0.11497894674539566, -0.10905620455741882, -0.10822778940200806, 0.03410542756319046, 0.02503407932817936, -0.10937672853469849, 0.15441961586475372, -0.14642234146595, 0.14608299732208252, -0.06737816333770752, -0.1845460832118988, -0.05835046246647835, 0.031018806621432304, 0.18939566612243652, -0.20981988310813904, -0.22250039875507355, -0.06185651198029518, -0.12085418403148651, 0.002911059884354472, -0.0018389031756669283, -0.057490963488817215, 0.05814017727971077, -0.21972253918647766, -0.32876482605934143, -0.0611235685646534, -0.104407899081707, -0.02866288460791111, 0.02701868675649166, 0.0318794883787632, 0.19372864067554474, -0.18808241188526154, 0.010030323639512062, 0.03102852776646614, 0.1474725604057312, -0.05120670050382614, -0.06625515967607498, 0.18952356278896332, 0.028207657858729362, -0.20610323548316956, 0.03629785403609276, 0.11989779025316238, 0.25677359104156494, 0.18914133310317993, 0.030185291543602943, 0.034758538007736206, 0.06248157471418381, 0.1364983171224594, -0.2918921411037445, -0.004695496056228876, 0.18105801939964294, 0.07466596364974976, 0.10935624688863754, 0.08439738303422928, -0.12664388120174408, 0.04609260335564613, 0.025379294529557228, -0.2268829643726349, 0.06159427389502525, 0.026469945907592773, -0.19988515973091125, 0.0005821943050250411, -0.1018388494849205, 0.19572941958904266, 0.1300361007452011, -0.06060781329870224, -0.1803152859210968, 0.21290241181850433, -0.1907147914171219, -0.14035066962242126, 0.07123871147632599, -0.16447612643241882, -0.12040859460830688, -0.2838018834590912, -0.0066221472807228565, 0.38435205817222595, 0.17994514107704163, -0.1270386427640915, 0.06061415746808052, -0.011725151911377907, -0.06208440661430359, 0.05955350399017334, 0.14692798256874084, 0.07757915556430817, -0.026310281828045845, -0.028263039886951447, 0.0021537644788622856, 0.27465054392814636, -0.03880175203084946, -0.05531243979930878, 0.21325838565826416, 0.02156835049390793, -0.03167104348540306, -0.03195925056934357, -0.05188952758908272, -0.039703235030174255, 0.01767372339963913, -0.13285502791404724, -3.102845585090108e-05, -0.07475659251213074, -0.014613999985158443, -0.017753692343831062, 0.06474453955888748, -0.19152623414993286, 0.18526913225650787, -0.03603886812925339, -0.027837807312607765, -0.12407489866018295, 0.03084760345518589, -0.12008437514305115, 0.02853432297706604, 0.15538200736045837, -0.27900996804237366, 0.18717241287231445, 0.24341878294944763, -0.0029660104773938656, 0.11049496382474899, 0.039052125066518784, 0.03066815808415413, 0.03318440541625023, -0.027706334367394447, -0.16464516520500183, -0.16678480803966522, 0.05716755613684654, -0.05070734769105911, 0.029700815677642822, 0.08433686196804047], [-0.061040330678224564, 0.03606734797358513, 0.13480240106582642, -0.10266906023025513, -0.060681670904159546, -0.012842798605561256, -0.048608116805553436, -0.05894293263554573, 0.1385798305273056, -0.1375419646501541, 0.12986958026885986, -0.09150641411542892, -0.25792205333709717, -0.060377247631549835, 0.009501688182353973, 0.25337713956832886, -0.14767685532569885, -0.14541052281856537, -0.10797599703073502, -0.02331460453569889, 0.012066017836332321, 0.025907116010785103, 0.0031571078579872847, 0.046254679560661316, -0.11118859052658081, -0.3338738679885864, -0.1430998593568802, -0.06008615344762802, -0.08723349124193192, -0.047633588314056396, -0.01345375832170248, 0.08419974893331528, -0.10591764003038406, 0.031199593096971512, 0.03685449808835983, 0.12546293437480927, -0.019514819607138634, -0.19578136503696442, 0.14379125833511353, 0.013032462447881699, -0.18187986314296722, -0.05091293528676033, 0.07042831182479858, 0.12786529958248138, 0.19378122687339783, 0.02994430437684059, 0.07867175340652466, -0.025914713740348816, 0.1390768587589264, -0.3103237450122833, -0.061491068452596664, 0.0825890377163887, 0.02106795646250248, 0.09932678192853928, 0.12124796211719513, -0.20981305837631226, 0.06280646473169327, 0.12406445294618607, -0.23150938749313354, -0.005627947859466076, -0.06587110459804535, -0.12707726657390594, -0.011976930312812328, -0.0718192458152771, 0.16401487588882446, 0.14087572693824768, -0.12163592129945755, -0.18315981328487396, 0.21277450025081635, -0.18427300453186035, 0.008107772096991539, 0.0931008905172348, -0.1309567540884018, -0.20312942564487457, -0.25012388825416565, -0.01878044195473194, 0.35696035623550415, 0.15917474031448364, -0.13525570929050446, 0.012306716293096542, -0.001259438693523407, -0.04400910437107086, 0.009821418672800064, 0.10963934659957886, 0.03675655648112297, -0.02368641085922718, -0.09353533387184143, -0.017186149954795837, 0.23559211194515228, -0.08959700167179108, 0.022800108417868614, 0.2161443531513214, -0.01968894898891449, 0.04022620990872383, -0.048339251428842545, -0.006308241747319698, -0.03757888451218605, 0.06851796060800552, -0.07047636806964874, 0.09176186472177505, -0.035272110253572464, -0.06339257955551147, -0.03618509694933891, 0.010253085754811764, -0.10127703100442886, 0.0922645777463913, -0.03927912190556526, -0.07296279817819595, -0.15490694344043732, -0.04722408577799797, -0.16117148101329803, 0.04141898825764656, 0.1908140629529953, -0.2897687256336212, 0.12347561866044998, 0.25371554493904114, -0.038893021643161774, 0.15289902687072754, 0.03171471133828163, 0.1274748295545578, 0.03268173336982727, -0.08775980770587921, -0.15136271715164185, -0.09812557697296143, 0.058012478053569794, -0.018333274871110916, -0.027270901948213577, 0.031710702925920486], [-0.09049781411886215, 0.13556253910064697, 0.11745328456163406, -0.1638949066400528, -0.12863638997077942, 0.0010677417740225792, 0.01896277256309986, -0.05473726615309715, 0.24311447143554688, -0.07284699380397797, 0.22995513677597046, -0.12195545434951782, -0.28205737471580505, 0.02923489734530449, 0.008694992400705814, 0.23208189010620117, -0.14050105214118958, -0.16912677884101868, -0.005006654653698206, -0.02598585933446884, 0.003603149438276887, 0.0029657899867743254, -0.054920539259910583, 0.10139241814613342, -0.17828135192394257, -0.3333701193332672, -0.02868419699370861, -0.08860990405082703, -0.08799387514591217, -0.05436430498957634, 0.051173675805330276, 0.08343514055013657, -0.21847181022167206, -0.04958672448992729, 0.010852714069187641, 0.13858386874198914, -0.14196622371673584, -0.20038770139217377, 0.12657777965068817, 0.06127273663878441, -0.2430303990840912, -0.0628778487443924, 0.0488957017660141, 0.25095027685165405, 0.13346636295318604, -0.00857234001159668, 0.03749025985598564, -0.031503982841968536, 0.14949823915958405, -0.30046939849853516, -0.025652626529335976, 0.07147495448589325, 0.021013952791690826, 0.05996111035346985, 0.039637524634599686, -0.15533852577209473, 0.11931361258029938, 0.12040890008211136, -0.32647833228111267, 0.06304589658975601, 0.11781329661607742, -0.13377107679843903, 0.00355827366001904, -0.08724972605705261, 0.26819270849227905, 0.14547865092754364, -0.12968629598617554, -0.07299768924713135, 0.1799282282590866, -0.11340098828077316, -0.03705945611000061, 0.06654252111911774, -0.08286671340465546, -0.21610939502716064, -0.24180975556373596, 0.01538288313895464, 0.40024253726005554, 0.09877534955739975, -0.09130315482616425, 0.026491818949580193, -0.013010497204959393, 0.009492486715316772, 0.03777092322707176, 0.13718470931053162, 0.020074505358934402, -0.010963237844407558, -0.08259646594524384, -0.01664205640554428, 0.27728334069252014, -0.029539715498685837, 0.0006350186886265874, 0.30691543221473694, -0.07169515639543533, -0.018400199711322784, -0.001448586699552834, 0.028064759448170662, -0.10268821567296982, 0.06208343058824539, -0.05454094707965851, 0.026108235120773315, -0.007101637311279774, -0.14700055122375488, -0.02840028516948223, 0.042648982256650925, -0.2376614212989807, 0.13851234316825867, 0.011714833788573742, 0.047580137848854065, -0.015863722190260887, -0.015783296898007393, -0.11927447468042374, -0.01905694231390953, 0.17744320631027222, -0.29073667526245117, 0.19323723018169403, 0.14629361033439636, 0.03375738114118576, 0.12997406721115112, 0.0769730806350708, 0.019654544070363045, 0.042905837297439575, -0.09117890894412994, -0.17857562005519867, -0.0735148936510086, 0.05608203634619713, -0.05665592849254608, 0.06658059358596802, 0.07457929849624634]], "landmarks": [{"chin": [[-1.9819716517147108, -0.9583219591054065], [-1.9399539533446537, -0.42490920048513015], [-1.8365118724433194, 0.03657475101135463], [-1.7278175792457278, 0.564735297335374], [-1.557698903516859, 1.0209670365356016], [-1.2594792504291779, 1.4000177563157803], [-0.8331586199826849, 1.7018874566759106], [-0.41209020183244915, 1.9370805622085059], [0.05989817425654989, 1.9669916709622406], [0.45470553092550003, 1.8688018023571633], [0.9056850578294706, 1.63200653180076], [1.2847357776096493, 1.3337868787130787], [1.519928883142245, 0.9127184605628431], [1.6831931815510486, 0.43022565988132977], [1.8464574799598525, -0.05226714080018348], [1.9430451835411218, -0.5295077291854396], [2.0396328871223908, -1.0067483175706957]], "left_eyebrow": [[-1.6186775688233035, -1.4565713966756912], [-1.362475614105679, -1.610933435515789], [-1.0343448522642635, -1.703871091824609], [-0.7009618781265909, -1.7301321533058946], [-0.35182226710014675, -1.5563634303045766]], "right_eyebrow": [[0.38162027600273346, -1.614137765563405], [0.7097510378441491, -1.707075421872225], [1.0483862242780788, -1.6666598885259762], [1.392273623008266, -1.5595677603521927], [1.6080600443796411, -1.3752946127583603]], "nose_bridge": [[0.01832619311132591, -1.1158883279931202], [-0.027341552531180174, -0.843929736386725], [-0.006332703346151672, -0.5772233570765867], [-0.04674823669240062, -0.2385881706426568]], "nose_tip": [[-0.29244576681751033, 0.04912705785250991], [-0.1538403648661841, 0.10529922808753021], [-0.015234962914857882, 0.16147139832255053], [0.11811822674021123, 0.15096697373003629], [0.2462192040990232, 0.07378595430998748]], "left_eye": [[-1.1818525137842961, -1.021348506660492], [-0.9923271538942066, -1.1704583332043323], [-0.7256207745840685, -1.1914671823893608], [-0.5098343532126934, -1.0071940347955286], [-0.70461192539904, -0.9247608030792228], [-0.9713183047091781, -0.9037519538941943]], "right_eye": [[0.5008189937928392, -0.9526240295843165], [0.7570209485104632, -1.106986068424414], [1.0237273278206014, -1.1279949176094426], [1.2395137491919763, -0.9437217700156103], [0.9780595821780953, -0.8560363260030472], [0.7780297976954916, -0.8402796891142759]], "top_lip": [[-0.6399832128201465, 0.7474062799053982], [-0.3837812581025225, 0.5930442410653005], [-0.18900368591617595, 0.5106110093489946], [0.016278310862684855, 0.5615309672877578], [0.14963150051775398, 0.5510265426952435], [0.35491349729661475, 0.6019465006340068], [0.6373765134955244, 0.780967435931582], [0.5040233238404552, 0.7914718605240962], [0.16013592511026822, 0.6843797323503127], [-0.03989385937233545, 0.7001363692390841], [-0.1784992613236617, 0.6439641990040638], [-0.5066300231650773, 0.736901855312884]], "bottom_lip": [[0.6373765134955244, 0.780967435931582], [0.38642677107415746, 1.0020060695992141], [0.11972039176401927, 1.0230149187842426], [-0.013632797891049833, 1.0335193433767569], [-0.2136625823736535, 1.0492759802655283], [-0.4241967914487714, 0.9316794274992305], [-0.6399832128201465, 0.7474062799053982], [-0.5066300231650773, 0.736901855312884], [-0.16799483673114746, 0.7773173886591329], [-0.0293894347798212, 0.8334895588941532], [0.17064034970278247, 0.8177329220053818], [0.5040233238404552, 0.7914718605240962]], "transform": {"center": [227.41666666666666, 149.61111111111111], "scale": 14.951451785489835, "angle": 0.07860913339644512}}, {"chin": [[-2.06759536682414, -0.6349238665161655], [-1.9741011036634437, -0.14179470683641998], [-1.9378673932922392, 0.2870649525810714], [-1.8443731301315434, 0.7801941122608169], [-1.6258443401827207, 1.2195671928874519], [-1.339541576235262, 1.5409146941987224], [-0.8639347852374227, 1.751245563667391], [-0.4490930207654564, 1.958071959399678], [0.03702719144152672, 1.9861077492907278], [0.46939132459539934, 1.8891090123936507], [0.9087644052220342, 1.6705802224448278], [1.2908769330591776, 1.3877819322337508], [1.6157289081068296, 1.0407141417604195], [1.7582858035768627, 0.6831329300779447], [1.8470866199937852, 0.200517191607343], [1.8716179361484537, -0.22483799407376714], [1.8961492523031223, -0.6501931797548773]], "left_eyebrow": [[-1.6644559965687087, -1.2823123158824798], [-1.403873521783311, -1.5721195535663193], [-1.0930394416811844, -1.676127237936159], [-0.6641797822636929, -1.7123609483073632], [-0.30659857058121814, -1.56980405283733]], "right_eyebrow": [[0.4260862214656377, -1.5885153945266284], [0.7334158278313833, -1.631758052370595], [1.0980059869866203, -1.6107312099523077], [1.3948221721432226, -1.4716787882186557], [1.6238643833011892, -1.2146007871696392]], "nose_bridge": [[0.09422529894522344, -1.1199175510015513], [0.08020740399969854, -0.87685744489806], [0.06618950905417365, -0.6337973387945685], [0.048667140372267506, -0.3299722061652039]], "nose_tip": [[-0.33344538746487595, -0.047173915954126906], [-0.1546547816236385, 0.024104531780889643], [0.027640297953980156, 0.03461795299003332], [0.21343985126798004, -0.015633652326695877], [0.39573493084559863, -0.0051202311175522]], "left_eye": [[-1.1958581530436319, -0.9504513933620656], [-1.0030496522568697, -1.1222330517305406], [-0.7599895461533781, -1.1082151567850156], [-0.5274428612590303, -0.9119021822618721], [-0.7740074410989031, -0.8651550506815241], [-1.0170675472023945, -0.879172945627049]], "right_eye": [[0.5663276162066817, -0.8488216550070101], [0.7626405907298252, -1.0813683399013578], [1.0057006968333166, -1.0673504449558329], [1.2382473817276645, -0.8710374704326894], [1.0524478284136645, -0.8207858651159603], [0.7486226957843003, -0.8383082337978665]], "top_lip": [[-0.9188798372979252, 0.5897011122030438], [-0.5402717831971631, 0.36766784851783957], [-0.16516820283278216, 0.2063996113585083], [0.013622403008455256, 0.2776780590935249], [0.26018698284832803, 0.23093092751317687], [0.55700316800493, 0.36998334924682874], [0.7860453791628965, 0.6270613502958452], [0.7252803526370237, 0.623556876559464], [0.24967356163918433, 0.4132260070907955], [0.006613455535692807, 0.39920811214527063], [-0.17568162404192583, 0.3886946909361269], [-0.7973497842461794, 0.5967100596758063]], "bottom_lip": [[0.7860453791628965, 0.6270613502958452], [0.5254629043774989, 0.9168685879796846], [0.21462882427537205, 1.0208762723495244], [-0.03193575556450068, 1.0676234039298722], [-0.21072636140573808, 0.9963449561948557], [-0.5718120468245941, 0.9145530872506955], [-0.9188798372979252, 0.5897011122030438], [-0.7973497842461794, 0.5967100596758063], [-0.2002129401965944, 0.814049876617237], [-0.017917860618975778, 0.8245632978263807], [0.22514224548451575, 0.8385811927719057], [0.7252803526370237, 0.623556876559464]], "transform": {"center": [663.5138888888889, 96.45833333333333], "scale": 16.429534109322233, "angle": -0.05760873048091203}}, {"chin": [[-1.9187228042040985, -0.7180151059550288], [-1.8571556399539315, -0.2654304091980342], [-1.7955884757037646, 0.1871542875589606], [-1.7335890205134807, 0.5751457834849727], [-1.5428354546013487, 1.0285950621222006], [-1.2870563969181172, 1.417883430868562], [-0.9662518474637868, 1.7430108897240575], [-0.5153963144672581, 1.939816528797821], [0.0004847103003696347, 2.0724612579807182], [0.5180948988284635, 1.9467331838396853], [0.9069509766347086, 1.7555473269874362], [1.2966716363211868, 1.4351750684732223], [1.5576381852858163, 1.049345027247793], [1.689850623528597, 0.5980572033111478], [1.7574698609403951, 0.146337088434386], [1.8250890983521935, -0.30538302644237564], [1.8931406267041082, -0.82169634215012]], "left_eyebrow": [[-1.6564593824191196, -1.2976247496734064], [-1.4613829071058222, -1.4901074793460045], [-1.1375523210706762, -1.6171324263073872], [-0.7499931160847805, -1.6145386806666882], [-0.4278916938101006, -1.4831908243041403]], "right_eyebrow": [[0.4122522079327898, -1.5421642429136082], [0.7356505030278193, -1.6045959890440085], [1.1236419989538315, -1.6665954442342918], [1.4457434212285114, -1.535247587871744], [1.7023870607919758, -1.275145620787348]], "nose_bridge": [[0.021666966366078597, -1.092605582737429], [0.01950551166549605, -0.7696395785825162], [0.017776347905030014, -0.5112667752585858], [0.016047184144563974, -0.2528939719346554]], "nose_tip": [[-0.30864798377081504, 0.0033173766886925088], [-0.17946158210884985, 0.004181958568925528], [0.01388572944398143, 0.07007203222025765], [0.20809762287704575, 0.006775704209624585], [0.33728402453901096, 0.007640286089857604]], "left_eye": [[-1.206468431302824, -0.9716327089376776], [-1.011824246929643, -1.0995222377792933], [-0.7534514436057126, -1.097793074018827], [-0.4959432221620152, -0.966877508596396], [-0.7547483164260621, -0.9040134715258795], [-1.0131211197499925, -0.9057426352863456]], "right_eye": [[0.5375479911337064, -0.9599608535545319], [0.7326244664470037, -1.1524435832271303], [1.0555904706019166, -1.1502821285265477], [1.2485054912146314, -1.0197988540442329], [1.0538613068414506, -0.8919093252026173], [0.7954885035175203, -0.8936384889630833]], "top_lip": [[-0.8934451187705906, 0.5161723648755047], [-0.5696145327354445, 0.3891474179141221], [-0.2457839467002985, 0.26212247095273944], [0.012156565683515391, 0.328444835544188], [0.20593616817646318, 0.3297417083645376], [0.5930630822222424, 0.39692865483621925], [0.8501390127258233, 0.592437421089633], [0.720952611063858, 0.5915728392094001], [0.2692324961870962, 0.5239536017976019], [0.010859692863165862, 0.5222244380371358], [-0.24751311046076452, 0.5204952742766698], [-0.7646910080487418, 0.5816301475867204]], "bottom_lip": [[0.8501390127258233, 0.592437421089633], [0.5891724637611937, 0.9782674623150627], [0.26490958678593113, 1.169885610107428], [0.006536783462000767, 1.1681564463469618], [-0.2518360198619296, 1.1664272825864959], [-0.6380983520274758, 0.9700539344528489], [-0.8934451187705906, 0.5161723648755047], [-0.7646910080487418, 0.5816301475867204], [-0.24967456516134706, 0.8434612784315828], [0.008265947222466805, 0.9097836430230314], [0.26707104148651367, 0.8469196059525149], [0.720952611063858, 0.5915728392094001]], "transform": {"center": [93.77777777777777, 180.91666666666666], "scale": 15.48115889926195, "angle": -0.006692414691650238}}, {"chin": [[-2.2781855268366935, -1.2060364213988408], [-2.213821707977849, -0.6314823857312062], [-2.0929745430190625, -0.0520680627294674], [-1.967267090726172, 0.4708629141723286], [-1.723732658899292, 0.9470311196423904], [-1.418854593638365, 1.3715762663466138], [-0.9912892615093447, 1.69287529551916], [-0.4975200086121734, 1.906067919825925], [-0.04565323981263231, 1.9449502184987582], [0.3643110448892786, 1.8095221915376591], [0.6710292120595124, 1.5514068977084667], [0.9874679538979544, 1.1803249116793888], [1.2522836369705581, 0.7478992922162643], [1.4041326278432764, 0.3057530980849315], [1.560841906050099, -0.19287644214634397], [1.6562075508228749, -0.639882923611781], [1.699950136829812, -1.1482330385112647]], "left_eyebrow": [[-1.5712236496327567, -1.4866130499892471], [-1.2693657697966274, -1.688244997718497], [-0.9207451185287631, -1.7720499659137574], [-0.5302219831632687, -1.6815446084750858], [-0.20590276856592535, -1.482932846170633]], "right_eyebrow": [[0.4767576719674904, -1.4810927442613264], [0.773755264469516, -1.6262413458906333], [1.0094092235374947, -1.719766888754102], [1.2918259540372081, -1.6954654520835815], [1.4466951303347233, -1.5114345517814411]], "nose_bridge": [[0.15059835546084005, -0.997044066032363], [0.182780264890262, -0.7097670481985459], [0.21496217431968395, -0.42249003036472843], [0.24714408374910593, -0.13521301253091114]], "nose_tip": [[-0.1725407756210132, 0.11318170663007313], [-0.00795102465528942, 0.18424591473232815], [0.16149901364453847, 0.19882677673464055], [0.33580933927847056, 0.15692429263701033], [0.4536363188124599, 0.11016152120527595]], "left_eye": [[-1.2147225256059913, -1.000724269850977], [-0.9742082792039086, -1.1507331588143885], [-0.6917915487041955, -1.1264317221438678], [-0.4804390263067373, -0.9375405345076234], [-0.711232698040612, -0.9004983377440972], [-0.9936494285403251, -0.9247997744146178]], "right_eye": [[0.5459817781604385, -0.9630220546936341], [0.7300126784625788, -1.1178912309911497], [0.9559460628623493, -1.0984500816547331], [1.120535813828073, -1.0273858735524781], [0.9978485469599796, -0.924139756020801], [0.7670548752261048, -0.887097559257275]], "top_lip": [[-0.6311079336639654, 0.8134431945905983], [-0.3292500538278357, 0.6118112468613486], [-0.03225246132581008, 0.4666626452320413], [0.13233728963991367, 0.5377268533342963], [0.30664761527384576, 0.4958243692366661], [0.4712373662395696, 0.5668885773389211], [0.6212462552029808, 0.8074028237410041], [0.5082795630030956, 0.7976822490727958], [0.29206675327153336, 0.665274407536494], [0.11775642763760127, 0.7071768916341242], [-0.05169361066222662, 0.6925960296318119], [-0.5181412414640801, 0.8231637692588066]], "bottom_lip": [[0.6212462552029808, 0.8074028237410041], [0.488838413666679, 1.0236156334725663], [0.24832416726459614, 1.1736245224359776], [0.07401384163066407, 1.2155270065336081], [-0.09543619666916382, 1.2009461445312957], [-0.3681323525006688, 1.0636780156608896], [-0.6311079336639654, 0.8134431945905983], [-0.5181412414640801, 0.8231637692588066], [-0.07113475999864316, 0.9185294140315825], [0.09831527830118474, 0.9331102760338948], [0.2726256039351168, 0.8912077919362645], [0.5082795630030956, 0.7976822490727958]], "transform": {"center": [420.8611111111111, 174.75], "scale": 17.63915135412776, "angle": -0.08583671172520815}}]},
{"url": "z_face6.jpg", "embedding": [[-0.14186955988407135, 0.07618759572505951, 0.049362942576408386, -0.1242700070142746, -0.0952959731221199, 0.04445101320743561, -0.048052165657281876, -0.10598458349704742, 0.2100055068731308, -0.18143916130065918, 0.13653667271137238, 0.010541693307459354, -0.1513858288526535, 0.14392220973968506, -0.08061469346284866, 0.14276093244552612, -0.2470102161169052, -0.18790163099765778, -0.139780193567276, -0.07457028329372406, 0.01422608457505703, 0.03956441953778267, 0.015428503975272179, 0.13531258702278137, -0.140028178691864, -0.2882317304611206, -0.010753925889730453, -0.04830300807952881, 0.03880646824836731, -0.07533450424671173, 0.0065866499207913876, 0.04794196039438248, -0.24752560257911682, 0.07041342556476593, 0.0033909908961504698, 0.215298131108284, -0.04642678424715996, -0.09284749627113342, 0.19866448640823364, 0.01680389605462551, -0.26288989186286926, -0.0024041456636041403, 0.09812275320291519, 0.2684997022151947, 0.2157536894083023, -0.008720315992832184, -0.008721992373466492, -0.04914373531937599, 0.18746405839920044, -0.3499196469783783, 0.10087769478559494, 0.19047090411186218, 0.06104264035820961, 0.14674760401248932, 0.06495609879493713, -0.1908278614282608, 0.07598990201950073, 0.1177770346403122, -0.07131043821573257, 0.10322701185941696, 0.08353051543235779, -0.10024884343147278, 0.046942342072725296, -0.022549549117684364, 0.22806675732135773, 0.130304217338562, -0.11166423559188843, -0.17783890664577484, 0.1520938128232956, -0.17362229526042938, -0.08323793858289719, 0.1339886337518692, -0.11915875226259232, -0.20249506831169128, -0.23173555731773376, 0.025185709819197655, 0.4104594886302948, 0.19955205917358398, -0.13710816204547882, 0.08034726977348328, -0.0723574087023735, -0.013887681998312473, 0.053631704300642014, 0.20904672145843506, -0.006057996302843094, 0.0590740367770195, -0.11452275514602661, 0.06635873764753342, 0.285020649433136, 0.012206856161355972, -0.055719371885061264, 0.2799362242221832, 0.037861865013837814, -0.06196848675608635, 0.025407839566469193, 0.11362418532371521, -0.13208375871181488, -0.03089808113873005, -0.18310624361038208, -0.07161032408475876, 0.020172398537397385, 0.03879966959357262, -0.07259860634803772, 0.1071697548031807, -0.1954338550567627, 0.20647569000720978, -0.08287381380796432, -0.004700088873505592, -0.0006341679254546762, 0.030060695484280586, -0.0435841865837574, -0.07339406758546829, 0.13773863017559052, -0.24812451004981995, 0.16436396539211273, 0.19320951402187347, 0.03545398265123367, 0.1617647111415863, 0.05547085404396057, 0.11135270446538925, 0.07867833971977234, 0.015726285055279732, -0.13713392615318298, -0.09532148391008377, 0.013320290483534336, 0.004092938732355833, -0.004008394666016102, 0.06273333728313446]], "landmarks": [{"chin": [[-2.643455698803793, -0.8357307220056235], [-2.564127087381942, -0.0926464717784361], [-2.426355773221743, 0.49388806726112855], [-2.2885844590615436, 1.080422606300693], [-1.9848742352000106, 1.4613539299279985], [-1.4661715974125058, 1.74417824510603], [-1.0455759680742753, 1.81201014635809], [-0.5174841317730593, 1.8307885433855136], [-0.09688850243482872, 1.8986204446375734], [0.22560011845412792, 1.7514599319636626], [0.4990352351184476, 1.4968032123267663], [0.6159206405951448, 1.1837037899515213], [0.8403022530348276, 0.8215508633516395], [0.9571876585115249, 0.5084514409763943], [1.1325157667265706, 0.038802307413526804], [1.2494011722032679, -0.27429711496171816], [1.3172330734553281, -0.6948927442999487]], "left_eyebrow": [[-1.6175471333985743, -1.4337619712149785], [-1.187562305546632, -1.6299759881135263], [-0.7575774776946899, -1.826190005012074], [-0.22948564139347383, -1.8074116079846507], [0.08361378098177119, -1.6905262025079537]], "right_eyebrow": [[0.6607591215076244, -1.564251598517545], [0.8757515354335955, -1.6623586069668188], [0.983247742396581, -1.7114121111914558], [1.1888509578088406, -1.5454732014901216], [1.2379044620334774, -1.4379769945271361]], "nose_bridge": [[0.32888130210495603, -1.1530451676930258], [0.4269883105542299, -0.9380527537670547], [0.41759911204051836, -0.6740068356164468], [0.5157061204897923, -0.4590144216904757]], "nose_tip": [[-0.08021761706348413, -0.05719718937966835], [0.07633209412413838, 0.001245513358680235], [0.2328818053117609, 0.05968821609702883], [0.44787421923773196, -0.038418792352245074], [0.5553704262007175, -0.08747229657688202]], "left_eye": [[-1.1572871983494184, -0.9943879448493247], [-0.8347985774604618, -1.1415484575232355], [-0.5707526593098536, -1.1321592590095237], [-0.36514944389759424, -0.9662203493081898], [-0.6291953620482023, -0.9756095478219013], [-0.8932412801988103, -0.9849987463356129]], "right_eye": [[0.5344845175172155, -0.9871062579916917], [0.7494769314431867, -1.0852132664409657], [1.0135228495937945, -1.075824067927254], [1.0625763538184316, -0.9683278609642685], [0.9550801468554461, -0.9192743567396315], [0.691034228704838, -0.9286635552533432]], "top_lip": [[-0.5874235446811982, 0.823658375007718], [-0.20649222105389298, 0.5199481511461848], [0.11599639983506367, 0.3727876384722738], [0.2725461110226862, 0.4312303412106224], [0.3800423179856718, 0.3821768369859855], [0.5856455333979312, 0.5481157466873197], [0.6837525418472052, 0.7631081606132908], [0.5762563348842196, 0.8121616648379277], [0.32159961524732317, 0.538726548173608], [0.2141034082843376, 0.5877800523982449], [0.05755369709671512, 0.5293373496598963], [-0.4799273377182126, 0.7746048707830812]], "bottom_lip": [[0.6837525418472052, 0.7631081606132908], [0.5178136321458711, 0.9687113760255504], [0.30282121821989993, 1.0668183844748242], [0.14627150703227737, 1.0083756817364755], [0.03877530006929186, 1.0574291859611125], [-0.27432412230595316, 0.9405437804844153], [-0.5874235446811982, 0.823658375007718], [-0.4799273377182126, 0.7746048707830812], [0.04816449858300342, 0.7933832678105045], [0.15566070554598901, 0.7443297635858676], [0.41970662369659706, 0.7537189620995791], [0.5762563348842196, 0.8121616648379277]], "transform": {"center": [330.4166666666667, 151.72222222222223], "scale": 8.46313264681175, "angle": 0.4281036239978882}}]},
{"url": "z_face7.jpg", "embedding": [[-0.09054657816886902, 0.0687607005238533, 0.019324932247400284, -0.14614319801330566, -0.07839887589216232, -0.07812240719795227, 0.042713917791843414, -0.09517113864421844, 0.1762205958366394, -0.02776937559247017, 0.23084618151187897, -0.02157021500170231, -0.3686375021934509, -0.020314231514930725, 0.0021469786297529936, 0.17766861617565155, -0.22263559699058533, -0.18872180581092834, -0.08132335543632507, 0.010541863739490509, 0.11742734909057617, 0.024377427995204926, -0.0017358725890517235, 0.10988274216651917, -0.13611015677452087, -0.30138134956359863, -0.01889188028872013, -0.002032035030424595, -0.030340908095240593, -0.08303306251764297, 0.0788525640964508, 0.18284332752227783, -0.16931962966918945, -0.0010897155152633786, 0.11501827836036682, 0.09394002705812454, -0.015002621337771416, -0.2016274780035019, 0.23803620040416718, 0.07267392426729202, -0.26348215341567993, -0.1441098153591156, 0.06936745345592499, 0.2424924671649933, 0.172797292470932, -0.046079326421022415, 0.005404626950621605, -0.07261745631694794, 0.1659730225801468, -0.4230680763721466, -0.002091889502480626, 0.20078043639659882, 0.029433630406856537, 0.05659007653594017, 0.09874126315116882, -0.19432248175144196, 0.08172909915447235, 0.16785816848278046, -0.30588436126708984, -0.009281545877456665, 0.06472252309322357, -0.18826067447662354, 0.020172590389847755, -0.18119928240776062, 0.14907558262348175, 0.08348309993743896, -0.16586601734161377, -0.0782717615365982, 0.17585232853889465, -0.09652874618768692, -0.09363774210214615, 0.07980808615684509, -0.10564195364713669, -0.22920691967010498, -0.2647324204444885, -0.038018617779016495, 0.32853347063064575, 0.22057117521762848, -0.09276065230369568, 0.07533347606658936, -0.07310333102941513, -0.051031727343797684, -0.052286360412836075, 0.08159249275922775, -0.03623753786087036, 0.038105081766843796, -0.11629658937454224, 0.04809436574578285, 0.20547913014888763, 0.02305258996784687, 0.027884282171726227, 0.37460970878601074, -0.05799849331378937, 0.0044019767083227634, 0.010898729786276817, 0.0503612756729126, -0.10833638906478882, -0.005214801989495754, -0.11377287656068802, -0.0330057367682457, 0.007216562516987324, -0.09236008673906326, 0.07486555725336075, 0.14504922926425934, -0.20470142364501953, 0.08738750964403152, -0.052589721977710724, 0.021827956661581993, -0.024468347430229187, -0.11037620157003403, -0.039883848279714584, -0.008996729739010334, 0.06497802585363388, -0.2719978094100952, 0.1597883701324463, 0.14301523566246033, 0.08032359927892685, 0.10185875743627548, 0.014152904972434044, -0.0006571243866346776, 0.010397478938102722, -0.16258291900157928, -0.16877970099449158, -0.06387615203857422, 0.08646593987941742, 0.006504458840936422, 0.018288923427462578, 0.016574712470173836]], "landmarks": [{"chin": [[-2.2162622343480116, -1.027654040262753], [-2.143715887756836, -0.4754990528817604], [-2.0482896926513487, 0.05348669331468076], [-1.9299836490315503, 0.5593031983265706], [-1.7428933635336978, 1.0186365246342373], [-1.4182345942797374, 1.385003493533458], [-1.0020564309685318, 1.6586934976944732], [-0.4943588736000813, 1.8397065371172825], [-0.010554039091782423, 1.8827170037786236], [0.4495027688914847, 1.810749442527928], [0.8624976128300487, 1.5778994600014533], [1.2290092780643898, 1.2762652355969242], [1.4798194337110935, 0.8832563134702702], [1.5920482312558488, 0.42204193480604246], [1.6812524839511727, -0.03902774752306521], [1.7472874954619453, -0.5229772783664842], [1.7902979621232862, -1.0067821128747831]], "left_eyebrow": [[-1.6895916295134918, -1.4914729529591422], [-1.3917195098220847, -1.7235994538100166], [-1.0236161849014227, -1.7719636848708007], [-0.6546446819700407, -1.6821806468349965], [-0.33128817973216107, -1.5230345815806576]], "right_eyebrow": [[0.4978848275176083, -1.4821945599461177], [0.7961910362143756, -1.645247426248698], [1.095220726586743, -1.693177568304122], [1.3951185949698315, -1.6029604412629574], [1.580761917116483, -1.3738725634496043]], "nose_bridge": [[0.08604755426000503, -1.0651482186241916], [0.08778391028144591, -0.7888536804310152], [0.11254481115231815, -0.512703838572959], [0.11428116717375904, -0.23640930037978253]], "nose_tip": [[-0.2520858017254618, 0.08824946887417778], [-0.0906245951092021, 0.1332856842272], [0.09371646002136892, 0.15515265839567077], [0.2547435776322684, 0.1311152392003989], [0.41577069524316795, 0.10707782000512701]], "left_eye": [[-1.249086654336774, -1.0107067414883646], [-1.0194199911829407, -1.104251884237291], [-0.7660053015040758, -1.0828189990741803], [-0.5117224338144901, -0.9232388448144815], [-0.7877275793374263, -0.875453399094178], [-1.0411422690162915, -0.8968862842572886]], "right_eye": [[0.5245267807450416, -0.9067256350454536], [0.7769285960780662, -1.0464645638283625], [1.0073187409075, -1.0248869823301319], [1.192093885043431, -0.933946373613367], [1.0317902491081319, -0.7947862301709382], [0.778375559429267, -0.8162191153340489]], "top_lip": [[-0.6391621741121928, 0.7814456520541601], [-0.34100066175054566, 0.5953682409021482], [-0.08845415008240098, 0.4786538569686705], [0.07300705653385872, 0.5236900723216927], [0.23388947780963815, 0.4766281082769895], [0.41895401461580956, 0.613617806692617], [0.6733815786405151, 0.7962225058017472], [0.5582588543933583, 0.7969459874773477], [0.23533644116083888, 0.7068735567713031], [0.07416462721481931, 0.7078864311171437], [-0.08700718673120025, 0.7088993054629842], [-0.5241841462001561, 0.7576976255291283]], "bottom_lip": [[0.6733815786405151, 0.7962225058017472], [0.44400430815692193, 0.9358167382495362], [0.23707279718227978, 0.9831680949644797], [0.052876438386828824, 0.9843256656454402], [-0.10844007189431083, 0.9623139951418492], [-0.3389749130588646, 0.9177118687941873], [-0.6391621741121928, 0.7814456520541601], [-0.5241841462001561, 0.7576976255291283], [-0.08686249039608018, 0.7319238503124157], [0.07445401988505945, 0.7539355208160065], [0.21260128898164768, 0.753067342805286], [0.5582588543933583, 0.7969459874773477]], "transform": {"center": [406.97222222222223, 294.2361111111111], "scale": 43.43105412249808, "angle": 0.006284355726655041}}]}
]
bg_color = 0;
var fireMove = 1;
function FaceMap() {
this.hairOpacity = 50;
this.bodyColourR = 255;
this.bodyColourG = 50;
this.bodyColourB = 50;
this.skinOpacity = 50;
this.eyeHue = 0;
this.hairLength = 0;
this.eyeBrightness = 0;
this.skinSaturation = 50;
this.draw = function(positions) {
var nose_pos = average_point(positions.nose_bridge);
var eye1_pos = average_point(positions.left_eye);
var eye2_pos = average_point(positions.right_eye);
var eyebrow1_pos = average_point(positions.left_eyebrow);
var eyebrow2_pos = average_point(positions.right_eyebrow);
var half_height = positions.chin[7][1] - nose_pos[1];
var face_width = positions.chin[positions.chin.length-1][0] - positions.chin[0][0];
var fire_pos=[[positions.chin[0][0],positions.chin[0][1]],
[positions.chin[16][0],positions.chin[16][1]],
[positions.chin[3][0],positions.chin[3][1]],
[positions.chin[13][0],positions.chin[13][1]],
[positions.chin[6][0],positions.chin[6][1]],
[positions.chin[10][0],positions.chin[10][1]],
[positions.chin[8][0],positions.chin[8][1]]]
var fire_pos2=[[positions.chin[0][0],positions.chin[0][1]],
[positions.chin[16][0],positions.chin[16][1]],
[positions.chin[4][0],positions.chin[4][1]],
[positions.chin[12][0],positions.chin[12][1]],
[positions.chin[8][0],positions.chin[8][1]]]
var x = nose_pos[0];
var y = nose_pos[1];
var w = 2 * face_width;
var h = 2.5 * half_height;
noStroke();
//make fire animate
fireMove = fireMove+0.05;
function occilation(n){return Math.sin(fireMove+n)*0.1}
var extent = 0;
if(h < w) {
extent = h / 2;
}
else {
extent = w / 2;
}
var scale2 = extent / 220.0;
var curHairLength = map(this.hairLength, 0, 100, -0.5, 1.5);
//fire1 (back layer of fire it is like the hair)
var fh=[-2, -2.2, -3.2,-3.2,-3.9,-3.8,-4.5]
var fw=[-0.6, 0.6, -0.4,0.4, -0.2,0.2,0]
var curHairOpacity = map(this.hairOpacity, 0, 100, 180, 30);
var curRed = map(this.bodyColourR, 0, 100, 0, 255);
var curGreen = map(this.bodyColourG, 0, 100, 0, 180);
var curBlue = map(this.bodyColourB, 0, 100, 0, 180);
fill(curRed, curGreen, curBlue, curHairOpacity);
push();
scale(1.05,1);
translate(0,-0.3);
for(var n=0; n<fw.length;n++) {
beginShape();
for(var i=1; i<positions.chin.length-8;i++) {
vertex(positions.chin[i][0]-0.15, positions.chin[i][1]);
}
for(var i=8; i<positions.chin.length-1;i++) {
vertex(positions.chin[i][0]+0.15, positions.chin[i][1]);
}
vertex(fire_pos[n][0]+fw[n]+occilation(n), fh[n]+curHairLength);
endShape(CLOSE);
}
pop();
//fire2
var fh=[ -2,-2.2,-3,-3,-3.3]
var fw=[ -0.4,0.4, -0.2,0.2,0]
var curHairOpacity = map(this.hairOpacity, 0, 100, 180, 30);
var curRed = map(this.bodyColourR, 0, 100, 0, 255);
var curGreen = map(this.bodyColourG, 0, 100, 0, 230);
var curBlue = map(this.bodyColourB, 0, 100, 0, 230);
fill(curRed, curGreen, curBlue, curHairOpacity);
push();
translate(0,-0.3);
for(var n=0; n<fw.length;n++) {
beginShape();
for(var i=0; i<positions.chin.length-8;i++) {
vertex(positions.chin[i][0]-0.15, positions.chin[i][1]);
}
for(var i=8; i<positions.chin.length;i++) {
vertex(positions.chin[i][0]+0.15, positions.chin[i][1]);
}
vertex(fire_pos2[n][0]+fw[n]+occilation(n), fh[n]+curHairLength/2);
endShape(CLOSE);
}
pop();
//face
push();
translate(0,-0.4);
var curSkinOpacity = map(this.skinOpacity, 0, 100, 1, 0);
var curSkinSaturation = map(this.skinSaturation, 0, 100, 0,100);
colorMode(HSB);
fill(34, curSkinSaturation, 100, curSkinOpacity);
beginShape();
for(var i=1; i<positions.chin.length-1;i++) {
vertex(positions.chin[i][0], positions.chin[i][1]);
}
vertex(positions.chin[16][0]-0.2, -0.8);
vertex(positions.chin[16][0]-0.5, -1.3);
vertex(positions.chin[16][0]-1, -1.8);
vertex(0+occilation(n), -2.3);
vertex(positions.chin[0][0]+1, -1.8);
vertex(positions.chin[0][0]+0.5, -1.3);
vertex(positions.chin[0][0]+0.2, -0.8);
endShape(CLOSE);
pop();
// mouth
noStroke();
fill(34, curSkinSaturation,100,curSkinOpacity);
beginShape();
for(var i=0; i<positions.top_lip.length;i++) {
vertex(positions.top_lip[i][0], positions.top_lip[i][1]);
}
endShape(CLOSE);
beginShape();
for(var i=0; i<positions.bottom_lip.length;i++) {
vertex(positions.bottom_lip[i][0], positions.bottom_lip[i][1]);
}
endShape(CLOSE);
colorMode(RGB);
// inside of mouth
fill(bg_color);
beginShape();
for(var i=6; i<positions.bottom_lip.length;i++) {
vertex(positions.bottom_lip[i][0], positions.bottom_lip[i][1]);
}
for(var i=6; i<positions.top_lip.length;i++) {
vertex(positions.top_lip[i][0], positions.top_lip[i][1]);
}
endShape(CLOSE);
fill(bg_color);
// nose
beginShape();
for(var i=0; i<positions.nose_tip.length;i++) {
vertex(positions.nose_tip[i][0], positions.nose_tip[i][1]);
}
endShape(CLOSE);
// eyes
fill(255);
ellipse(eye1_pos[0], eye1_pos[1]+0.6, 0.8, 0.8);
ellipse(eye2_pos[0], eye2_pos[1]+0.6, 0.8, 0.8);
//pupil
colorMode(HSB);
var curEyeHue = map(this.eyeHue, 0, 100, 0, 360);
var curEyeBrightness = map(this.eyeBrightness, 0, 100, 0, 100);
fill(curEyeHue,50,curEyeBrightness);
ellipse(eye1_pos[0], eye1_pos[1]+0.6, 0.6, 0.6);
ellipse(eye2_pos[0], eye2_pos[1]+0.6, 0.6, 0.6);
colorMode(RGB);
fill(0);
ellipse(eye1_pos[0], eye1_pos[1]+0.6, 0.4, 0.4);
ellipse(eye2_pos[0], eye2_pos[1]+0.6, 0.4, 0.4);
fill(255);
ellipse(eye1_pos[0]+0.17, eye1_pos[1]+0.53, 0.15, 0.14);
ellipse(eye2_pos[0]+0.17, eye2_pos[1]+0.53, 0.15, 0.14);
//eyebrows
colorMode(HSB);
fill(34, curSkinSaturation, 100, curSkinOpacity);
push();
translate(0,0.5);
beginShape();
for(var i=0; i<positions.right_eyebrow.length; i++) {
vertex(positions.right_eyebrow[i][0], positions.right_eyebrow[i][1]);
}
vertex(positions.right_eyebrow[3][0], positions.right_eyebrow[3][1]+0.08);
vertex(positions.right_eyebrow[2][0], positions.right_eyebrow[2][1]+0.1); vertex(positions.right_eyebrow[1][0], positions.right_eyebrow[1][1]+0.11);
vertex(positions.right_eyebrow[0][0], positions.right_eyebrow[0][1]+0.12);
endShape(CLOSE);
beginShape();
for(var i=0; i<positions.left_eyebrow.length; i++) {
vertex(positions.left_eyebrow[i][0], positions.left_eyebrow[i][1]);
}
vertex(positions.left_eyebrow[4][0], positions.left_eyebrow[4][1]+0.12);
vertex(positions.left_eyebrow[3][0], positions.left_eyebrow[3][1]+0.11);
vertex(positions.left_eyebrow[2][0], positions.left_eyebrow[2][1]+0.1);
vertex(positions.left_eyebrow[1][0], positions.left_eyebrow[1][1]+0.08);
endShape(CLOSE);
pop();
colorMode(RGB);
var curHairOpacity = map(this.hairOpacity, 0, 100, 0, 255);
fill(0, curHairOpacity);
push();
translate(0,0.5);
beginShape();
for(var i=0; i<positions.right_eyebrow.length; i++) {
vertex(positions.right_eyebrow[i][0], positions.right_eyebrow[i][1]);
}
vertex(positions.right_eyebrow[3][0], positions.right_eyebrow[3][1]+0.08);
vertex(positions.right_eyebrow[2][0], positions.right_eyebrow[2][1]+0.1); vertex(positions.right_eyebrow[1][0], positions.right_eyebrow[1][1]+0.11);
vertex(positions.right_eyebrow[0][0], positions.right_eyebrow[0][1]+0.12);
endShape(CLOSE);
beginShape();
for(var i=0; i<positions.left_eyebrow.length; i++) {
vertex(positions.left_eyebrow[i][0], positions.left_eyebrow[i][1]);
}
vertex(positions.left_eyebrow[4][0], positions.left_eyebrow[4][1]+0.12);
vertex(positions.left_eyebrow[3][0], positions.left_eyebrow[3][1]+0.11);
vertex(positions.left_eyebrow[2][0], positions.left_eyebrow[2][1]+0.1);
vertex(positions.left_eyebrow[1][0], positions.left_eyebrow[1][1]+0.08);
endShape(CLOSE);
pop();
strokeWeight(1);
pop();
}
this.randomize = function(values, size) {
this.fireOpacity = focusedRandom(0, 250, 5);
this.flameSpread=focusedRandom(0,0);
}
/* set internal properties based on list numbers 0-100 */
this.setProperties = function(settings) {
this.hairOpacity = settings[0];
this.bodyColourR = settings[1];
this.bodyColourG = settings[2];
this.bodyColourB = settings[3];
this.skinOpacity = settings[4];
this.eyeHue = settings[5];
this.eyeBrightness = settings[6];
this.hairLength = settings[7];
this.skinSaturation = settings[8];
}
/* get internal properties as list of numbers 0-100 */
this.getProperties = function() {
properties = new Array(8);
properties[0] = this.hairOpacity;
properties[1] = this.bodyColourR;
properties[2] = this.bodyColourG;
properties[3] = this.bodyColourB;
properties[4] = this.skinOpacity;
properties[5] = this.eyeHue;
properties[6]= this.eyeBrightness;
properties[7]= this.hairLength;
properties[8]= this.skinSaturation;
return properties;
}
}
// given a point, return the average
function average_point(list) {
var sum_x = 0;
var sum_y = 0;
var num_points = 0;
for(var i=0; i<list.length; i++) {
sum_x += list[i][0];
sum_y += list[i][1];
num_points += 1;
}
return [sum_x / num_points, sum_y / num_points];
}
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/p5.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.js"></script>
<script src="z_clmtrackr.js"></script>
<script src="z_model_pca_20_svm.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/seedrandom/2.4.0/seedrandom.min.js"></script>
<script src="https://d3js.org/d3-random.v1.min.js"></script>
<script language="javascript" type="text/javascript" src=".purview_helper.js"></script>
<script language="javascript" type="text/javascript" src=".focused_random.js"></script>
<script language="javascript" type="text/javascript" src="kdTree.js"></script>
<script language="javascript" type="text/javascript" src="face.js"></script>
<script language="javascript" type="text/javascript" src="facemap.js"></script>
<script language="javascript" type="text/javascript" src="sketch.js"></script>
<style>
body { padding: 0; margin: 0; }
.inner { position: absolute; }
#controls {
font: 300 12px "Helvetica Neue";
padding: 5;
margin: 5;
background: #f0f0f0;
opacity: 0.0;
-webkit-transition: opacity 0.2s ease;
-moz-transition: opacity 0.2s ease;
-o-transition: opacity 0.2s ease;
-ms-transition: opacity 0.2s ease;
}
#controls:hover { opacity: 0.9; }
</style>
</head>
<body style="background-color:white">
<div class="outer">
<div class="inner" id="controls" height="500">
<table>
<tr>
<td>Hair opacity</td>
<td id="slider1Container"></td>
</tr>
<tr>
<td>Hair Red value</td>
<td id="slider2Container"></td>
</tr>
<tr>
<td>Hair Green value</td>
<td id="slider3Container"></td>
</tr>
<tr>
<td>Hair Blue value</td>
<td id="slider4Container"></td>
</tr>
<tr>
<td>Skin Opacity</td>
<td id="slider5Container"></td>
</tr>
<tr>
<td>Eye Hue</td>
<td id="slider6Container"></td>
</tr>
<tr>
<td>Eye Brightness</td>
<td id="slider7Container"></td>
</tr>
<tr>
<td>Hair Length</td>
<td id="slider8Container"></td>
</tr>
<tr>
<td>Skin Saturation</td>
<td id="slider9Container"></td>
</tr>
<tr>
</tr>
<tr>
<td>show target</td>
<td id="sliderTintContainer"></td>
</tr>
<tr>
<td>Draw function</td>
<td id="selector1Container"></td>
</tr>
<tr>
<td></td>
<td id="button1Container"></td>
</tr>
<tr>
<td></td>
<td id="button2Container"></td>
</tr>
<tr>
<td></td>
<td id="button3Container"></td>
</tr>
<tr>
<td></td>
<td id="button4Container"></td>
</tr>
</table>
</div>
<div>
<div id="canvasContainer"></div>
</div>
</div>
<pre>
<p id="output">
</p>
</pre>
</body>
/**
* k-d Tree JavaScript - V 1.01
*
* https://github.com/ubilabs/kd-tree-javascript
*
* @author Mircea Pricop <pricop@ubilabs.net>, 2012
* @author Martin Kleppe <kleppe@ubilabs.net>, 2012
* @author Ubilabs http://ubilabs.net, 2012
* @license MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(['exports'], factory);
} else if (typeof exports === 'object') {
factory(exports);
} else {
factory((root.commonJsStrict = {}));
}
}(this, function (exports) {
function Node(obj, dimension, parent) {
this.obj = obj;
this.left = null;
this.right = null;
this.parent = parent;
this.dimension = dimension;
}
function kdTree(points, metric, dimensions) {
var self = this;
function buildTree(points, depth, parent) {
var dim = depth % dimensions.length,
median,
node;
if (points.length === 0) {
return null;
}
if (points.length === 1) {
return new Node(points[0], dim, parent);
}
points.sort(function (a, b) {
return a[dimensions[dim]] - b[dimensions[dim]];
});
median = Math.floor(points.length / 2);
node = new Node(points[median], dim, parent);
node.left = buildTree(points.slice(0, median), depth + 1, node);
node.right = buildTree(points.slice(median + 1), depth + 1, node);
return node;
}
// Reloads a serialied tree
function loadTree (data) {
// Just need to restore the `parent` parameter
self.root = data;
function restoreParent (root) {
if (root.left) {
root.left.parent = root;
restoreParent(root.left);
}
if (root.right) {
root.right.parent = root;
restoreParent(root.right);
}
}
restoreParent(self.root);
}
// If points is not an array, assume we're loading a pre-built tree
if (!Array.isArray(points)) loadTree(points, metric, dimensions);
else this.root = buildTree(points, 0, null);
// Convert to a JSON serializable structure; this just requires removing
// the `parent` property
this.toJSON = function (src) {
if (!src) src = this.root;
var dest = new Node(src.obj, src.dimension, null);
if (src.left) dest.left = self.toJSON(src.left);
if (src.right) dest.right = self.toJSON(src.right);
return dest;
};
this.insert = function (point) {
function innerSearch(node, parent) {
if (node === null) {
return parent;
}
var dimension = dimensions[node.dimension];
if (point[dimension] < node.obj[dimension]) {
return innerSearch(node.left, node);
} else {
return innerSearch(node.right, node);
}
}
var insertPosition = innerSearch(this.root, null),
newNode,
dimension;
if (insertPosition === null) {
this.root = new Node(point, 0, null);
return;
}
newNode = new Node(point, (insertPosition.dimension + 1) % dimensions.length, insertPosition);
dimension = dimensions[insertPosition.dimension];
if (point[dimension] < insertPosition.obj[dimension]) {
insertPosition.left = newNode;
} else {
insertPosition.right = newNode;
}
};
this.remove = function (point) {
var node;
function nodeSearch(node) {
if (node === null) {
return null;
}
if (node.obj === point) {
return node;
}
var dimension = dimensions[node.dimension];
if (point[dimension] < node.obj[dimension]) {
return nodeSearch(node.left, node);
} else {
return nodeSearch(node.right, node);
}
}
function removeNode(node) {
var nextNode,
nextObj,
pDimension;
function findMin(node, dim) {
var dimension,
own,
left,
right,
min;
if (node === null) {
return null;
}
dimension = dimensions[dim];
if (node.dimension === dim) {
if (node.left !== null) {
return findMin(node.left, dim);
}
return node;
}
own = node.obj[dimension];
left = findMin(node.left, dim);
right = findMin(node.right, dim);
min = node;
if (left !== null && left.obj[dimension] < own) {
min = left;
}
if (right !== null && right.obj[dimension] < min.obj[dimension]) {
min = right;
}
return min;
}
if (node.left === null && node.right === null) {
if (node.parent === null) {
self.root = null;
return;
}
pDimension = dimensions[node.parent.dimension];
if (node.obj[pDimension] < node.parent.obj[pDimension]) {
node.parent.left = null;
} else {
node.parent.right = null;
}
return;
}
// If the right subtree is not empty, swap with the minimum element on the
// node's dimension. If it is empty, we swap the left and right subtrees and
// do the same.
if (node.right !== null) {
nextNode = findMin(node.right, node.dimension);
nextObj = nextNode.obj;
removeNode(nextNode);
node.obj = nextObj;
} else {
nextNode = findMin(node.left, node.dimension);
nextObj = nextNode.obj;
removeNode(nextNode);
node.right = node.left;
node.left = null;
node.obj = nextObj;
}
}
node = nodeSearch(self.root);
if (node === null) { return; }
removeNode(node);
};
this.nearest = function (point, maxNodes, maxDistance) {
var i,
result,
bestNodes;
bestNodes = new BinaryHeap(
function (e) { return -e[1]; }
);
function nearestSearch(node) {
var bestChild,
dimension = dimensions[node.dimension],
ownDistance = metric(point, node.obj),
linearPoint = {},
linearDistance,
otherChild,
i;
function saveNode(node, distance) {
bestNodes.push([node, distance]);
if (bestNodes.size() > maxNodes) {
bestNodes.pop();
}
}
for (i = 0; i < dimensions.length; i += 1) {
if (i === node.dimension) {
linearPoint[dimensions[i]] = point[dimensions[i]];
} else {
linearPoint[dimensions[i]] = node.obj[dimensions[i]];
}
}
linearDistance = metric(linearPoint, node.obj);
if (node.right === null && node.left === null) {
if (bestNodes.size() < maxNodes || ownDistance < bestNodes.peek()[1]) {
saveNode(node, ownDistance);
}
return;
}
if (node.right === null) {
bestChild = node.left;
} else if (node.left === null) {
bestChild = node.right;
} else {
if (point[dimension] < node.obj[dimension]) {
bestChild = node.left;
} else {
bestChild = node.right;
}
}
nearestSearch(bestChild);
if (bestNodes.size() < maxNodes || ownDistance < bestNodes.peek()[1]) {
saveNode(node, ownDistance);
}
if (bestNodes.size() < maxNodes || Math.abs(linearDistance) < bestNodes.peek()[1]) {
if (bestChild === node.left) {
otherChild = node.right;
} else {
otherChild = node.left;
}
if (otherChild !== null) {
nearestSearch(otherChild);
}
}
}
if (maxDistance) {
for (i = 0; i < maxNodes; i += 1) {
bestNodes.push([null, maxDistance]);
}
}
if(self.root)
nearestSearch(self.root);
result = [];
for (i = 0; i < Math.min(maxNodes, bestNodes.content.length); i += 1) {
if (bestNodes.content[i][0]) {
result.push([bestNodes.content[i][0].obj, bestNodes.content[i][1]]);
}
}
return result;
};
this.balanceFactor = function () {
function height(node) {
if (node === null) {
return 0;
}
return Math.max(height(node.left), height(node.right)) + 1;
}
function count(node) {
if (node === null) {
return 0;
}
return count(node.left) + count(node.right) + 1;
}
return height(self.root) / (Math.log(count(self.root)) / Math.log(2));
};
}
// Binary heap implementation from:
// http://eloquentjavascript.net/appendix2.html
function BinaryHeap(scoreFunction){
this.content = [];
this.scoreFunction = scoreFunction;
}
BinaryHeap.prototype = {
push: function(element) {
// Add the new element to the end of the array.
this.content.push(element);
// Allow it to bubble up.
this.bubbleUp(this.content.length - 1);
},
pop: function() {
// Store the first element so we can return it later.
var result = this.content[0];
// Get the element at the end of the array.
var end = this.content.pop();
// If there are any elements left, put the end element at the
// start, and let it sink down.
if (this.content.length > 0) {
this.content[0] = end;
this.sinkDown(0);
}
return result;
},
peek: function() {
return this.content[0];
},
remove: function(node) {
var len = this.content.length;
// To remove a value, we must search through the array to find
// it.
for (var i = 0; i < len; i++) {
if (this.content[i] == node) {
// When it is found, the process seen in 'pop' is repeated
// to fill up the hole.
var end = this.content.pop();
if (i != len - 1) {
this.content[i] = end;
if (this.scoreFunction(end) < this.scoreFunction(node))
this.bubbleUp(i);
else
this.sinkDown(i);
}
return;
}
}
throw new Error("Node not found.");
},
size: function() {
return this.content.length;
},
bubbleUp: function(n) {
// Fetch the element that has to be moved.
var element = this.content[n];
// When at 0, an element can not go up any further.
while (n > 0) {
// Compute the parent element's index, and fetch it.
var parentN = Math.floor((n + 1) / 2) - 1,
parent = this.content[parentN];
// Swap the elements if the parent is greater.
if (this.scoreFunction(element) < this.scoreFunction(parent)) {
this.content[parentN] = element;
this.content[n] = parent;
// Update 'n' to continue at the new position.
n = parentN;
}
// Found a parent that is less, no need to move it further.
else {
break;
}
}
},
sinkDown: function(n) {
// Look up the target element and its score.
var length = this.content.length,
element = this.content[n],
elemScore = this.scoreFunction(element);
while(true) {
// Compute the indices of the child elements.
var child2N = (n + 1) * 2, child1N = child2N - 1;
// This is used to store the new position of the element,
// if any.
var swap = null;
// If the first child exists (is inside the array)...
if (child1N < length) {
// Look it up and compute its score.
var child1 = this.content[child1N],
child1Score = this.scoreFunction(child1);
// If the score is less than our element's, we need to swap.
if (child1Score < elemScore)
swap = child1N;
}
// Do the same checks for the other child.
if (child2N < length) {
var child2 = this.content[child2N],
child2Score = this.scoreFunction(child2);
if (child2Score < (swap == null ? elemScore : child1Score)){
swap = child2N;
}
}
// If the element needs to be moved, swap it, and continue.
if (swap != null) {
this.content[n] = this.content[swap];
this.content[swap] = element;
n = swap;
}
// Otherwise, we are done.
else {
break;
}
}
}
};
this.kdTree = kdTree;
exports.kdTree = kdTree;
exports.BinaryHeap = BinaryHeap;
}));
{"url": "z_face8.jpg", "embedding": [[-0.07366477698087692, 0.015982771292328835, 0.07945959270000458, -0.019704757258296013, -0.10071809589862823, 0.03448658809065819, -0.10153377801179886, -0.08838443458080292, 0.11784766614437103, -0.17035245895385742, 0.15557356178760529, 0.013211293146014214, -0.27396756410598755, 0.06051166355609894, -0.14918385446071625, 0.22319991886615753, -0.09944432973861694, -0.17801406979560852, -0.10496482253074646, -0.019250886514782906, 0.05584942549467087, 0.04958358407020569, -0.009414121508598328, 0.09827535599470139, -0.05211017653346062, -0.39807912707328796, -0.05807466432452202, -0.12141543626785278, -0.05766219273209572, -0.036314353346824646, -0.017180906608700752, 0.0035574876237660646, -0.19091174006462097, 0.09491188079118729, -0.0001493302988819778, 0.05549131706357002, 0.01786057837307453, -0.13059461116790771, 0.11950415372848511, 0.03782893344759941, -0.2653482258319855, 0.08386091887950897, 0.09699011594057083, 0.25112542510032654, 0.18659421801567078, -0.02601395547389984, 0.08397570252418518, -0.08201673626899719, 0.14784850180149078, -0.3782331347465515, 0.04033203423023224, 0.06324423104524612, 0.17830953001976013, 0.06676166504621506, 0.11897297948598862, -0.17839697003364563, 0.08071909844875336, 0.03748588636517525, -0.16274943947792053, 0.12495102733373642, -0.016911232843995094, -0.05314052850008011, 0.019699405878782272, -0.02311018481850624, 0.2587399184703827, 0.13134104013442993, -0.13256986439228058, -0.0699533000588417, 0.1781129240989685, -0.2304617315530777, 0.008809871040284634, 0.04833691194653511, -0.1128450557589531, -0.1970694661140442, -0.27022072672843933, -0.006751078646630049, 0.47430017590522766, 0.21742521226406097, -0.2037784606218338, 0.1354561597108841, -0.09043536335229874, 0.05631078779697418, 0.006472406443208456, 0.16465771198272705, -0.0075601148419082165, 0.03357524797320366, -0.10979335755109787, 0.06691662967205048, 0.27550360560417175, -0.06534100323915482, 0.02039615996181965, 0.33989983797073364, 0.02108818292617798, -0.01842835173010826, 0.03339257463812828, 0.08271656185388565, -0.09839294850826263, -0.11107135564088821, -0.07333073765039444, -0.028887782245874405, -0.055518683046102524, -0.016951849684119225, 0.012387237511575222, 0.009654337540268898, -0.23014244437217712, 0.1042972207069397, -0.09724655747413635, -0.014941051602363586, 0.05437126383185387, 0.07886593043804169, -0.026907488703727722, -0.04154333472251892, 0.09721966832876205, -0.24316905438899994, 0.1623178869485855, 0.14158789813518524, 0.03645704314112663, 0.15173426270484924, -0.002637565601617098, 0.06911678612232208, -0.005114764906466007, -0.09864915162324905, -0.12413468211889267, -0.10265660285949707, 0.01606181636452675, -0.045103076845407486, -0.020021650940179825, 0.05594230070710182], [-0.09013285487890244, 0.04305876046419144, 0.1794896125793457, -0.06089919060468674, -0.046366218477487564, 0.021149612963199615, -0.07179740816354752, -0.08865059167146683, 0.10147728770971298, -0.11196206510066986, 0.15133261680603027, -0.08032812178134918, -0.2587674856185913, 0.0292984452098608, -0.1451120227575302, 0.1439678817987442, -0.12702982127666473, -0.15233197808265686, -0.10771193355321884, -0.019404063001275063, 0.03166297823190689, 0.050048038363456726, 0.009932599030435085, 0.040491729974746704, -0.1123540922999382, -0.361428439617157, 0.00442080432549119, -0.11230122298002243, -0.0342160165309906, -0.005589094012975693, -0.04333861172199249, 0.05339350178837776, -0.25103887915611267, 0.04507780820131302, 0.03659801930189133, 0.13916614651679993, -0.014097608625888824, -0.06091563031077385, 0.12155047059059143, -0.055203210562467575, -0.22576084733009338, 0.029961368069052696, 0.10857772082090378, 0.20690898597240448, 0.20132490992546082, 0.009439964778721333, 0.0030239231418818235, -0.06184868887066841, 0.09817779064178467, -0.37584763765335083, 0.01025518961250782, 0.12447327375411987, 0.08615047484636307, 0.08829937875270844, 0.08419010788202286, -0.27601903676986694, 0.033810120075941086, 0.06090134382247925, -0.1038602665066719, 0.14067164063453674, -0.04825354367494583, -0.13384941220283508, -0.00014272013504523784, -0.033588189631700516, 0.22436898946762085, 0.060502488166093826, -0.16192947328090668, -0.08297190815210342, 0.16385090351104736, -0.14975912868976593, 0.1151883453130722, 0.1278725415468216, -0.1113944873213768, -0.17377394437789917, -0.219862699508667, 0.0034487906377762556, 0.490170955657959, 0.12712612748146057, -0.2121368944644928, 0.05115961283445358, -0.14865219593048096, 0.03674544766545296, -0.019648723304271698, 0.10049863904714584, -0.01766241528093815, 0.03122694417834282, -0.11898370832204819, 0.06207537278532982, 0.22970283031463623, -0.07131436467170715, 0.014456457458436489, 0.25367578864097595, -0.04061487689614296, -0.006388810928910971, -0.005698674824088812, 0.043297942727804184, -0.14730972051620483, -0.06880361586809158, -0.14094874262809753, -0.043327633291482925, -0.020320937037467957, -0.09188533574342728, -0.023886438459157944, 0.07918477803468704, -0.22039692103862762, 0.08506499230861664, -0.04360922798514366, -0.04895613715052605, 0.05545647069811821, 0.03052748553454876, -0.024365011602640152, -0.04501590505242348, 0.17152895033359528, -0.2574447691440582, 0.20052476227283478, 0.19195100665092468, 0.06139722093939781, 0.18846361339092255, 0.03908076509833336, 0.059905581176280975, 0.02433038502931595, -0.0188128799200058, -0.10196796804666519, -0.09644407033920288, -0.0036082551814615726, -0.03353893756866455, -1.8697490986596677e-06, 0.020128384232521057]], "landmarks": [{"chin": [[-1.383083106362361, -0.747594133753903], [-1.4329204781407643, -0.2804350052167273], [-1.3523257495793892, 0.11559319684614167], [-1.2717310210180142, 0.5116213989090106], [-1.0583382415950937, 0.9029176999283455], [-0.8449454621721734, 1.2942140009476801], [-0.6339186332710203, 1.6191112765362423], [-0.35649277893909415, 1.9416426016030375], [-0.01976575074169673, 2.0626108998557475], [0.3762624513211722, 1.9820161712943725], [0.8339577777712797, 1.766257441349685], [1.2916531042213872, 1.5504987114049975], [1.7446165296279605, 1.2019419305987649], [2.060050003129455, 0.7253189999745209], [2.173920449816863, 0.18939489548480548], [2.2877908965042724, -0.34652920900490997], [2.3352623177609084, -0.8800873629728584]], "left_eyebrow": [[-1.342709536671026, -1.4803493640141696], [-1.2146433868530147, -1.6178793159192488], [-0.9514132356516911, -1.6937421434370898], [-0.7522161593593732, -1.700839995002391], [-0.548287182023521, -1.5751397957061468]], "right_eyebrow": [[0.1797361471932112, -1.667564276876357], [0.5069993733035405, -1.8121920803467377], [0.9053935258881765, -1.82638778347734], [1.242120554085574, -1.70541948522463], [1.5812135328047385, -1.5180521615411475]], "nose_bridge": [[-0.1997304012172883, -1.1221763702995735], [-0.25666562456099273, -0.8542143180547157], [-0.31123489738293003, -0.5198532403790853], [-0.3681701207266345, -0.25189118813422756]], "nose_tip": [[-0.5579033949318843, 0.020802765154164276], [-0.3563403681177992, 0.08010393901963575], [-0.22117636673448682, 0.14177106340687431], [-0.024345240963935866, 0.06827418641080045], [0.17248588480661506, -0.005222690585273386]], "left_eye": [[-1.1245848562045715, -0.9562550121332891], [-0.9301196809557876, -1.0961509145601358], [-0.7332885551852367, -1.1696477915562093], [-0.5269936273276175, -0.9775485668291927], [-0.7238247530981685, -0.9040516898331189], [-0.9894208548212592, -0.8945878877460507]], "right_eye": [[0.40259272870319984, -1.0106718741339316], [0.6634569293827564, -1.1529337270825453], [0.8626540056750744, -1.1600315786478463], [1.132982008441699, -1.0366973298733693], [0.9361508826711482, -0.9632004528772955], [0.6705547809480575, -0.9537366507902272]], "top_lip": [[-0.7358069165282988, 0.6254918455964195], [-0.6077407667102874, 0.48796189369134], [-0.3445106155089639, 0.4120990661734991], [-0.21171256464741856, 0.407367165129965], [0.0538835370756721, 0.39790336304289675], [0.38824461475130245, 0.45247263586483416], [0.7937366189012397, 0.6374740090265496], [0.6609385680396944, 0.6422059100700838], [0.060981388640973286, 0.5971004393352147], [-0.1382156876513447, 0.6041982909005159], [-0.3397787144654298, 0.5448971170350444], [-0.667041940575759, 0.689524920505425]], "bottom_lip": [[0.7937366189012397, 0.6374740090265496], [0.4759371948779787, 1.047697914220021], [0.08227494333687682, 1.1946916682121689], [-0.11455618243367412, 1.2681885452082424], [-0.31611920924775916, 1.2088873713427712], [-0.588813162536151, 1.0191540971375215], [-0.7358069165282988, 0.6254918455964195], [-0.667041940575759, 0.689524920505425], [-0.3255830113348274, 0.9432912696196804], [-0.12401998452074235, 1.0025924434851519], [0.07281114124980859, 0.929095566489078], [0.6609385680396944, 0.6422059100700838]], "transform": {"center": [242.40277777777777, 74.98611111111111], "scale": 15.050910261222011, "angle": 0.03561723910666181}}, {"chin": [[-2.155117639044047, -0.6837255466787217], [-2.1745793552390245, -0.221204887545963], [-2.058139124512418, 0.23904557358993084], [-1.9416988937858115, 0.699296034725825], [-1.7441715345056277, 1.1310039876792835], [-1.3844699181182887, 1.505626924267871], [-1.0533108099133852, 1.7991627323028812], [-0.5599774446013267, 2.03561352397302], [-0.04264196710056167, 2.081347550353569], [0.44615100221776793, 2.04599444818054], [0.82304413680322, 1.8221947787147852], [1.090307634652659, 1.5458504888778881], [1.3004861161372272, 1.107331941933836], [1.4558497792537886, 0.6425410848042129], [1.5301263138167727, 0.20629273585702534], [1.5758603401973215, -0.3110427416437397], [1.5690497462067279, -0.7187485824084916]], "left_eyebrow": [[-1.5132312046060203, -1.3197714529029576], [-1.245967706756581, -1.5961157427398547], [-0.8953468823567003, -1.765100593837603], [-0.5139133517775193, -1.7170963694601902], [-0.18502444156948017, -1.559462508346764]], "right_eyebrow": [[0.3037685277488494, -1.5948156105197928], [0.6281170419631594, -1.708985643249535], [0.9261932459918985, -1.7683408576112705], [1.2550821561999375, -1.6107069964978444], [1.4217968093008215, -1.3959881190195471]], "nose_bridge": [[0.0935900462642813, -1.1562970635757408], [0.12440275244358134, -0.9393079881005794], [0.21003027699088778, -0.6960466024398468], [0.2408429831701877, -0.47905752696468523]], "nose_tip": [[-0.21486708197197735, -0.09081340239491081], [-0.024150316682386846, -0.0668112902062043], [0.22138126697521016, -0.016536867831926774], [0.38355552408236515, -0.07362188419679777], [0.5457297811895202, -0.13070690056166873]], "left_eye": [[-1.1535295882186811, -0.94514851631437], [-0.9388107107403842, -1.1118631694152539], [-0.6670068168972163, -1.116403565408983], [-0.44774754342519024, -1.011314324666699], [-0.6361941107179163, -0.8994144899338214], [-0.9079980045610845, -0.8948740939400925]], "right_eye": [[0.47729377484032676, -0.9723908922767437], [0.6920126523186239, -1.1391055453776278], [0.9375442359762208, -1.08883112300335], [1.0757163808946695, -0.9551993740786308], [0.9135421237875143, -0.8981143577137598], [0.7228253584979238, -0.9221164699024664]], "top_lip": [[-0.773396189859562, 0.6525919425684736], [-0.3702307450885389, 0.37397745473471217], [-0.045882230874228894, 0.25980742200497026], [0.1996493527833681, 0.3100818443792478], [0.36182360989052315, 0.2529968280143768], [0.6096253915449846, 0.43917319731023835], [0.7500677344602976, 0.7087068931565419], [0.6141657875387136, 0.7109770911534063], [0.3378214977018166, 0.4437135933039673], [0.2019195507802326, 0.44598379130083177], [-0.01506952469492892, 0.47679649748013175], [-0.637494242937978, 0.6503217445716092]], "bottom_lip": [[0.7500677344602976, 0.7087068931565419], [0.511346744793294, 1.0661383115470164], [0.2680853591325615, 1.1517658360943228], [0.05109628365739999, 1.1825785422736228], [-0.194435300000197, 1.132304119899345], [-0.4685093918402295, 1.0009425689714901], [-0.773396189859562, 0.6525919425684736], [-0.637494242937978, 0.6503217445716092], [-0.14416087762591953, 0.8867725362417482], [0.046555887663671025, 0.9107746484304549], [0.2372726529532615, 0.9347767606191614], [0.6141657875387136, 0.7109770911534063]], "transform": {"center": [512.8333333333334, 87.81944444444444], "scale": 16.451243784829803, "angle": -0.44694448649038465}}]}
{
"commits": [
{
"sha": "c0d4ae267ec9ba7b2f82a02bb197e09e7c7a66f4",
"name": "final_version"
},
{
"sha": "30aa8da53b67467d22be0d913a0bbfb50a5d74a4",
"name": "version_2"
},
{
"sha": "e3b51e3bef04703b90c85031d93210a66a0ca8b9",
"name": "version_1"
}
]
}
var canvasWidth = 960;
var canvasHeight = 500;
var button;
var curRandomSeed;
var mainFace;
var faceImages = [];
var curFaceIndex = 0;
var curTrainIndex = 0;
var curValidIndex = 0;
var main_canvas;
var faceSelector;
var facelist = [];
var NUMFACES = 6*9;
var sliders = [];
var NUM_SLIDERS = 9;
var sliderTint;
var faceData = [
{"landmarks": [{"nose_bridge": [[-0.09083664800859323, -1.1331171913324525], [-0.08996869920096179, -0.7900363379039251], [-0.08910075039333033, -0.4469554844753977], [-0.08823280158569889, -0.10387463104687027]], "left_eyebrow": [[-1.4637609493587556, -1.3671629100139842], [-1.2796259928409857, -1.6051477809763048], [-0.9895271050493772, -1.6850547038354993], [-0.6727703212070726, -1.6594650524711185], [-0.38220407636520126, -1.5546361311764905]], "left_eye": [[-1.119945677708386, -1.0777316751513233], [-0.9354768947261425, -1.1837623717180563], [-0.7243502156932026, -1.1842964940612142], [-0.539147014489117, -1.0000280069576548], [-0.7238160933500448, -0.9731698150282742], [-0.9614003725549969, -0.9989597622713392]], "right_eye": [[0.49009554579646525, -1.0026318533805492], [0.6743640329000248, -1.1878350545846348], [0.9118147815191875, -1.2148267770998047], [1.0968844521374834, -1.0833399597544804], [0.9122821385694505, -1.0300909329459822], [0.6748313899502878, -1.0030992104308123]], "nose_tip": [[-0.45710360225729124, 0.1345775969657134], [-0.27223422751767934, 0.18689190967368527], [-0.06104078319184466, 0.21274862220964497], [0.12356153037618835, 0.15949959540114686], [0.3610122789953511, 0.13250787288597685]], "chin": [[-1.7000099227058132, -0.8651361596746993], [-1.7252657476057203, -0.4164252014368071], [-1.671349067868275, 0.03208546092240083], [-1.5646507183725944, 0.4804625926958193], [-1.4051706991186794, 0.9287061938834484], [-1.140327636226978, 1.297510229262146], [-0.8490937384561595, 1.666247499347949], [-0.5052784668057901, 1.95567873421061], [-0.029976377810096287, 2.060040298454975], [0.4448583541353344, 1.9796660185455173], [0.9193592596162916, 1.7673375642404725], [1.3407446688745401, 1.423188466125629], [1.6828908082025413, 1.0528488290103528], [1.8401008074980358, 0.6038040443079871], [1.9180715368632832, 0.12856872060518798], [1.9695846660565184, -0.37299067268383396], [1.9683828907844134, -0.8480257005079488]], "bottom_lip": [[0.8635731516777938, 0.5798835252659744], [0.5742754474009223, 0.9764804666745788], [0.205137585557751, 1.1093693551706925], [-0.03231316306141173, 1.1363610776858626], [-0.29622151185258666, 1.1370287306148097], [-0.5869212872802475, 0.9794181395619468], [-0.8516975848790539, 0.6370049390623667], [-0.7460674800696891, 0.6631287127699053], [-0.2704315646095217, 0.8994444514098576], [-0.03284728540456954, 0.9252343986529226], [0.2046034632145932, 0.8982426761377525], [0.8108582472124536, 0.6064078907308814]], "transform": {"angle": 0.002529861247795008, "center": [186.33333333333334, 183.94444444444446], "scale": 37.89182132672947}, "top_lip": [[-0.8516975848790539, 0.6370049390623667], [-0.5615986970874456, 0.5570980162031721], [-0.27149980929583734, 0.47719109334397775], [-0.03384876479799044, 0.52937187546616], [0.17714438364916008, 0.47605608336476735], [0.5467496025425944, 0.527903039022476], [0.8635731516777938, 0.5798835252659744], [0.8108582472124536, 0.6064078907308814], [0.17754497540652844, 0.6344010926394723], [-0.03344817304062208, 0.6877168847408651], [-0.27103245224557426, 0.6619269374978002], [-0.7460674800696891, 0.6631287127699053]], "right_eyebrow": [[0.22478512585450108, -1.556171732913069], [0.567532152818555, -1.6889938561162883], [0.9369370758333051, -1.7163194050959316], [1.2802182251405168, -1.6380148492662108], [1.5447274615677442, -1.4011649882831005]]}], "url": "z_face1.jpg", "embedding": [[-0.09812457114458084, 0.11998496949672699, 0.06276129186153412, -0.05255047231912613, -0.12243147939443588, -0.03132074326276779, -0.09414154291152954, -0.1242457777261734, 0.07002627849578857, -0.08147289603948593, 0.2814253270626068, -0.04594751447439194, -0.22189925611019135, -0.1113772839307785, -0.11815732717514038, 0.2204407900571823, -0.14725343883037567, -0.10374704003334045, -0.08243671804666519, 0.005101572722196579, 0.12012264132499695, -0.0025456342846155167, 0.0014407113194465637, 0.0015963278710842133, -0.08633701503276825, -0.33422884345054626, -0.045525021851062775, -0.03229425102472305, -0.03990006074309349, -0.06796583533287048, -0.04964607208967209, 0.027314048260450363, -0.234699085354805, -0.03814394026994705, 0.02356778085231781, 0.053027696907520294, -0.050578296184539795, -0.06693702191114426, 0.14406313002109528, 0.018536454066634178, -0.22719770669937134, 0.047739796340465546, 0.06735788285732269, 0.19067732989788055, 0.182114377617836, 0.019334735348820686, 0.054091211408376694, -0.15950612723827362, 0.13529177010059357, -0.20682178437709808, 0.021643809974193573, 0.18243306875228882, 0.07248902320861816, 0.06592673063278198, 0.015211593359708786, -0.08783256262540817, 0.03786002844572067, 0.13478770852088928, -0.09582363814115524, 0.016811812296509743, 0.11877749860286713, -0.05823524296283722, -0.0877673402428627, -0.121843121945858, 0.20835383236408234, 0.08842334151268005, -0.13640394806861877, -0.18775177001953125, 0.11289231479167938, -0.09115668386220932, -0.10935712605714798, 0.04192322492599487, -0.15002340078353882, -0.19342319667339325, -0.3086214065551758, 0.048502061516046524, 0.36910122632980347, 0.132289320230484, -0.23331473767757416, 0.03634979575872421, -0.08015844225883484, 0.0484822653234005, 0.12521624565124512, 0.12101111561059952, 0.008804835379123688, 0.0336700864136219, -0.09477405250072479, -0.01780793070793152, 0.22713540494441986, -0.07723923027515411, -0.023343967273831367, 0.264713853597641, 0.0039475541561841965, 0.061221860349178314, 0.009781097993254662, 0.019018054008483887, -0.07865786552429199, 0.0058430954813957214, -0.11374843120574951, -0.03492026403546333, 0.050761688500642776, -0.041851382702589035, -0.020709838718175888, 0.09610284864902496, -0.1072147861123085, 0.10397015511989594, -0.044768959283828735, 0.10082380473613739, 0.04071452468633652, -0.02748667635023594, -0.09102319180965424, -0.07456323504447937, 0.06832525879144669, -0.1713019609451294, 0.24891397356987, 0.14487513899803162, 0.0664646327495575, 0.06269458681344986, 0.20069821178913116, 0.09950415045022964, -0.002668582834303379, -0.016219403594732285, -0.1644577980041504, -0.06623447686433792, 0.10705346614122391, -0.022745352238416672, 0.059049054980278015, -0.034697555005550385]]},
{"url": "z_face2.jpg", "embedding": [[-0.10002943128347397, -0.002971264533698559, 0.04409882426261902, -0.08042342960834503, -0.13918328285217285, -0.05096873641014099, -0.0675748884677887, -0.03445271775126457, 0.17213879525661469, -0.1289740800857544, 0.20593279600143433, -0.038095682859420776, -0.20807456970214844, -0.03513205423951149, 0.04067589342594147, 0.18801690638065338, -0.20172590017318726, -0.14577223360538483, -0.06354935467243195, -0.0328928679227829, 0.007761724293231964, 0.06754852831363678, 0.01997918263077736, 0.0867898017168045, -0.23197656869888306, -0.36380860209465027, -0.08826257288455963, -0.15048570930957794, -0.028067536652088165, -0.006293401122093201, 0.01313356589525938, 0.1122763603925705, -0.18493340909481049, -0.03600311279296875, 0.07104189693927765, 0.10923558473587036, -0.014780500903725624, -0.053669825196266174, 0.21474239230155945, 0.043618202209472656, -0.24918276071548462, -0.04855405539274216, 0.05416091904044151, 0.2509222626686096, 0.11213052272796631, -0.008110547438263893, 0.060037221759557724, -0.020381931215524673, 0.12973971664905548, -0.26530784368515015, 0.005873171612620354, 0.14386363327503204, 0.05093163251876831, 0.06247718259692192, 0.12190939486026764, -0.10820997506380081, 0.08467353880405426, 0.153029203414917, -0.22401994466781616, 0.018371853977441788, -0.0064929090440273285, -0.007204247638583183, 0.001340152695775032, -0.027905315160751343, 0.25697019696235657, 0.11021729558706284, -0.10640345513820648, -0.10520730167627335, 0.1669047623872757, -0.11952564120292664, -0.07537998259067535, 0.11944880336523056, -0.16234096884727478, -0.18609827756881714, -0.3132040798664093, -0.05591844767332077, 0.4329444468021393, 0.08397790789604187, -0.18753360211849213, 0.052566226571798325, -0.012145612388849258, -0.06690485030412674, 0.09321217238903046, 0.10295377671718597, -0.020737331360578537, 0.06169183924794197, -0.05560031533241272, 0.083901546895504, 0.23535601794719696, -0.03588230162858963, 0.01774720288813114, 0.2265700399875641, 0.04118061065673828, 0.023799866437911987, 0.06956352293491364, 0.04878733307123184, -0.043150097131729126, -0.06510938704013824, -0.12393594533205032, 0.0016987025737762451, 0.08229243010282516, -0.012456422671675682, -0.019080791622400284, 0.08945812284946442, -0.17775820195674896, 0.1187109649181366, 0.01918645016849041, -0.06475910544395447, -0.05718757212162018, 0.07448309659957886, -0.0888402909040451, -0.058351099491119385, 0.13630631566047668, -0.24056236445903778, 0.16022630035877228, 0.1560491919517517, -0.08275251090526581, 0.11594061553478241, -0.010273986496031284, 0.013581231236457825, -0.08263693749904633, -0.04651876911520958, -0.1439516544342041, -0.10474348068237305, 0.0713956207036972, -0.021647857502102852, 0.056770212948322296, -0.0075003779493272305]], "landmarks": [{"bottom_lip": [[0.8927581592050962, 0.6424316486467727], [0.5537825636977446, 0.9192459519869604], [0.2746815917751089, 1.0262170020798214], [0.05095887408256518, 1.0374194415612454], [-0.17126505382510382, 1.0239303334973733], [-0.487758802559335, 0.9303714236581127], [-0.8663368756504581, 0.6347837641018552], [-0.7196863801635536, 0.6684680503564], [-0.15627715597635683, 0.7770148580444077], [0.03975643460114093, 0.813696723868702], [0.2649779420785594, 0.7778027368419811], [0.7431100841484422, 0.6581304574828212]], "top_lip": [[-0.8663368756504581, 0.6347837641018552], [-0.4667757455710892, 0.5846897580239607], [-0.1412892581276098, 0.5300993825914422], [0.054744332449887946, 0.5667812484157364], [0.2552742923820098, 0.5293884716041408], [0.5485752833558191, 0.5967570441132304], [0.8927581592050962, 0.6424316486467727], [0.7431100841484422, 0.6581304574828212], [0.2462815536727616, 0.6775377568759201], [0.04725038352551444, 0.6902389861422192], [-0.15028199683685803, 0.6782486678632216], [-0.7196863801635536, 0.6684680503564]], "left_eye": [[-1.3413175025300474, -0.9305643487586496], [-1.0839104985829588, -1.0884172837269783], [-0.7629203804941037, -1.068933016523607], [-0.5048024655597139, -0.8302224009823166], [-0.7809058579126001, -0.7726344459800486], [-1.1265875235467522, -0.7936175029682944]], "nose_tip": [[-0.36422409702258013, 0.12004672401795025], [-0.1681905064450824, 0.15672858984224444], [0.02784308413241536, 0.1934104556665386], [0.2283730440645372, 0.15601767885494308], [0.4042114564513625, 0.11712611225847289]], "right_eyebrow": [[0.43055572940207787, -1.5417039426310204], [0.7867289235303526, -1.6935617184598504], [1.1600997162795503, -1.7204629667773232], [1.5244777703194998, -1.5992149298230165], [1.704024673263376, -1.2909260410004604]], "right_eye": [[0.5105485633671942, -0.8181551148930469], [0.749259178908485, -1.0762730298274366], [1.0717480867822151, -1.0814803101693622], [1.3081720337410576, -0.8936515795035391], [1.101646914669437, -0.7574926125107575], [0.779158006795707, -0.7522853321688321]], "nose_bridge": [[0.02720914095538606, -1.0209717434076166], [0.03391521108218621, -0.7231743830791834], [0.04212007099386105, -0.4500685702960466], [0.050324930905535886, -0.17696275751290974]], "transform": {"center": [272.40277777777777, 193.26388888888889], "angle": -0.060626133324491974, "scale": 40.42528306397457}, "left_eyebrow": [[-1.7879750591175618, -1.3294145678507174], [-1.5477656537913962, -1.6122240303304036], [-1.1683997019026995, -1.7378914688290623], [-0.7748337309628293, -1.6892192847257705], [-0.3857641293775832, -1.5664724579865892]], "chin": [[-2.1082542662191153, -0.9523352845444687], [-2.0394638717354234, -0.45250917449903877], [-1.9444831399215596, 0.024124177785969342], [-1.8218132809926504, 0.45287322476525904], [-1.6250687794278513, 0.8861186410991729], [-1.3235629285423673, 1.2265930263913993], [-0.944984855451244, 1.5221806859476563], [-0.5125273179149036, 1.7466912824377736], [-0.02169394657872184, 1.826050173225861], [0.45344061592141155, 1.7557609889572938], [0.8649920642797783, 1.508134602517027], [1.2286592073324263, 1.232819088961714], [1.5212492873189345, 0.903624110961184], [1.7195695464788803, 0.4943593311852654], [1.7974296474820926, 0.02821750739438028], [1.8490994111551338, -0.4147315586360831], [1.9022679646130496, -0.882372172211843]]}]},
{"landmarks": [{"nose_bridge": [[-0.11915309753870079, -1.0774219445207711], [-0.13194185058151556, -0.7736549202224418], [-0.17555954511257515, -0.4195113024623971], [-0.18834829815538986, -0.11574427816406752]], "left_eye": [[-1.1424886468718944, -1.0458639582140303], [-0.9590224614704648, -1.1759386230976654], [-0.7056320306338502, -1.1939788115430956], [-0.48457800481352026, -0.989457510640156], [-0.68759184218842, -0.9405883807064809], [-0.9409822730250346, -0.9225481922610508]], "top_lip": [[-0.7026664774688184, 0.7812605781600669], [-0.5289741180541238, 0.6105831458014519], [-0.28535751320424413, 0.5519401898810417], [-0.14400155880583426, 0.6038242468707966], [0.059012278569065435, 0.5549551169371215], [0.34172418736588517, 0.658723230916631], [0.6748126896244199, 0.7933202863843856], [0.543230561212745, 0.7820389968696106], [0.06727864102776064, 0.7677427802987561], [-0.10490625485889415, 0.7662353167707163], [-0.2770911507455489, 0.7647278532426764], [-0.5808581750438785, 0.7519391001998618]], "left_eyebrow": [[-1.4936173375758595, -1.4338514445183996], [-1.26954838469945, -1.5736999353887697], [-0.9755551863878553, -1.601513949820935], [-0.6717881620895256, -1.5887251967781202], [-0.37930242730597086, -1.4443543153236307]], "transform": {"scale": 23.944885517334836, "center": [241.73611111111111, 127.75], "angle": 0.23622397528318634}, "right_eyebrow": [[0.20868396931721833, -1.4999823441879612], [0.5545612246185678, -1.6691523130185362], [0.8891571904051424, -1.7067401534374365], [1.2839035756401669, -1.672896284893112], [1.5763893104237214, -1.5285254034386222]], "right_eye": [[0.45755200956971354, -1.001467844973427], [0.6718471364593881, -1.1819191033187768], [0.9658403347709826, -1.2097331177509423], [1.1771205346045774, -1.0458145843229827], [0.9838805232164127, -0.9563426869143276], [0.6898873249048183, -0.9285286724821623]], "nose_tip": [[-0.43347236653330934, 0.11508357364299744], [-0.28234258614816443, 0.20757039810773217], [-0.14098663174975457, 0.259454455097487], [0.062027205625145125, 0.21058532516381184], [0.21466444953832986, 0.13088725374189183]], "chin": [[-1.6394956825583888, -0.9691808138481901], [-1.653791899129243, -0.4932288936632056], [-1.5868825807501379, -0.036824625451691295], [-1.5199732623710325, 0.419579642759823], [-1.3718584090419674, 0.8564362589978674], [-1.1523118467496776, 1.2331424557874615], [-0.8207308080191824, 1.539924407141871], [-0.4989235952754227, 1.8061035910213004], [-0.0034240231169682667, 1.9016053425421149], [0.4935830125695261, 1.8249221981762747], [1.042474105245775, 1.6068830994120242], [1.521440952486839, 1.2768095242095692], [1.9094284387912084, 0.9256808335056042], [2.1056833772354526, 0.49183914432363957], [2.191411302769532, -0.044263195309794834], [2.2463102868153664, -0.5299889414815142], [2.2508326773994862, -1.0465436291414787]], "bottom_lip": [[0.6748126896244199, 0.7933202863843856], [0.3387092603098055, 1.0030930226899408], [0.054489887984945945, 1.071509804597086], [-0.1582977753766888, 1.079776167055781], [-0.34025649725007867, 1.0376659360527611], [-0.5319890451102034, 0.9549529375747614], [-0.7026664774688184, 0.7812605781600669], [-0.5808581750438785, 0.7519391001998618], [-0.31769391822052884, 0.7745016792294115], [-0.13573519634713904, 0.8166119102324313], [0.0266758735527807, 0.7775166062854911], [0.543230561212745, 0.7820389968696106]]}], "url": "z_face3.jpg", "embedding": [[-0.05519425496459007, 0.03493059054017067, 0.08143620938062668, -0.08901284635066986, -0.14302502572536469, -0.02416623942553997, -0.09756344556808472, -0.08315102756023407, 0.23946982622146606, -0.15162669122219086, 0.09232431650161743, -0.014769241213798523, -0.15266633033752441, 0.0738283321261406, -0.08435601741075516, 0.1452733278274536, -0.09795519709587097, -0.16579927504062653, -0.09493180364370346, -0.062312837690114975, -0.08847658336162567, 0.021459033712744713, -0.00294596329331398, 0.012956537306308746, -0.12360681593418121, -0.35962730646133423, -0.08465795964002609, -0.05886299908161163, -0.014770012348890305, 0.003773917444050312, -0.023260220885276794, 0.10789743810892105, -0.1129622533917427, -0.047460466623306274, 0.04806378483772278, 0.11290744692087173, -0.09416302293539047, -0.0867939442396164, 0.24747592210769653, 0.03254516422748566, -0.22027653455734253, 0.0030573979020118713, 0.08847130835056305, 0.2831569314002991, 0.22063785791397095, 0.03714641183614731, 0.13540662825107574, -0.1261082887649536, 0.14653107523918152, -0.3661941885948181, 0.0811522826552391, 0.16923867166042328, 0.011623818427324295, 0.09494776278734207, 0.13868921995162964, -0.17209285497665405, 0.023121878504753113, 0.1638849526643753, -0.1638297140598297, 0.10636025667190552, 0.07150483876466751, 0.000995999202132225, -0.05054526403546333, -0.06572765111923218, 0.3229401111602783, 0.18288353085517883, -0.11134769022464752, -0.16417694091796875, 0.28029778599739075, -0.16538552939891815, -0.06219102442264557, 0.07175640761852264, -0.08962765336036682, -0.22000420093536377, -0.22248777747154236, 0.01842578500509262, 0.3819790482521057, 0.22037602961063385, -0.09785779565572739, 0.10503733158111572, -0.15017080307006836, -0.04053933173418045, 0.008872395381331444, 0.08559748530387878, -0.006650010123848915, -0.02032337710261345, -0.028860213235020638, -0.012347746640443802, 0.2899158298969269, -0.01995079219341278, 0.008609645068645477, 0.22352749109268188, 0.07356566190719604, -0.04810752719640732, -0.03028353489935398, 0.08436368405818939, -0.15227405726909637, 0.02202434279024601, -0.20539432764053345, -0.059333980083465576, 0.10269267857074738, 0.023140307515859604, 0.05972312390804291, 0.12896883487701416, -0.2676396667957306, 0.24129846692085266, -0.08049461990594864, -0.034685902297496796, 0.028595078736543655, -0.032721344381570816, -0.009528398513793945, 0.0033172406256198883, 0.22001129388809204, -0.27409398555755615, 0.15639911592006683, 0.1383773386478424, 0.07004918903112411, 0.18882378935813904, 0.07051581889390945, 0.038776811212301254, 0.0793108195066452, -0.06640178710222244, -0.1935870349407196, -0.0840207114815712, -0.048229992389678955, -0.012153556570410728, -0.03877771645784378, 0.15794801712036133]]},
{"url": "https://scontent-syd2-1.cdninstagram.com/t51.2885-15/e35/20634693_110474426304381_1175536951256678400_n.jpg", "embedding": [[-0.06434948742389679, -0.0024062837474048138, 0.013457316905260086, -0.13760454952716827, -0.07782885432243347, -0.0326097272336483, -0.07550576329231262, -0.11027063429355621, 0.15991172194480896, -0.21385017037391663, 0.14787960052490234, -0.04309634119272232, -0.16878312826156616, 0.004337642341852188, -0.048895012587308884, 0.22118282318115234, -0.2465084344148636, -0.1538938581943512, -0.06121373176574707, 0.017647050321102142, 0.09208934754133224, 0.024556955322623253, -0.04884433001279831, 0.05720386654138565, -0.1205020546913147, -0.2967759370803833, -0.14994552731513977, -0.033904820680618286, -0.06309930980205536, -0.014797422103583813, -0.04614557325839996, -0.00926187913864851, -0.13311146199703217, 0.006801517680287361, 0.04417328163981438, 0.08913587778806686, -0.0224045030772686, -0.1519884169101715, 0.16716164350509644, 0.049321308732032776, -0.2466009110212326, 0.09037433564662933, 0.09041853249073029, 0.20099355280399323, 0.1878717690706253, -0.02567066065967083, -0.015563759952783585, -0.190803661942482, 0.18501657247543335, -0.2248716801404953, -0.012704486958682537, 0.12370685487985611, 0.02906230092048645, 0.12010033428668976, 0.04185774177312851, -0.0715087279677391, 0.08338076621294022, 0.1825292557477951, -0.15724322199821472, 0.008683722466230392, 0.05061739683151245, -0.059865713119506836, 0.008267343044281006, -0.11001555621623993, 0.19872671365737915, 0.13405148684978485, -0.13387998938560486, -0.22018550336360931, 0.10457242280244827, -0.14323820173740387, -0.14457333087921143, 0.026546547189354897, -0.1530495434999466, -0.20092426240444183, -0.2497885376214981, -0.017288561910390854, 0.37686315178871155, 0.15874511003494263, -0.19093939661979675, 0.08379606157541275, -0.032301176339387894, -0.04047559201717377, 0.17002521455287933, 0.1846965253353119, 0.0428498238325119, 0.018862586468458176, -0.03615395724773407, 0.02118091657757759, 0.2795213460922241, -0.055659350007772446, -0.0038115475326776505, 0.24325871467590332, 0.01164834201335907, 0.09222240746021271, 0.032771360129117966, 0.013789206743240356, -0.08343151956796646, 0.04562674090266228, -0.16591206192970276, -0.033202044665813446, 0.03372709080576897, 0.017015967518091202, 0.006566572934389114, 0.11564993858337402, -0.11008727550506592, 0.1600748598575592, -0.003899163566529751, 0.0007363781332969666, 0.02611439675092697, 0.014180602505803108, -0.08694899082183838, -0.036308515816926956, 0.11282915621995926, -0.19615048170089722, 0.17582936584949493, 0.16026270389556885, 0.0727701336145401, 0.08516994118690491, 0.10163966566324234, 0.08326815068721771, -0.03913598507642746, 0.0009636171162128448, -0.23755581676959991, 0.024762913584709167, 0.10351080447435379, 0.02275218814611435, 0.09435515850782394, -0.019461821764707565], [-0.01809755153954029, 0.06842115521430969, 0.022775977849960327, -0.0824776142835617, -0.09563397616147995, -0.006546758580952883, -0.09301387518644333, -0.07580921053886414, 0.15046824514865875, -0.12530161440372467, 0.16738361120224, -0.046050626784563065, -0.22449420392513275, -0.045814380049705505, -0.07524748146533966, 0.23644816875457764, -0.1378936767578125, -0.19163982570171356, -0.08716118335723877, 0.05193939805030823, 0.09445168077945709, 0.09647463262081146, -0.01378897950053215, 0.04350718483328819, -0.11957018077373505, -0.327610045671463, -0.08205433934926987, -0.02312815561890602, -0.04604858160018921, -0.018958216533064842, -0.0672551840543747, 0.033627137541770935, -0.1603398472070694, -0.0036753974854946136, 0.13077445328235626, 0.15468333661556244, 0.002885455032810569, -0.10952965915203094, 0.15249699354171753, 0.05938611552119255, -0.30551767349243164, 0.10706408321857452, 0.07487311959266663, 0.2536681294441223, 0.20432905852794647, -0.012460842728614807, 0.004066009074449539, -0.16353781521320343, 0.13847310841083527, -0.18713155388832092, 0.01564977690577507, 0.14428621530532837, 0.09221404790878296, 0.07784521579742432, 0.05035289749503136, -0.12576442956924438, 0.07877448201179504, 0.18568532168865204, -0.15744075179100037, -0.036223240196704865, 0.08006320148706436, -0.09039562940597534, 0.022176189348101616, -0.11159314215183258, 0.16633199155330658, 0.02285883203148842, -0.12541884183883667, -0.2449038177728653, 0.08156414330005646, -0.16242340207099915, -0.08695457875728607, 0.10465404391288757, -0.1712438017129898, -0.1650429666042328, -0.31114718317985535, -0.016828224062919617, 0.37040528655052185, 0.16854992508888245, -0.230664923787117, 0.07778196036815643, 0.014115212485194206, 0.05530476197600365, 0.1309521198272705, 0.13763107359409332, 0.04680697247385979, 0.03131025284528732, -0.1370338797569275, -0.026650816202163696, 0.27962827682495117, -0.07244673371315002, -0.019146129488945007, 0.21041278541088104, 0.006280992180109024, 0.061172254383563995, 0.018279898911714554, -0.008400768041610718, -0.08105571568012238, 0.012714985758066177, -0.1540411114692688, -0.04211049526929855, -0.041871000081300735, 0.013095813803374767, -0.010684534907341003, 0.1169806718826294, -0.13081030547618866, 0.10444509238004684, -0.028239455074071884, 0.011520422995090485, -0.009466593153774738, 0.02178390696644783, -0.080869659781456, -0.0600883774459362, 0.12233073264360428, -0.21379345655441284, 0.1805155724287033, 0.16242389380931854, 0.09568481892347336, 0.0662851482629776, 0.12738333642482758, 0.07340484857559204, -0.04953833669424057, -0.0140237957239151, -0.2088259905576706, -0.04534842073917389, 0.07840050011873245, -0.01670229062438011, 0.12829247117042542, -0.01978478580713272]], "landmarks": [{"left_eyebrow": [[-1.0893772751733926, -1.5976829602412819], [-0.9765281207841461, -1.7651474966948955], [-0.7807149427418287, -1.787895593659279], [-0.5722639330526317, -1.7018585917112645], [-0.36381292336343446, -1.6158215897632495]], "right_eye": [[0.3186830540979003, -1.0556398732938652], [0.4532892282696265, -1.225631976076855], [0.6759145587531755, -1.2073935998056553], [0.8843655684423727, -1.1213565978576403], [0.6769056359350795, -1.0090528554339617], [0.4810924578927621, -0.986304758469578]], "chin": [[-1.0428900040627211, -1.0077158597849538], [-1.1061789090463523, -0.6034516720534392], [-1.0773846022413127, -0.16578371007446913], [-0.980791669759458, 0.28605857269885276], [-0.8406846977126439, 0.7328457228134228], [-0.7198071791189333, 1.203917459039848], [-0.5387137338365358, 1.6238924567131865], [-0.302459494524203, 1.949256676268478], [0.06334578630110402, 2.0611147534758203], [0.5177156354038019, 1.9862788407764456], [1.0682327517720185, 1.790019997517792], [1.5792998840521235, 1.4439895821111568], [1.9982838045435578, 1.0645553924570659], [2.2958447944757134, 0.5889739355374564], [2.450225834066112, 0.019772777681704046], [2.5150512281972146, -0.5610751346390241], [2.538890149092734, -1.1151108945185204]], "right_eyebrow": [[-0.03745762662623886, -1.653735084703889], [0.2545028186815971, -1.7979061122275513], [0.6000875688718965, -1.8601041932800464], [0.939080697255972, -1.7892325893082872], [1.2664270711750714, -1.6288053398772335]], "transform": {"scale": 45.65512809587349, "angle": 0.11565402067983184, "center": [461.9861111111111, 204.19444444444446]}, "left_eye": [[-0.8278473725673, -1.0547485428611931], [-0.7534571250842611, -1.1736439070910956], [-0.5961028539481512, -1.1478228318317678], [-0.44786777094764124, -1.0106890913306656], [-0.5951117767662473, -0.9494820874600746], [-0.7524660479023572, -0.9753031627194022]], "nose_tip": [[-0.5633442384154955, 0.08320810763397547], [-0.46873346029744895, 0.13836890166391072], [-0.37665024850877815, 0.17177267591136625], [-0.20259409024894054, 0.15155214527635852], [-0.009308478535999127, 0.1070470285294951]], "nose_bridge": [[-0.26216485822282776, -1.1204652674249684], [-0.35984861463581846, -0.8224586122764762], [-0.4383029175957054, -0.5487365432398399], [-0.5577436937911757, -0.24820232176197207]], "bottom_lip": [[0.3721078654818997, 0.922712437764316], [0.12366145973902314, 1.061828332629226], [-0.11061062520950168, 1.133145601817321], [-0.21939572412190023, 1.145783433464201], [-0.308951369581195, 1.134136678999225], [-0.4086172803579936, 1.0354618454043305], [-0.3994980922223937, 0.9241491801625561], [-0.3392821655337066, 0.8730524416094688], [-0.3149975794218509, 0.8922818950625725], [-0.24719895374503587, 0.9064562158569243], [-0.13841385483263732, 0.8938183842100444], [0.2582676339107493, 0.8918362298462365]], "top_lip": [[-0.3994980922223937, 0.9241491801625561], [-0.4490583416280091, 0.6873495288846553], [-0.3938975475980739, 0.5927387507666085], [-0.3018143358094031, 0.6261425250140642], [-0.19808436955575653, 0.5699906538022249], [0.058935812357152, 0.6944865626564473], [0.3721078654818997, 0.922712437764316], [0.2582676339107493, 0.8918362298462365], [-0.17533627259137283, 0.7658038318445423], [-0.28412137150377137, 0.7784416634914221], [-0.3519199971805865, 0.7642673426970703], [-0.3392821655337066, 0.8730524416094688]]}, {"left_eyebrow": [[-1.174153380360984, -1.4239136863612827], [-1.1366209456132446, -1.6667529548899338], [-0.9332950466265433, -1.7425393870187091], [-0.7170079198193443, -1.725078480082173], [-0.4877595651916478, -1.6143702340803257]], "right_eye": [[0.352188049029449, -1.0420168484208006], [0.49268874370787274, -1.2278818404709662], [0.7322877052813994, -1.2136612404895544], [0.988088201630548, -1.0828814666765036], [0.761450467877519, -1.0038547275926042], [0.5250918132591167, -0.9947634928076879]], "chin": [[-1.076314485626795, -0.8909817936908679], [-1.1144766064549914, -0.481719374842798], [-1.07946291602908, -0.05886604209377333], [-0.9978255560705132, 0.35750667674500247], [-0.8695645265792906, 0.7673987816735295], [-0.6914395206002881, 1.1941221074581354], [-0.4964832937652066, 1.5709814567549616], [-0.28469584607404613, 1.8979768295640076], [0.08442351715161711, 1.9892432338351083], [0.577212354199625, 1.9445086225438235], [1.12049485381587, 1.7501820817891993], [1.6540564325667417, 1.4859200367355914], [2.081409444431805, 1.1413718804371702], [2.39607327550081, 0.6699139433612795], [2.51452150757382, 0.1544429576274008], [2.530001479716146, -0.4180023045849637], [2.548721758813596, -0.9671357320310006]], "right_eyebrow": [[-0.0649062324426232, -1.6493839245062372], [0.3417455655307794, -1.8009567887637874], [0.764598898279804, -1.8359704791896987], [1.1868225449483716, -1.7045610192961913], [1.4886170247497188, -1.4138387090739706]], "transform": {"scale": 42.48818258907084, "angle": 0.13811342790067305, "center": [160.08333333333334, 236.79166666666666]}, "left_eye": [[-0.9293331770381225, -1.030223116208378], [-0.8555276797035577, -1.1830553526268421], [-0.6625523876626865, -1.1623541387351817], [-0.49675892342372463, -0.9953013023353057], [-0.6567014598328947, -0.949307318883107], [-0.8464364449186416, -0.9466966980084398]], "nose_tip": [[-0.5840634581064047, 0.08613433170068883], [-0.45778336340939246, 0.13986830122405022], [-0.35805541043383254, 0.1735307429362082], [-0.17156073230321026, 0.14760828729521303], [0.014933945827412063, 0.12168583165421785]], "nose_bridge": [[-0.29991363834727214, -1.1177114039967366], [-0.35427729395109053, -0.8250081589803053], [-0.4585049260426889, -0.5491361348199533], [-0.5329401094577106, -0.22988074808207004]], "bottom_lip": [[0.45147006903023057, 0.868923916337621], [0.13482530316701477, 0.9842237180083461], [-0.12160487926259092, 1.0198670945147144], [-0.26147588786055764, 1.0393089362454608], [-0.3612038408361176, 1.0056464945333028], [-0.44086026600047423, 0.9454319110996926], [-0.5004451633536274, 0.8586651859446303], [-0.4104381312434406, 0.8223921233578049], [-0.36705476866590936, 0.7925996746812283], [-0.27056712264547383, 0.8029502816270585], [-0.1507676418587105, 0.8100605816177643], [0.30511844652201503, 0.8417420885357119]], "top_lip": [[-0.5004451633536274, 0.8586651859446303], [-0.5062960911834192, 0.6456183660925557], [-0.42600997993860557, 0.539409799206747], [-0.32628202696304565, 0.5730722409189051], [-0.1896513253202033, 0.5303185644218308], [0.0894610057952732, 0.6578580312797571], [0.45147006903023057, 0.868923916337621], [0.30511844652201503, 0.8417420885357119], [-0.16048856272408368, 0.7401250773187809], [-0.30359987827717483, 0.7362550842831995], [-0.39684721734248596, 0.7492163121036971], [-0.4104381312434406, 0.8223921233578049]]}]},
{"url": "https://pbs.twimg.com/media/DGnH9l8VwAASYUj.jpg", "landmarks": [{"left_eyebrow": [[-1.2569022247940032, -1.457931461988435], [-1.1414776277708902, -1.5697412065137817], [-1.0260530307477775, -1.6815509510391287], [-0.7988186891993182, -1.6779360985413627], [-0.5733917738997415, -1.5607040752693673]], "bottom_lip": [[0.7538657504133576, 0.7333284552018232], [0.4093993855929024, 0.955140518003634], [0.06674044702133014, 1.0633354100312151], [-0.1604938945271294, 1.0597205575334492], [-0.38772823607558893, 1.0561057050356835], [-0.4995379806009358, 0.9406811080125707], [-0.7231574696516295, 0.7098319139663453], [-0.6095402988773998, 0.7116393402152282], [-0.38230595732894024, 0.7152541927129941], [-0.15687904202936356, 0.8324862159849896], [0.07216272576797887, 0.7224838977085257], [0.6402485796391277, 0.7315210289529402]], "right_eye": [[0.4401256318239119, -0.9763513851582722], [0.6709748258701373, -1.1999708742089659], [0.8982091674185968, -1.1963560217112001], [1.1236360827181733, -1.0791239984392043], [0.8945943149208311, -0.9691216801627406], [0.6673599733723715, -0.9727365326605064]], "top_lip": [[-0.7231574696516295, 0.7098319139663453], [-0.4941157018542871, 0.5998295956898814], [-0.3804985310800573, 0.6016370219387643], [-0.15326418953159773, 0.6052518744365302], [0.07397015201686179, 0.608866726934296], [0.4148216643395511, 0.6142890056809447], [0.7538657504133576, 0.7333284552018232], [0.6402485796391277, 0.7315210289529402], [0.07216272576797887, 0.7224838977085257], [-0.15507161578048065, 0.7188690452107599], [-0.38230595732894024, 0.7152541927129941], [-0.6095402988773998, 0.7116393402152282]], "transform": {"angle": -0.015906696090656917, "scale": 8.800373080615655, "center": [328.2638888888889, 298.65277777777777]}, "chin": [[-1.2677467822873005, -0.7762284373430564], [-1.386786231808179, -0.4371843512692499], [-1.3940159368037106, 0.01728433182766917], [-1.2858210447761298, 0.3599432703992414], [-1.1794335789974315, 0.8162193797450433], [-0.9576215161956207, 1.1606857445654986], [-0.7358094533938099, 1.505152109385954], [-0.5139973905919991, 1.8496184742064088], [-0.1749533045181927, 1.9686579237272874], [0.3949399756018391, 1.8640778841974721], [0.8512160849476411, 1.757690418418774], [1.4247242175654389, 1.4258760373404995], [1.8846151794090067, 1.0922542300133418], [2.2326963967272273, 0.6432078256630713], [2.355350698745872, 0.07692939804080531], [2.478005000764516, -0.48934902958146065], [2.48704213200893, -1.0574348834526095]], "right_eyebrow": [[0.10831125074563713, -1.5498595177760697], [0.4527776155660923, -1.7716715805778807], [0.7936291278887817, -1.766249301831232], [1.1344806402114707, -1.760827023084583], [1.4735247262852775, -1.6417875735637044]], "nose_tip": [[-0.48688599685875544, 0.14536091259296224], [-0.3750762523334086, 0.26078550961607494], [-0.2614590815591788, 0.26259293586495785], [-0.03422474001071924, 0.2662077883627237], [0.19481702778662321, 0.15620547008625973]], "left_eye": [[-1.1505147590153049, -1.001655352642633], [-0.9214729912179624, -1.1116576709190968], [-0.6942386496695029, -1.108042818421331], [-0.582428905144156, -0.9926182213982184], [-0.6978535021672687, -0.8808084768728716], [-0.9250878437157283, -0.8844233293706374]], "nose_bridge": [[-0.23976996657258381, -1.1008131134257992], [-0.24519224531923256, -0.7599616011031102], [-0.3642316948401111, -0.4209175150293037], [-0.36965397358675983, -0.08006600270661439]]}, {"left_eyebrow": [[-1.4945885421746705, -1.2877742060422532], [-1.3780050758797373, -1.5263563663813102], [-1.0217564036959088, -1.5296055030308247], [-0.7831742433568517, -1.4130220367358914], [-0.42584252562318503, -1.2975216159907967]], "bottom_lip": [[0.7789817771203207, 0.5916408468245739], [0.4248991960361685, 0.8323890982633073], [0.06973356940217809, 0.9543877923074312], [-0.16776554538704092, 0.9565538834071076], [-0.4052646601762599, 0.9587199745067839], [-0.5250972631207077, 0.8410534626620126], [-0.7636794234597648, 0.7244699963670794], [-0.6449298660651552, 0.7233869508172412], [-0.4074307512759362, 0.721220859717565], [-0.16993163648671722, 0.7190547686178886], [0.06756747830250177, 0.7168886775182123], [0.6613152652755493, 0.7114734497690215]], "right_eye": [[0.5274030701832054, -0.9499373082056735], [0.7627360938727482, -1.1896025140945687], [1.000235208661967, -1.191768605194245], [1.2388173690010245, -1.0751851388993119], [1.0024012997616434, -0.9542694904050262], [0.7649021849724245, -0.9521033993053498]], "top_lip": [[-0.7636794234597648, 0.7244699963670794], [-0.527263354220384, 0.6035543478727937], [-0.2908472849810031, 0.4826386993785078], [-0.1710146820365554, 0.6003052112232792], [0.06540138720282544, 0.4793895627289933], [0.42273310493649213, 0.5948899834740884], [0.7789817771203207, 0.5916408468245739], [0.6613152652755493, 0.7114734497690215], [0.06756747830250177, 0.7168886775182123], [-0.16993163648671722, 0.7190547686178886], [-0.4074307512759362, 0.721220859717565], [-0.6449298660651552, 0.7233869508172412]], "transform": {"angle": 0.009120164698946614, "scale": 8.420733799144191, "center": [197.48611111111111, 304.9583333333333]}, "chin": [[-1.6100889629197657, -0.9304424883085866], [-1.605756780720413, -0.45544425873014843], [-1.6025076440708985, -0.09919558654631994], [-1.4794259044769362, 0.3747195974822799], [-1.3574272104328122, 0.7298852241162703], [-1.1155959134442406, 1.2027173625950318], [-0.8759307075553452, 1.4380503862845746], [-0.5164328987220024, 1.7910499218188887], [-0.1591011809883356, 1.9065503425639836], [0.43464660598471194, 1.9011351148147928], [0.9074787444634735, 1.6593038178262212], [1.4979773947870065, 1.2976399178932017], [1.9697264877159302, 0.9370590635100206], [2.202893420305797, 0.4598947428319063], [2.436060352895663, -0.017269577846208025], [2.549394682541082, -0.6121004103690937], [2.543979454791891, -1.205848197342141]], "right_eyebrow": [[0.16790526134986247, -1.3029368437399875], [0.5219878424340146, -1.5436850951787209], [0.8782365146178431, -1.5469342318282353], [1.353234744196281, -1.551266414027588], [1.7105664619299477, -1.4357659932824929]], "nose_tip": [[-0.5315955364197367, 0.1285561182943556], [-0.41176293347528886, 0.24622263013912693], [-0.17426381868606988, 0.2440565390394506], [0.06323529610314911, 0.24189044793977427], [0.29965136534252995, 0.12097479944548843]], "left_eye": [[-1.2538402907359372, -0.933691624958101], [-1.017424221496556, -1.0546072734523866], [-0.7799251067073373, -1.056773364552063], [-0.5413429463682802, -0.94018989825713], [-0.7777590156076609, -0.8192742497628441], [-1.0152581303968797, -0.8171081586631678]], "nose_bridge": [[-0.1861773197342897, -1.062188592301254], [-0.1829281830847752, -0.7059399201174255], [-0.1796790464352607, -0.3496912479335969], [-0.29517946718035576, 0.007640469800069753]]}, {"left_eyebrow": [[-1.695963881336698, -1.3350696451193353], [-1.293307087708677, -1.4818170260880448], [-1.0261220702659335, -1.6248058721289431], [-0.6159482067822916, -1.5006097007270982], [-0.20577434329864946, -1.376413529325253]], "bottom_lip": [[0.8026646488432618, 0.7648251451445056], [0.5317210964727076, 0.7723422150001271], [0.2607775441021534, 0.7798592848557485], [0.12530576791687628, 0.7836178197835593], [-0.14563778445367798, 0.7911348896391807], [-0.4165813368242322, 0.7986519594948022], [-0.691283424122597, 0.6706972531651464], [-0.5558116479373201, 0.6669387182373356], [-0.14939631938148867, 0.6556631134539035], [0.12154723298906556, 0.6481460435982821], [0.3924907853596198, 0.6406289737426607], [0.6671928726579847, 0.7685836800723164]], "right_eye": [[0.4828601424111683, -0.9887908754084754], [0.7538036947817225, -0.9963079452640969], [1.0247472471522767, -1.0038250151197183], [1.1602190233375538, -1.007583550047529], [1.0285057820800876, -0.8683532389344413], [0.7575622297095332, -0.8608361690788199]], "top_lip": [[-0.691283424122597, 0.6706972531651464], [-0.42033987175204296, 0.663180183309525], [-0.01768307812402229, 0.5164328023408158], [0.12154723298906556, 0.6481460435982821], [0.3887322504318091, 0.5051571975573836], [0.527962561544897, 0.63687043881485], [0.8026646488432618, 0.7648251451445056], [0.6671928726579847, 0.7685836800723164], [0.3924907853596198, 0.6406289737426607], [0.12530576791687628, 0.7836178197835593], [-0.14939631938148867, 0.6556631134539035], [-0.5558116479373201, 0.6669387182373356]], "transform": {"angle": 0.02773692885637404, "scale": 7.378772052731596, "center": [163.23611111111111, 90.19444444444444]}, "chin": [[-2.5012774685927393, -1.041574883181917], [-2.350771552696219, -0.5034463133686191], [-2.335737412984976, 0.0384407913724894], [-2.1852314970884565, 0.5765693611857873], [-2.0347255811919363, 1.1146979309990848], [-1.6207931827804836, 1.374365878586207], [-1.0713890081837534, 1.6302752912455185], [-0.5257433685148344, 1.7507129277195526], [0.01990227115408489, 1.8711505641935868], [0.42255906478210553, 1.7244031832248774], [0.8252158584101261, 1.5776558022561684], [1.224114117110336, 1.295436645102182], [1.4837820646974582, 0.8815042466907291], [1.6079782360993031, 0.47133038320708714], [1.732174407501148, 0.061156519723445], [1.7171402677899053, -0.48073058501766347], [1.705864663006473, -0.8871459135734948]], "right_eyebrow": [[0.33611276144245905, -1.391447669036496], [0.7387695550704797, -1.5381950500052055], [1.009713107441034, -1.5457121198608268], [1.419886970924676, -1.4215159484589817], [1.559117282037764, -1.2898027072015155]], "nose_tip": [[-0.2999022352780087, 0.11753454364060575], [-0.028958682907454444, 0.11001747378498433], [0.24574340439091052, 0.23797218011464003], [0.37745664564837694, 0.09874186900155217], [0.5129284218336541, 0.09498333407374146]], "left_eye": [[-1.2782729479974342, -0.9399299213469361], [-1.0110879305546907, -1.0829187673878347], [-0.7401443781841364, -1.0904358372434562], [-0.46544229088577155, -0.9624811309138004], [-0.7363858432563257, -0.954964061058179], [-1.00732939562688, -0.9474469912025576]], "nose_bridge": [[0.07268627892752623, -1.1129870468103205], [0.21567512496842478, -0.845802029367577], [0.22695072975185696, -0.4393867008117456], [0.23446779960747838, -0.16844314844119132]]}, {"left_eyebrow": [[-1.4120926389470776, -1.305110305553343], [-1.3092780088810692, -1.5579185678405774], [-1.0659055470248784, -1.5767901687026644], [-0.6914110538095488, -1.4834113390676997], [-0.4386027915223144, -1.3805967090016913]], "bottom_lip": [[0.816981894158284, 0.6031470128965386], [0.47079480223608483, 0.87482687604586], [0.11517190988284223, 1.0248205082670858], [-0.1282005519733485, 1.0436921091291729], [-0.38100881426058286, 0.9408774790631645], [-0.5121308456197218, 0.8286270485661126], [-0.7743749083379996, 0.6041261875720089], [-0.6432528769788606, 0.7163766180690608], [-0.39988041512266986, 0.6975050172069738], [-0.14707215283543557, 0.8003196472729821], [0.09630030902075518, 0.781448046410895], [0.6952956632301887, 0.6125828133275821]], "right_eye": [[0.4509440266985273, -0.9599023883066145], [0.6848806881236746, -1.1004602200967968], [0.9188173495488217, -1.2410180518869793], [1.1810614122670997, -1.0165171908928756], [0.9471247508419522, -0.8759593591026932], [0.7037522889857617, -0.8570877582406061]], "top_lip": [[-0.7743749083379996, 0.6041261875720089], [-0.5310024464818088, 0.5852545867099218], [-0.29706578505666154, 0.4446967549197394], [-0.16594375369752262, 0.5569471854167913], [0.07742870815866813, 0.5380755845547043], [0.4424874009429543, 0.5097681832615737], [0.816981894158284, 0.6031470128965386], [0.6952956632301887, 0.6125828133275821], [0.08686450858971166, 0.6597618154827998], [-0.1565079532664791, 0.6786334163448868], [-0.2781941841945745, 0.6880692167759304], [-0.6432528769788606, 0.7163766180690608]], "transform": {"angle": 0.07738719925750356, "scale": 8.193261449448098, "center": [338.7083333333333, 170.55555555555554]}, "chin": [[-1.5054714685820423, -0.9306158123380134], [-1.5894144977859634, -0.4344350881945884], [-1.5611070964928329, -0.06937639541030223], [-1.5233638947686587, 0.41736852830207927], [-1.3639344621163894, 0.8946776515834173], [-1.092254598967068, 1.2408647435056166], [-0.8205747358177468, 1.5870518354278158], [-0.5488948726684253, 1.9332389273500148], [-0.05271414852500031, 2.017181956553936], [0.4340307751873812, 1.979438754829762], [0.9113398984687193, 1.8200093221774925], [1.500899452247109, 1.529457858166084], [1.8376507437382645, 1.1360917640886672], [2.1649662347983765, 0.6210394390831551], [2.2394734635712545, 0.003172484011634641], [2.323416492775176, -0.49300824013179034], [2.3979237215480538, -1.110875195203311]], "right_eyebrow": [[0.16982836311816252, -1.427775711156909], [0.5160154550403616, -1.6994555743062303], [0.8810741478246475, -1.7277629755993609], [1.2461328406089338, -1.7560703768924915], [1.630063134255307, -1.5410053163294313]], "nose_tip": [[-0.4470594172778875, 0.08907386256649683], [-0.3159373859187486, 0.20132429306354868], [-0.19425115499065318, 0.19188849263250515], [0.04912130686553756, 0.1730168917704181], [0.17080753779363295, 0.16358109133937457]], "left_eye": [[-1.1404127757977562, -0.958923213631144], [-0.906476114372609, -1.0994810454213264], [-0.7847898834445135, -1.10891684585237], [-0.5225458207262357, -0.8844159848582663], [-0.7659182825824264, -0.8655443839961793], [-1.0092907444386172, -0.8466727831340922]], "nose_bridge": [[-0.16692292837299308, -1.034409617079492], [-0.14805132751090602, -0.7910371552233014], [-0.24143015714587082, -0.4165426620079718], [-0.22255855628378376, -0.173170200151781]]}, {"left_eyebrow": [[-1.467082372450008, -1.2452843310861488], [-1.3409717499609948, -1.4734446884330716], [-0.9867007701250587, -1.575494423290981], [-0.758540412778136, -1.449383800801968], [-0.41389378799464155, -1.318461000786734]], "bottom_lip": [[0.6691618684253232, 0.7099273208971927], [0.3148908885893873, 0.8119770557551023], [0.08191835371624384, 0.8023527007026607], [-0.15586635868312032, 0.9092146130867911], [-0.272352626119692, 0.9044024355605703], [-0.5053251609928355, 0.8947780805081289], [-0.7334855183397582, 0.7686674580191156], [-0.6169992509031865, 0.7734796355453364], [-0.2675404485934713, 0.7879161681239986], [-0.1510541811568996, 0.7927283456502193], [0.08673053124246458, 0.685866433266089], [0.5526756009887515, 0.7051151433709719]], "right_eye": [[0.5083719964454907, -1.0469910457038247], [0.746156708844855, -1.1538529580879548], [0.9791292437179985, -1.1442286030355135], [1.207289601064921, -1.0181179805465004], [0.969504888665557, -0.91125606816237], [0.7365323537924134, -0.9208804232148114]], "top_lip": [[-0.7334855183397582, 0.7686674580191156], [-0.495700805940394, 0.6618055456349854], [-0.25791609354102984, 0.5549436332508552], [-0.14142982610445812, 0.5597558107770759], [0.09154270876868531, 0.5693801658295173], [0.32451524364182877, 0.5790045208819589], [0.6691618684253232, 0.7099273208971927], [0.5526756009887515, 0.7051151433709719], [0.08673053124246458, 0.685866433266089], [-0.14624200363067885, 0.6762420782136476], [-0.2627282710672506, 0.6714299006874268], [-0.6169992509031865, 0.7734796355453364]], "transform": {"angle": -0.04128763785847867, "scale": 8.577386918987896, "center": [568.0138888888889, 228.15277777777777]}, "chin": [[-1.5980051724652418, -0.9006377063026543], [-1.6172538825701248, -0.4346926365563674], [-1.520016325238436, 0.036064610716140186], [-1.4227787679067474, 0.5068218579886479], [-1.3207290330488377, 0.8610928378245838], [-1.107005208280577, 1.336662262623312], [-0.8884692059860958, 1.6957454199854687], [-0.5486347587288221, 1.9431544874372744], [-0.08268968898253518, 1.9624031975421572], [0.3880675582899724, 1.8651656402104686], [0.9801232505252726, 1.6562539929684288], [1.455692675324001, 1.442530168200168], [1.93607427764895, 1.1123200759953362], [2.1882955226269765, 0.6559993613014905], [2.328842677694652, 0.07838020164485261], [2.352903565325755, -0.504051135538006], [2.4934507203934304, -1.081670295194644]], "right_eyebrow": [[0.17334972671443777, -1.410886380592202], [0.5324328840765944, -1.6294223828866832], [0.8867038639125303, -1.7314721177445929], [1.3478367561325963, -1.5957371402031382], [1.6876712033898702, -1.3483280727513327]], "nose_tip": [[-0.4668277407830696, -0.037112058984444946], [-0.35515365087271866, 0.08418638597834752], [-0.23866738343614693, 0.08899856350456825], [-0.0008826710367827465, -0.017863348879562018], [0.2320898638363607, -0.008238993827120556]], "left_eye": [[-1.127247925192734, -0.9978752636343432], [-1.0059494802299418, -1.1095493535446943], [-0.7729769453567982, -1.0999249984922528], [-0.5448165880098755, -0.9738143760032395], [-0.7826013004092397, -0.8669524636191092], [-1.015573835282383, -0.8765768186715507]], "nose_bridge": [[-0.19054560817393962, -1.075864110861149], [-0.2001699632263811, -0.8428915759880056], [-0.20979431827882253, -0.6099190411148621], [-0.219418673331264, -0.37694650624171866]]}, {"left_eyebrow": [[-1.495838286723166, -1.5126393389948927], [-1.262726566984722, -1.7839949076064416], [-0.8843761007222272, -1.8126777942612706], [-0.6225814943289543, -1.705682896610325], [-0.22510910362990671, -1.4821321390901576]], "bottom_lip": [[0.7036891488240572, 0.730604885175154], [0.46101646686733694, 0.8758436316992049], [0.20878282269234033, 0.8949655561357576], [0.082666000604842, 0.904526518354034], [-0.16956764357015458, 0.9236484427905866], [-0.4313622499634276, 0.816653545139641], [-0.8192736784441988, 0.7192196097069717], [-0.6931568563567004, 0.7096586474886954], [-0.18868956800670728, 0.6714147986155901], [0.06354407616828933, 0.6522928741790375], [0.31577772034328594, 0.6331709497424848], [0.7036891488240572, 0.730604885175154]], "right_eye": [[0.45327981789896654, -0.8993528397440477], [0.822069321943185, -1.054152548486375], [1.0743029661181815, -1.0732744729229275], [1.2099807504239564, -0.9567186130537058], [0.967308068467236, -0.8114798665296548], [0.7150744242922394, -0.7923579420931021]], "top_lip": [[-0.8192736784441988, 0.7192196097069717], [-0.44092321218170394, 0.6905367230521428], [-0.07213370813748532, 0.5357370143098154], [0.06354407616828933, 0.6522928741790375], [0.3062167581250096, 0.5070541276549864], [0.5680113645182826, 0.6140490253059321], [0.7036891488240572, 0.730604885175154], [0.7036891488240572, 0.730604885175154], [0.3253386825615623, 0.759287771829983], [0.07310503838656567, 0.7784096962665357], [-0.17912860578843093, 0.7975316207030883], [-0.6931568563567004, 0.7096586474886954]], "transform": {"angle": 0.07566563026752006, "scale": 7.906468821692466, "center": [452.8888888888889, 107.81944444444444]}, "chin": [[-2.204734408156774, -0.824689455247743], [-2.1664905592836687, -0.3202221668977496], [-2.1282467104105636, 0.18424512145224353], [-2.090002861537458, 0.6887124098022367], [-1.9352031527951308, 1.0575019138464552], [-1.528169799877807, 1.4071694934541212], [-1.004580587091261, 1.6211592887560125], [-0.49055233652299146, 1.7090322619704053], [0.02347591404527806, 1.7969052351847983], [0.5279432023952713, 1.758661386311693], [1.013288566308712, 1.4681838932635911], [1.3820780703529305, 1.313384184521264], [1.4795120057855997, 0.9254727560404925], [1.576945941218269, 0.5375613275597214], [1.664818914432662, 0.023533076991451768], [1.6361360277778327, -0.3548173892710431], [1.724009000992226, -0.8688456398393127]], "right_eyebrow": [[0.5315918288950832, -1.5394979123998156], [0.7742645108518034, -1.6847366589238666], [1.0264981550268, -1.7038585833604194], [1.2787317992017968, -1.722980507796972], [1.4239705457258476, -1.4803078258402518]], "nose_tip": [[-0.3530502389673109, 0.17650847248387314], [-0.10081659479231432, 0.15738654804732047], [0.16097801160095865, 0.2643814456982661], [0.2775338714701806, 0.12870366139249145], [0.4036506935576789, 0.11914269917421512]], "left_eye": [[-1.205360793675064, -1.0272939750814518], [-0.9531271495000676, -1.0464158995180044], [-0.7008935053250709, -1.0655378239545572], [-0.43909889893179793, -0.9585429263036116], [-0.6913325431067946, -0.9394210018670589], [-0.9435661872817913, -0.9202990774305063]], "nose_bridge": [[0.055807427199918935, -1.1229035972642152], [0.08449031385474795, -0.7445531310017204], [0.10361223829130062, -0.4923194868267237], [0.2584119470336279, -0.12352998278250515]]}, {"left_eyebrow": [[-1.5315844979912365, -1.2472068461352324], [-1.2876069672868535, -1.4974965398239057], [-1.042051395836398, -1.6242194274143151], [-0.6713509775416058, -1.6289535496525331], [-0.29907251850074096, -1.510120865792487]], "bottom_lip": [[0.8398554290668707, 0.5763124711633484], [0.47231109226422385, 0.8281802055980944], [0.22675552081376837, 0.9549030931885037], [-0.02037809138275975, 0.958059174680649], [-0.2675117035792879, 0.9612152561727944], [-0.5162233565218887, 0.8408045315666756], [-0.7649350094644894, 0.7203938069605569], [-0.6413682033662254, 0.7188157662144843], [-0.1471009789731691, 0.7125036032301937], [-0.023534172874905054, 0.710925562484121], [0.22359943932162307, 0.7077694809919757], [0.7178666637146793, 0.7014573180076851]], "right_eye": [[0.5722072871713981, -1.0268999266219392], [0.6941960525235895, -1.152044773466276], [0.9413296647201176, -1.1552008549584214], [1.1900413176627185, -1.0347901303523024], [0.9444857462122629, -0.9080672427618932], [0.6973521340157348, -0.9049111612697479]], "top_lip": [[-0.7649350094644894, 0.7203938069605569], [-0.519379438014034, 0.5936709193701475], [-0.1502570604653144, 0.4653699910336654], [0.09845459247728637, 0.5857807156397843], [0.22044335782947777, 0.46063586879544743], [0.46915501077207855, 0.5810465934015663], [0.8398554290668707, 0.5763124711633484], [0.7178666637146793, 0.7014573180076851], [0.22359943932162307, 0.7077694809919757], [-0.023534172874905054, 0.710925562484121], [-0.1471009789731691, 0.7125036032301937], [-0.6413682033662254, 0.7188157662144843]], "transform": {"angle": 0.012770055451461797, "scale": 8.092128424479656, "center": [317.2638888888889, 78.25]}, "chin": [[-1.895972753301738, -0.7482054995039581], [-1.8896605903174475, -0.2539382751109018], [-1.8849264680792295, 0.11676214318389037], [-1.7550474989966747, 0.609451326830874], [-1.6267465706601927, 0.9785737043795936], [-1.3748788362254465, 1.3461180411822404], [-0.9994442956924364, 1.7120843372388146], [-0.6255877959054988, 1.9544838271971245], [-0.12974253076636993, 2.0717384703110984], [0.48809149972495036, 2.063848266580735], [0.9792026426258613, 1.8104024913999162], [1.3451689386824357, 1.434967950866906], [1.7111352347390099, 1.0595334103338958], [1.8283898778529832, 0.5636881451947671], [1.9456445209669568, 0.06784288005563814], [1.9409103987287388, -0.302857538239154], [1.9345982357444482, -0.7971247626322103]], "right_eyebrow": [[0.3187615119905794, -1.5180110695228504], [0.5658951241871075, -1.5211671510149956], [0.935017501735827, -1.6494680793514775], [1.307295960776692, -1.5306353954914316], [1.5575856544653652, -1.2866578647870486]], "nose_tip": [[-0.40370283564613313, -0.025741151867245515], [-0.15656922344960503, -0.028897233359390817], [-0.03142437660526832, 0.09309153199280058], [0.21413119484518714, -0.03363135559760878], [0.33769800094345126, -0.03520939634368143]], "left_eye": [[-1.1577279982042987, -1.0048073561769222], [-0.9121724267538432, -1.1315302437673316], [-0.6650388145573152, -1.134686325259477], [-0.5398939677129784, -1.0126975599072854], [-0.7870275799095066, -1.00954147841514], [-1.0341611921060347, -1.0063853969229948]], "nose_bridge": [[-0.04720478406599484, -1.1425765289898402], [-0.04404870257384954, -0.895442916793312], [-0.04089262108170423, -0.6483093045967838], [-0.03773653958955893, -0.4011756924002557]]}, {"left_eyebrow": [[-1.4321182903859127, -1.768137204639537], [-1.1747344061529708, -1.765839941489729], [-1.0460424640364998, -1.764691309914825], [-0.789807211378462, -1.633702104648546], [-0.5335719587204242, -1.5027128993822672]], "bottom_lip": [[0.7326720940960129, 0.8252283744632496], [0.3442990045967921, 1.0791663639714795], [0.08691512036385024, 1.0768691008216715], [-0.1704687638690916, 1.0745718376718634], [-0.29916070598556255, 1.0734232060969595], [-0.4267040165271294, 0.9435826324055844], [-0.5530986954937923, 0.6850501165977386], [-0.4244067533773214, 0.6861987481726426], [-0.2968634428357545, 0.8160393218640175], [-0.1681715007192836, 0.8171879534389216], [0.08921238351365826, 0.8194852165887296], [0.6039801519795419, 0.8240797428883456]], "right_eye": [[0.3626771097952562, -0.9799047098920554], [0.6223582571780061, -1.2349913309751892], [0.8797421414109479, -1.232694067825381], [1.1359773940689857, -1.1017048625591022], [1.0049881888027068, -0.8454696099010643], [0.6189123624532941, -0.8489155046257764]], "top_lip": [[-0.5530986954937923, 0.6850501165977386], [-0.4244067533773214, 0.6861987481726426], [-0.2945661796859465, 0.5586554376310756], [-0.16702286914437958, 0.6884960113224506], [-0.03718229545300465, 0.5609527007808837], [0.3477448993215041, 0.6930905376220666], [0.7326720940960129, 0.8252283744632496], [0.6039801519795419, 0.8240797428883456], [-0.03947955860281267, 0.8183365850138256], [-0.1681715007192836, 0.8171879534389216], [-0.2968634428357545, 0.8160393218640175], [-0.4244067533773214, 0.6861987481726426]], "transform": {"angle": -0.008925198082928344, "scale": 7.770184785765283, "center": [195.25, 173.63888888888889]}, "chin": [[-1.4390100798353367, -0.9959855519407115], [-1.4436046061349528, -0.48121778347482774], [-1.4470505008596648, -0.09514195712541498], [-1.194261142926339, 0.4219230744902768], [-1.06901509553458, 0.8091475324145935], [-0.8139284744514461, 1.0688286797973434], [-0.5599904849432163, 1.457201769296564], [-0.30490386386008256, 1.716882916679314], [-0.04866861120204473, 1.847872121945593], [0.46609915726383894, 1.852466648245209], [0.8533236151881557, 1.72722060085345], [1.3715372783787514, 1.3457393008036531], [1.7599103678779724, 1.0918013112954237], [2.1505807205270013, 0.5804794375542518], [2.283867188943088, 0.06686030066327214], [2.288461715242704, -0.44790746780261154], [2.4228968152336954, -1.090218546810062]], "right_eyebrow": [[0.1098877518619304, -1.496969741507747], [0.49711220978624715, -1.622215788899506], [0.8843366677105639, -1.7474618362912648], [1.1417205519435059, -1.745164573141457], [1.5266477467180146, -1.613026736300274]], "nose_tip": [[-0.5485041691941763, 0.17028234813185492], [-0.4209608586526094, 0.3001229218232298], [-0.2922689165361385, 0.30127155339813383], [-0.03488503230319664, 0.3035688165479418], [0.09380690981327429, 0.30471744812284585]], "left_eye": [[-1.180477564027491, -1.1223802309073743], [-1.050636990336116, -1.2499235414489411], [-0.793253106103174, -1.2476262782991332], [-0.5381664850200403, -0.9879451309163834], [-0.7955503692529821, -0.9902423940661914], [-1.0529342534859238, -0.9925396572159995]], "nose_bridge": [[-0.2796339692121944, -1.1143398098830462], [-0.28307986393690643, -0.7282639835336336], [-0.28652575866161845, -0.3421881571842208], [-0.41866359550280136, 0.04273903759028799]]}], "embedding": [[-0.09555099904537201, 0.16100333631038666, 0.114013671875, -0.10550063848495483, -0.17316247522830963, 0.0003031361848115921, -0.02101157419383526, -0.1523474156856537, 0.2055245339870453, -0.08199616521596909, 0.15374496579170227, -0.14285975694656372, -0.21737152338027954, -0.02694089710712433, -0.07539112865924835, 0.24140071868896484, -0.17529304325580597, -0.21227288246154785, -0.11455661058425903, -0.04663703963160515, -0.02666894719004631, 0.001536218449473381, 0.03450958803296089, 0.08960705995559692, -0.11777001619338989, -0.39649659395217896, 0.03918265178799629, 0.009057432413101196, -0.0031562689691781998, -0.11602485179901123, 0.018092213198542595, 0.24065245687961578, -0.18606367707252502, -0.005706915631890297, -0.012779219076037407, 0.16050094366073608, -0.06945296376943588, -0.1276630461215973, 0.22517135739326477, -0.003785761073231697, -0.2972310185432434, -0.020925864577293396, 0.024193856865167618, 0.3356132507324219, 0.25565844774246216, -0.07252389192581177, 0.0013285166351124644, -0.044685542583465576, 0.15590234100818634, -0.34999752044677734, 0.08624151349067688, 0.1861003190279007, 0.0319412499666214, 0.030668139457702637, 0.0346926748752594, -0.1464601308107376, -0.011154953390359879, 0.10815595090389252, -0.22219833731651306, -0.02331114374101162, 0.13032041490077972, -0.14427004754543304, -0.04789900407195091, -0.19844754040241241, 0.13685472309589386, 0.1699795126914978, -0.08447131514549255, -0.144407719373703, 0.17018888890743256, -0.103545181453228, -0.02784065529704094, 0.02097257226705551, -0.12993858754634857, -0.17165662348270416, -0.3161972463130951, -0.012428290210664272, 0.31125408411026, 0.1548791378736496, -0.16219519078731537, -0.014534791931509972, -0.028455864638090134, -0.008602878078818321, -0.02085123397409916, 0.11690464615821838, -0.012760691344738007, -0.02326570451259613, -0.0806707963347435, 0.07665363699197769, 0.15195253491401672, -0.0440463125705719, -0.06744293868541718, 0.28329700231552124, 0.022604838013648987, -0.09674552828073502, -0.053441137075424194, 0.058107901364564896, -0.10260812193155289, 0.10332262516021729, -0.20232537388801575, 0.014880817383527756, 0.032586369663476944, 0.0059830378741025925, 0.003903573378920555, 0.11562206596136093, -0.21585631370544434, 0.2508561313152313, 0.0027535390108823776, 0.06529760360717773, 0.018312672153115273, -0.09627360850572586, -0.07973918318748474, -0.025065289810299873, 0.19842973351478577, -0.20414122939109802, 0.12313675135374069, 0.1656058132648468, 0.09502585232257843, 0.1603691279888153, 0.07435094565153122, 0.03584934026002884, 0.08582143485546112, -0.05960646644234657, -0.17060241103172302, -0.03811211884021759, 0.0926462784409523, -0.026989353820681572, -0.021829772740602493, 0.15693193674087524], [-0.19912414252758026, 0.11310044676065445, 0.10596735775470734, -0.09305858612060547, -0.19174526631832123, -0.037992872297763824, -0.03418964520096779, -0.14689524471759796, 0.18345510959625244, -0.2107744961977005, 0.09103585034608841, -0.038803961127996445, -0.13419920206069946, 0.13754549622535706, -0.08009887486696243, 0.12083140015602112, -0.14264066517353058, -0.13691620528697968, -0.03379198908805847, -0.08073707669973373, -0.023350872099399567, -0.013377414084970951, 0.02212318778038025, 0.09961340576410294, -0.11194176971912384, -0.34542179107666016, -0.11990387737751007, -0.06612789630889893, -0.040249522775411606, -0.000568790826946497, 0.04518583416938782, 0.03417780250310898, -0.16206079721450806, -0.015255659818649292, -0.042158015072345734, 0.055601101368665695, -0.11929797381162643, -0.050411637872457504, 0.2021344006061554, -0.019239526242017746, -0.2718188762664795, 0.009329663589596748, 0.05227317288517952, 0.299659788608551, 0.2596239447593689, 0.022927507758140564, 0.025882553309202194, -0.08490794897079468, 0.20189611613750458, -0.27401506900787354, 0.061983928084373474, 0.1066640317440033, 0.016324196010828018, 0.005902301520109177, 0.10248390585184097, -0.08381611108779907, 0.04600672796368599, 0.13504137098789215, -0.166660875082016, 0.02652529813349247, 0.136223703622818, -0.08560866117477417, 0.025548160076141357, -0.05189378932118416, 0.2504345774650574, 0.1853356957435608, -0.058741457760334015, -0.14730456471443176, 0.2494833916425705, -0.20922186970710754, 0.0031270072795450687, 0.1085415631532669, -0.08667396754026413, -0.20909494161605835, -0.19186951220035553, 0.0469689704477787, 0.37100279331207275, 0.20633013546466827, -0.008660205639898777, 0.01866273209452629, -0.07590781152248383, 0.035775262862443924, 0.08886750787496567, 0.10508541762828827, -0.06600047647953033, -0.06192578375339508, -0.04652952775359154, 0.01140403002500534, 0.24022746086120605, 0.0030888470355421305, -0.06105293333530426, 0.23491966724395752, 0.043827518820762634, -0.09871334582567215, 0.04527592658996582, 0.05719098448753357, -0.19608630239963531, 0.02134275808930397, -0.20863457024097443, -0.009449198842048645, 0.007893296889960766, 0.0013002674095332623, 0.005520444363355637, 0.12713629007339478, -0.22509697079658508, 0.2092984914779663, -0.1340453028678894, -0.010865282267332077, -0.06895396113395691, -0.05850188434123993, -0.08393965661525726, 0.014516854658722878, 0.14761151373386383, -0.1992620974779129, 0.11173040419816971, 0.08736229687929153, -0.004731782246381044, 0.17608331143856049, 0.0701696053147316, -0.004268733784556389, 0.013340242207050323, -0.04153905063867569, -0.17485269904136658, -0.04100392758846283, 0.11401185393333435, -0.06532545387744904, 0.07744408398866653, 0.04035797715187073], [-0.11083175241947174, -0.008426103740930557, -0.03031899780035019, -0.06919342279434204, -0.10449941456317902, -0.10146000981330872, 0.004085135646164417, -0.06473754346370697, 0.1586197167634964, -0.10264547169208527, 0.15072154998779297, -0.017335155978798866, -0.23801189661026, -0.09513352811336517, -0.026668913662433624, 0.06953546404838562, -0.19157296419143677, -0.13276009261608124, -0.10630708187818527, -0.17597579956054688, 0.052454933524131775, 0.02077970840036869, -0.033954326063394547, -0.030674347653985023, -0.13216018676757812, -0.31584432721138, -0.07011326402425766, -0.14082202315330505, 0.1337193250656128, -0.09803490340709686, 0.09192274510860443, 0.1353990137577057, -0.11999844014644623, -0.10131365060806274, 0.002048984169960022, 0.049757957458496094, 0.03187915310263634, -0.020126823335886, 0.27284812927246094, 0.00872001051902771, -0.15878164768218994, -0.0029004625976085663, 0.07960819453001022, 0.3008769452571869, 0.20626477897167206, -0.020551851019263268, 0.057172589004039764, -0.023166941478848457, 0.2137724906206131, -0.2076154351234436, 0.08358553797006607, 0.14057864248752594, 0.2059171199798584, 0.03267420083284378, 0.14733639359474182, -0.1418784260749817, -0.00035900436341762543, 0.13213282823562622, -0.23983822762966156, 0.1000661849975586, 0.09251684695482254, -0.10560590028762817, -0.10406635701656342, -0.021798595786094666, 0.09445758163928986, 0.01273965835571289, -0.05924282595515251, -0.13301487267017365, 0.2785544991493225, -0.13701769709587097, -0.05158807337284088, 0.05363340303301811, -0.10270749777555466, -0.09226787090301514, -0.2483098804950714, 0.023037932813167572, 0.33675000071525574, 0.09501002728939056, -0.118843674659729, 0.09582271426916122, -0.07013839483261108, -0.0923575609922409, 0.03174939006567001, -0.001870499923825264, -0.06963229179382324, -0.06372886151075363, -0.08119206130504608, 0.047561343759298325, 0.1301455795764923, 0.01460215449333191, -0.025986695662140846, 0.11997301876544952, 0.03273420035839081, -0.045829884707927704, 0.05430135130882263, 0.0670628771185875, -0.18666532635688782, -0.021125217899680138, -0.10567526519298553, -0.05116601660847664, 0.14443713426589966, -0.16226083040237427, 0.015594061464071274, 0.06063693016767502, -0.17102964222431183, 0.21750245988368988, -0.02456943318247795, 0.005646850913763046, -0.04342526197433472, -0.0482649952173233, -0.028390277177095413, 0.07781729102134705, 0.17324042320251465, -0.1903623342514038, 0.198843315243721, 0.13710230588912964, -0.018996501341462135, 0.16643498837947845, 0.0357469841837883, 0.0021855831146240234, -0.0048753563314676285, -0.04370753839612007, -0.20061466097831726, -0.1680174469947815, -0.039891451597213745, 0.010210918262600899, 0.02920261025428772, 0.08030089735984802], [-0.10105118900537491, 0.0685158520936966, 0.12290483713150024, -0.08109816908836365, -0.13829240202903748, -0.030604951083660126, 0.031518179923295975, -0.08302783966064453, 0.2524496018886566, -0.12668538093566895, 0.13867506384849548, -0.055843643844127655, -0.28421467542648315, 0.060379885137081146, -0.02854311466217041, 0.16928496956825256, -0.21350954473018646, -0.20485936105251312, -0.022078394889831543, 0.005135660991072655, 0.09498246759176254, 0.004343104548752308, 0.05010414496064186, 0.05403031408786774, -0.1755346953868866, -0.3620776832103729, -0.1649441421031952, -0.03929172828793526, -0.048520125448703766, -0.021776355803012848, 0.04312663525342941, 0.06825757771730423, -0.15866711735725403, -0.038399145007133484, 0.09873704612255096, 0.04452918469905853, -0.0637952908873558, -0.263394832611084, 0.18404266238212585, 0.015429641120135784, -0.2529401481151581, -0.0930786281824112, 0.055771976709365845, 0.2665455639362335, 0.19254013895988464, -0.007163079455494881, -0.003668401390314102, -0.11008425056934357, 0.11281418055295944, -0.34257927536964417, 0.05003039911389351, 0.18990632891654968, 0.03471185639500618, 0.05767303332686424, 0.09107767045497894, -0.13738739490509033, 0.0819857120513916, 0.1584147959947586, -0.25993773341178894, 0.03294035419821739, 0.09060312807559967, -0.13158591091632843, 0.021561671048402786, -0.1215762123465538, 0.10352414846420288, 0.1535012423992157, -0.13737428188323975, -0.13130918145179749, 0.16814367473125458, -0.1477411687374115, 0.010630546137690544, 0.04906647652387619, -0.1745961755514145, -0.30140426754951477, -0.2024002969264984, -0.0386543832719326, 0.40463557839393616, 0.18347272276878357, -0.12593068182468414, -0.04380251467227936, -0.0581994466483593, 0.06023385375738144, 0.02524534985423088, 0.14269593358039856, -0.009530367329716682, -0.0844326913356781, -0.11579626053571701, 0.04288889095187187, 0.2257557362318039, -0.10368996858596802, -0.06346160918474197, 0.27130115032196045, -0.03402264416217804, -0.12788152694702148, 0.023566851392388344, 0.07976812869310379, -0.10896559804677963, 0.05298768728971481, -0.17038795351982117, 0.011268280446529388, 0.01504220999777317, -0.07066524773836136, -0.052752189338207245, 0.11404122412204742, -0.1920924335718155, 0.0643681064248085, -0.011935201473534107, -0.11256472766399384, -0.045976195484399796, -0.16036762297153473, -0.17205344140529633, -0.03194429725408554, 0.15238584578037262, -0.24374039471149445, 0.1519966423511505, 0.2072836458683014, -0.007266482338309288, 0.21633553504943848, -0.006069302558898926, 0.07916797697544098, 0.03207412362098694, -0.1211070716381073, -0.09015271067619324, -0.0819355845451355, 0.054380252957344055, 0.06905446201562881, 0.003413834609091282, -0.04826675355434418], [-0.1317601203918457, 0.08566931635141373, 0.03223549574613571, -0.0076329149305820465, -0.07194279879331589, -0.08208703249692917, -0.012437853962182999, -0.12107841670513153, 0.08703897148370743, -0.06259439140558243, 0.22010868787765503, -0.06373400241136551, -0.25012969970703125, -0.04278326407074928, -0.061506275087594986, 0.13810782134532928, -0.1460530310869217, -0.038189709186553955, -0.24118754267692566, -0.13167399168014526, 0.026474829763174057, 0.03513995558023453, 0.08379387855529785, -0.020026620477437973, -0.14405927062034607, -0.2491932213306427, -0.03180642053484917, -0.07230058312416077, 0.08246190845966339, -0.05906286463141441, 0.010455312207341194, 0.10049304366111755, -0.26480743288993835, -0.12121391296386719, -0.003548629581928253, -0.0064993673004209995, -0.06051916256546974, -0.025818366557359695, 0.2420918345451355, 0.042692024260759354, -0.17575518786907196, 0.026179317384958267, -0.020802631974220276, 0.2213136851787567, 0.24607034027576447, -0.030506888404488564, -0.027998482808470726, -0.062339186668395996, 0.12024790048599243, -0.3132965862751007, 0.015613519586622715, 0.1779041588306427, 0.07255423814058304, 0.10199952125549316, 0.018924513831734657, -0.12230619043111801, 0.05873775854706764, 0.12183993309736252, -0.19798621535301208, 0.0512763187289238, 0.11464959383010864, -0.19450688362121582, -0.034708403050899506, -0.04004047438502312, 0.04615582153201103, 0.09522724151611328, -0.0514916256070137, -0.09658438712358475, 0.15566754341125488, -0.09891489893198013, 0.0712931677699089, 0.07742604613304138, -0.08328402042388916, -0.19454732537269592, -0.3237733244895935, 0.03504788130521774, 0.3104519248008728, 0.18454128503799438, -0.13587234914302826, -0.031343840062618256, -0.11732566356658936, 0.023368900641798973, 0.06617419421672821, -0.06200949102640152, -0.09482520073652267, -0.06200771778821945, -0.06057383492588997, 0.073717400431633, 0.1419648975133896, -0.044904086738824844, -0.08640635013580322, 0.26504233479499817, -0.011502668261528015, -0.03649939224123955, 0.07301725447177887, 0.07583572715520859, -0.1336018592119217, -0.09187649190425873, -0.11173474788665771, 0.0496302992105484, 0.056338366121053696, -0.1821882575750351, 0.038979701697826385, 0.041744254529476166, -0.10069452226161957, 0.16352824866771698, -0.05109165236353874, 0.021570993587374687, -0.05722763016819954, -0.07622262090444565, -0.09383565187454224, 0.0440315380692482, 0.1574743539094925, -0.12336299568414688, 0.2978881597518921, 0.18156036734580994, -0.028640324249863625, 0.147153839468956, 0.1303107738494873, 0.03826127201318741, -0.0922948569059372, 0.011988095939159393, -0.06922439485788345, -0.15255823731422424, 0.06797333061695099, 0.03973044827580452, 0.09655510634183884, 0.026927094906568527], [-0.1953759491443634, 0.11616070568561554, 0.04952749237418175, -0.0625142753124237, -0.12232927978038788, -0.07125937193632126, -0.09838294982910156, -0.14440694451332092, 0.1507897675037384, -0.07727353274822235, 0.19383589923381805, -0.04409119486808777, -0.1804366260766983, -0.022723108530044556, -0.1360623985528946, 0.20516836643218994, -0.2316243052482605, -0.20586465299129486, -0.05514538288116455, -0.012581542134284973, 0.025786716490983963, -0.03176800534129143, 0.037194106727838516, 0.06949266791343689, -0.14290805160999298, -0.39243873953819275, -0.07709622383117676, -0.05923723429441452, 0.0018115940038114786, -0.012223459780216217, 0.0241513941437006, 0.07155432552099228, -0.2252202033996582, -0.04557530954480171, 0.040545571595430374, 0.08057137578725815, 0.0694110170006752, -0.13488827645778656, 0.1820911318063736, -0.06456223130226135, -0.2853987514972687, -0.06493481248617172, 0.1098601445555687, 0.26444289088249207, 0.17635099589824677, -0.06139986589550972, 0.06326072663068771, -0.12408971041440964, 0.15555179119110107, -0.18372872471809387, 0.052130624651908875, 0.13453523814678192, 0.02451041154563427, 0.017626237124204636, 0.03932303190231323, -0.141190305352211, 0.03293476998806, 0.12657292187213898, -0.14540521800518036, -0.04535806179046631, 0.07833290100097656, -0.005611127242445946, -0.02573331445455551, -0.13900743424892426, 0.1876329779624939, 0.17016184329986572, -0.09544135630130768, -0.23866397142410278, 0.1950165331363678, -0.12035998702049255, -0.002939896658062935, 0.03845291584730148, -0.14555370807647705, -0.1683969646692276, -0.3372572064399719, -0.03951326012611389, 0.34885478019714355, 0.09857738018035889, -0.15239453315734863, 0.07416006177663803, -0.0462246797978878, -0.005949161946773529, 0.03855734318494797, 0.1447109580039978, -0.04708985984325409, 0.1086229532957077, -0.11320115625858307, 0.03804444894194603, 0.2451222687959671, 0.009034529328346252, -0.0743163526058197, 0.16956205666065216, -0.022814467549324036, -0.07165074348449707, 0.08896931260824203, 0.13339684903621674, -0.16781997680664062, 0.023959200829267502, -0.2034907341003418, 0.008165013045072556, 0.05379018932580948, 0.04875408858060837, -0.02823106199502945, 0.13586261868476868, -0.0898415818810463, 0.08842305094003677, -0.03272230550646782, 0.037077344954013824, -0.055292367935180664, -0.03348226845264435, -0.06478527188301086, -0.08514159172773361, 0.11211563646793365, -0.12054508924484253, 0.17039181292057037, 0.0732864961028099, 0.0326225608587265, 0.15554893016815186, 0.11273061484098434, 0.057724714279174805, -0.020757699385285378, 0.0008560828864574432, -0.13159121572971344, -0.05334945023059845, 0.06255146116018295, -0.05255579948425293, 0.09134221076965332, 0.02642076462507248], [-0.032503001391887665, 0.02013520523905754, 0.04763973504304886, -0.06322728097438812, -0.017650991678237915, -0.05488434061408043, 0.0016862023621797562, -0.05150897055864334, 0.08872608095407486, 0.002252791542559862, 0.24601168930530548, -0.05109585076570511, -0.22707918286323547, -0.09594018757343292, -0.0467873178422451, 0.0967026948928833, -0.15864787995815277, -0.06826885044574738, -0.1388961523771286, -0.1583675891160965, 0.08352729678153992, 0.04565753787755966, 0.05242960527539253, 0.10219034552574158, -0.24864965677261353, -0.2054588347673416, -0.0847189873456955, -0.1685318648815155, 0.04462369531393051, -0.11370782554149628, 0.04437728226184845, 0.06409904360771179, -0.18228492140769958, -0.09471423923969269, 0.03192223608493805, 0.03588150069117546, -0.016538191586732864, -0.08955013751983643, 0.15442314743995667, 0.0360126867890358, -0.12391982227563858, 0.14790651202201843, 0.04856511577963829, 0.2782529890537262, 0.22512604296207428, 0.013139177113771439, 0.041232530027627945, -0.09898475557565689, 0.1366262137889862, -0.23987148702144623, 0.14252407848834991, 0.12032388150691986, 0.15276435017585754, 0.07245717942714691, 0.1353827714920044, -0.11572003364562988, -0.024237867444753647, 0.2301693707704544, -0.17063386738300323, 0.17080514132976532, 0.04369126260280609, 0.012267038226127625, 0.01332475058734417, -0.11451327800750732, -0.0034415237605571747, 0.033610112965106964, -0.12976208329200745, -0.10654206573963165, 0.1503874808549881, -0.1344010978937149, -0.058663297444581985, 0.15861806273460388, -0.11591240763664246, -0.21483877301216125, -0.27766504883766174, 0.13322597742080688, 0.3466844856739044, 0.19872823357582092, -0.1901906430721283, -0.016230175271630287, -0.05959086865186691, 0.03761933743953705, 0.04290449246764183, -0.0050288476049900055, -0.0485408790409565, -0.09060655534267426, -0.0524548701941967, 0.04901214316487312, 0.1467503011226654, -0.0026657916605472565, -0.053453028202056885, 0.2992626428604126, -0.013089245185256004, -0.040538642555475235, 0.018210802227258682, 0.05390964448451996, -0.1350427269935608, 0.0529986172914505, -0.10418957471847534, 0.02521906979382038, 0.04450581967830658, -0.10390078276395798, 0.013036264106631279, 0.031619079411029816, -0.13158413767814636, 0.10102246701717377, -0.019149772822856903, -0.0244196355342865, -0.013653401285409927, 0.05076272040605545, -0.16911707818508148, 0.012968271970748901, 0.188484787940979, -0.28907930850982666, 0.19613415002822876, 0.2133665233850479, 0.07349758595228195, 0.08077957481145859, 0.1158648133277893, 0.05145728215575218, 0.03461455553770065, -0.059410449117422104, -0.12422847002744675, -0.06694341450929642, 0.09565974771976471, -0.01687927544116974, 0.010533860884606838, 0.009955432265996933], [-0.05431688576936722, 0.020937873050570488, 0.0645132064819336, -0.13130271434783936, -0.12904559075832367, -0.0350111722946167, -0.020131180062890053, -0.05224763602018356, 0.2603417932987213, -0.14887435734272003, 0.017324047163128853, -0.05150360241532326, -0.19921600818634033, 0.12102243304252625, -0.07291790097951889, 0.15952539443969727, -0.20859619975090027, -0.2335115224123001, -0.08884205669164658, -0.07622936367988586, 0.03805357217788696, 0.07168565690517426, 0.0008366554975509644, 0.12817467749118805, -0.1650182604789734, -0.3655838668346405, -0.05594026297330856, -0.12413053214550018, -0.05779474601149559, -0.0335003025829792, 0.11775517463684082, 0.0726497545838356, -0.17575788497924805, 0.014440679922699928, 0.047864194959402084, 0.05293009430170059, -0.006775527261197567, -0.12122400104999542, 0.22987927496433258, 0.09697724878787994, -0.3049658536911011, -0.01878730207681656, 0.05519614741206169, 0.29048678278923035, 0.22376501560211182, -0.030088897794485092, -0.028523080050945282, -0.06777875125408173, 0.22052814066410065, -0.3743607997894287, 0.07851576805114746, 0.16058802604675293, 0.00830779504030943, 0.1363598108291626, 0.12656109035015106, -0.14452910423278809, 0.12296953052282333, 0.1490156501531601, -0.2103140503168106, 0.05239805951714516, 0.05781900882720947, -0.06621624529361725, 0.054526738822460175, -0.01397452037781477, 0.19892865419387817, 0.08005325496196747, -0.09550700336694717, -0.11777760833501816, 0.1501842588186264, -0.1705571562051773, -0.04473038762807846, 0.07376941293478012, -0.11198748648166656, -0.1894932985305786, -0.20819738507270813, 0.009680735878646374, 0.35790184140205383, 0.2264876365661621, -0.1669207364320755, 0.06395714730024338, -0.06829769909381866, 0.03353113308548927, 0.05175966024398804, 0.14601242542266846, -0.013269510120153427, 0.05090819299221039, -0.04620956629514694, 0.05283406376838684, 0.18472576141357422, 0.008136854507029057, -0.03229353949427605, 0.37278854846954346, 0.004187900573015213, -0.005341455340385437, 0.05071863532066345, 0.052726611495018005, -0.16534416377544403, 0.012244366109371185, -0.20720532536506653, -0.0687117651104927, 0.08978749811649323, 0.12249631434679031, 0.021418262273073196, 0.09783954918384552, -0.22633622586727142, 0.21717563271522522, -0.07682160288095474, -0.029324863106012344, -0.05823137238621712, -0.027134312316775322, -0.03737996146082878, 0.002033555880188942, 0.16810177266597748, -0.17732614278793335, 0.14412182569503784, 0.12707683444023132, 0.04237756133079529, 0.16564922034740448, 0.03165323659777641, -0.05999714136123657, 0.02131885662674904, -0.09920847415924072, -0.17547960579395294, 0.0011263471096754074, 0.09275525063276291, 0.0014747502282261848, -0.0002117697149515152, 0.03986369073390961]]}
]
var trainData = {}
var trainDataKeys = []
var trainValues = {}
var validData = {}
var validDataKeys = []
var faceMapping = null;
function preload () {
extraFaceData = loadJSON('face_data.json');
trainData = loadJSON('train_data.json');
validData = loadJSON('valid_data.json');
trainValues = loadJSON('train_values.json');
}
var allEmbeddingsTree;
var allEmbeddings = [];
var embeddingDimensions;
var curNeighbors = [];
function squaredDistance(a, b) {
var sum = 0;
var length = 128;
for(var i=0; i<128; i++) {
var diff = a[i] - b[i];
sum += diff * diff;
}
// print(a.length,diff);
// print(sum, a==b);
return sum;
}
var haveStarted = false;
function setup () {
var extraFaceDataArray = Object.values(extraFaceData);
Array.prototype.unshift.apply(faceData, extraFaceDataArray);
// create the drawing canvas, save the canvas element
main_canvas = createCanvas(canvasWidth, canvasHeight);
main_canvas.parent('canvasContainer');
frameRate(30);
curRandomSeed = int(focusedRandom(0, 100));
for(var i=0; i<NUMFACES; i++) {
var face = new Face();
facelist.push(face);
}
mainFace = new FaceMap();
littleFace = new FaceMap();
for(var i=0; i<faceData.length; i++) {
var data = faceData[i];
data.image = loadImage(data.url);
}
trainDataKeys = Object.keys(trainData);
for(var i=0; i<trainDataKeys.length; i++) {
var curKey = trainDataKeys[i];
var data = trainData[curKey];
var curEmbedding = data.embedding[0];
if(curEmbedding.length == 128) {
curEmbedding.push(curKey);
allEmbeddings.push(curEmbedding);
}
else {
print("rejected embedding ", curEmbedding);
}
data.image = loadImage(data.url);
}
validDataKeys = Object.keys(validData);
for(var i=0; i<validDataKeys.length; i++) {
var curKey = validDataKeys[i];
var data = validData[curKey];
data.image = loadImage(data.url);
}
// print("Length: ", allEmbeddings.length);
// setup k-d tree
var N = allEmbeddings[0].length - 1;
embeddingDimensions = Array.apply(null, {length: N}).map(Number.call, Number);
// print(embeddingDimensions)
allEmbeddingsTree = new kdTree(allEmbeddings, squaredDistance, embeddingDimensions);
// print(allEmbeddingsTree)
faceSelector = createSelect();
faceSelector.option('Face');
faceSelector.option('FaceMap');
faceSelector.option('Train');
faceSelector.option('Neighbors');
faceSelector.option('TrainQuiz');
faceSelector.option('ValidQuiz');
faceSelector.value('FaceMap');
faceSelector.parent('selector1Container');
/* create the sliders */
for(i=1; i<=NUM_SLIDERS; i++) {
var slider = createSlider(0, 100, 50);
var parentStr = 'slider' + i + 'Container';
slider.parent(parentStr);
sliders.push(slider);
}
sliderTint = createSlider(0, 100, 40);
sliderTint.parent("sliderTintContainer");
/* and the buttons */
var loadButton = createButton('load');
loadButton.mousePressed(loadCurrentSettings);
loadButton.parent('button1Container');
var interpButton = createButton('interpolate');
interpButton.mousePressed(interpolateCurrent);
interpButton.parent('button1Container');
var saveButton = createButton('save');
saveButton.mousePressed(saveCurrentSettings);
saveButton.parent('button2Container');
var getValuesButton = createButton('get values');
getValuesButton.mousePressed(getSingleJson);
getValuesButton.parent('button3Container');
var randButton = createButton('get all values');
randButton.mousePressed(getAllJson);
randButton.parent('button4Container');
updateSlidersForTraining();
// rotation in degrees
angleMode(DEGREES);
haveStarted = true;
}
function saveCurrentSettings() {
var curKey = trainDataKeys[curTrainIndex];
obj = mainFace.getProperties();
trainValues[curKey] = obj;
// for(var i=0; i<obj.length; i++) {
// trainData[curKey][i] = obj[i];
// }
var text = select('#output');
text.html("Storing values for " + curKey);
// getAllJson();
}
function getSingleJson() {
obj = mainFace.getProperties();
var text = select('#output');
var json = JSON.stringify(obj, null, 2);
text.html(json)
}
function getAllJson() {
obj = trainValues;
var text = select('#output');
var json = JSON.stringify(obj, null, 2);
// alert(json);
text.html(json)
}
// global variables for colors
var bg_color1 = [50, 50, 50];
var bg_color1 = [40, 20, 20];
var lastSwapTime = 0;
var millisPerSwap = 5000;
function changeRandomSeed() {
curRandomSeed = curRandomSeed + 1;
lastSwapTime = millis();
}
function mouseClicked() {
// changeRandomSeed();
}
var quiz_done = false;
var guessed_answer = 0;
function draw () {
var mode = faceSelector.value();
if(millis() > lastSwapTime + millisPerSwap) {
lastSwapTime = millis();
// changeRandomSeed();
}
resetFocusedRandom(curRandomSeed);
noStroke();
background(bg_color1);
var textDisplay = "unknown";
var params = [];
for(var i=0; i<NUM_SLIDERS; i++) {
params.push(sliders[i].value());
}
if (mode == 'Face') {
var w = canvasWidth / 10;
var h = canvasHeight / 6;
var max_shift = 0.2 * w;
var cur_face = 0;
for(var i=0; i<6; i++) {
for(var j=0; j<9; j++) {
var face = facelist[cur_face];
cur_face = cur_face + 1;
var y = h/2 + h*i;
var x = w/2 + w*j;
// shift even rows over by half a face
if(i%2 == 0) {
x = x + w/2;
}
// noFill();
// stroke(255, 0, 0);
// rect(x-w/2, y-w/2, w, h);
face.randomize();
face.draw1(x, y, w, h);
// noStroke();
// fill(255, 0, 0);
// ellipse(x-2, y-2, 4, 4);
}
}
textDisplay = "facegrid";
}
else if (mode == 'FaceMap' || mode == 'Train') {
var do_train = true;
if (mode == 'FaceMap') {
do_train = false;
}
if(do_train) {
// var keys = Object.keys(trainData);
var curKey = trainDataKeys[curTrainIndex];
var data = trainData[curKey];
}
else {
var data = faceData[curFaceIndex];
}
// Displays the image at its actual size at point (0,0)
var img = data.image
var x1 = (width/4-400/2);
var x2 = (3*width/4-400/2);
var y1 = (height/2-400/2);
image(img, x1, y1, 400, 400);
if(do_train) {
if (curKey in trainValues) {
fill(0, 200, 0);
}
else {
fill(200, 0, 0);
}
ellipse(x1+400/2, y1+400+15, 10, 10);
}
image(img, x2, y1, 400, 400);
noStroke();
var curSliderTintValue = sliderTint.value();
var overlayAlpha = map(curSliderTintValue, 0, 100, 255, 0);
fill(bg_color1[0], bg_color1[1], bg_color1[2], overlayAlpha);
rect(x2, y1, 400, 400);
stroke(0);
fill(255);
for(var i=0; i<data.landmarks.length; i++) {
// get array of face marker positions [x, y] format
var positions = data.landmarks[i];
var shifted_positions = JSON.parse(JSON.stringify(positions))
var data_mean = [0.0, 0.0];
var data_scale = 1.0;
var data_angle = 0.0;
if ('transform' in positions) {
data_mean = positions.transform.center;
data_scale = positions.transform.scale;
data_angle = positions.transform.angle;
delete shifted_positions.transform
}
var scale_x = 400.0 / img.width;
var scale_y = 400.0 / img.height;
push();
translate(x1, y1)
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
stroke(0);
fill(255);
strokeWeight(1/data_scale);
Object.keys(positions).forEach(function(key) {
if (key=='transform') {
return;
}
var curSection = positions[key];
var shiftedSection = shifted_positions[key];
for (var i=0; i<curSection.length; i++) {
var cur_x = curSection[i][0];
var cur_y = curSection[i][1];
ellipse(cur_x, cur_y, 3/data_scale, 3/data_scale);
// get ready for drawing the face
shiftedSection[i][0] = cur_x;
shiftedSection[i][1] = cur_y;
}
});
noFill();
stroke(0, 0, 255);
ellipse(0, 0, 4, 4);
line(0, -2, 0, 2);
line(-2, 0, 2, 0);
// ellipse(x1+data_mean[0], y1+data_mean[1], 4*data_scale, 4*data_scale);
// line(x1+data_mean[0], y1+data_mean[1]-2*data_scale, x1+data_mean[0], y1+data_mean[1]+2*data_scale);
pop();
var settings = params;
if ((typeof data.embedding !== 'undefined') &&
(data.embedding != null) &&
(data.embedding.length > i) &&
(data.embedding[i] != null) &&
(typeof data.embedding[i].length !== 'undefined') &&
(data.embedding[i].length == 128)) {
var curEmbedding = data.embedding[i];
results = getAverageSettingsFrom(curEmbedding);
settings = results[0];
}
push();
translate(x2, y1)
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
mainFace.setProperties(settings);
mainFace.draw(shifted_positions);
pop();
}
if(do_train) {
textDisplay = "Train: " + curKey;
}
else {
textDisplay = "FaceMap: " + curFaceIndex;
}
}
else if (mode == 'Neighbors') {
// var keys = Object.keys(trainData);
var curKey = trainDataKeys[curTrainIndex];
var data = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = data.image
var x1 = (width/4-250/2);
var y1 = (height/3-250/2);
image(img, x1, y1, 250, 250);
if (curKey in trainValues) {
fill(0, 200, 0);
}
else {
fill(200, 0, 0);
}
ellipse(x1+250/2, y1+250+15, 10, 10);
var y2 = (3*height/4-80/2);
for(var i=0; i<4; i++) {
// var keys = Object.keys(trainData);
var curKey = curNeighbors[i];
var nearData = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = nearData.image
var x2 = (width/4 - 200 + i*100);
image(img, x2, y2, 80, 80);
}
for(var i=0; i<1; i++) {
// get array of face marker positions [x, y] format
var positions = data.landmarks[i];
var shifted_positions = JSON.parse(JSON.stringify(positions))
var data_mean = [0.0, 0.0];
var data_scale = 1.0;
var data_angle = 0.0;
if ('transform' in positions) {
data_mean = positions.transform.center;
data_scale = positions.transform.scale;
data_angle = positions.transform.angle;
delete shifted_positions.transform
}
var scale_x = 400.0 / img.width;
var scale_y = 400.0 / img.height;
Object.keys(positions).forEach(function(key) {
if (key=='transform') {
return;
}
var curSection = positions[key];
var shiftedSection = shifted_positions[key];
for (var i=0; i<curSection.length; i++) {
var cur_x = curSection[i][0];
var cur_y = curSection[i][1];
// get ready for drawing the face
shiftedSection[i][0] = cur_x;
shiftedSection[i][1] = cur_y;
}
});
var scale_x = 250.0 / img.width;
var scale_y = 250.0 / img.height;
var x2 = (3*width/4-250/2);
push();
translate(x2, y1);
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
mainFace.setProperties(params);
mainFace.draw(shifted_positions);
pop();
var scale_x = 80.0 / img.width;
var scale_y = 80.0 / img.height;
for(var j=0; j<4; j++) {
// var keys = Object.keys(trainData);
var curKey = curNeighbors[j];
var x2 = (3*width/4 - 200 + j*100);
push();
translate(x2, y2);
if (curKey in trainValues) {
var settings = trainValues[curKey]
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
littleFace.setProperties(settings);
littleFace.draw(shifted_positions);
}
else {
noFill();
stroke(100);
rect(10, 10, 70, 70);
}
pop();
}
}
textDisplay = "Neighbors: " + trainDataKeys[curTrainIndex];
}
else if (mode == 'TrainQuiz' || mode == 'ValidQuiz') {
var curKey = trainDataKeys[curTrainIndex];
var data = trainData[curKey];
var valid_mode = false;
if (mode == 'ValidQuiz') {
valid_mode = true;
curKey = validDataKeys[curValidIndex];
data = validData[curKey];
}
// Displays the image at its actual size at point (0,0)
var img = data.image
var x1 = (width/2-200/2);
var y1 = (height/3-300/2);
image(img, x1, y1, 200, 200);
if(valid_mode) {
fill(0, 0, 200);
}
else if (curKey in trainValues) {
fill(0, 200, 0);
}
else {
fill(200, 0, 0);
}
ellipse(x1+200/2, y1+200+15, 10, 10);
var y2 = (3*height/5-80/2);
var y3 = (4*height/5-80/2);
/*
for(var i=0; i<4; i++) {
// var keys = Object.keys(trainData);
var curKey = curNeighbors[i];
var nearData = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = nearData.image
var x2 = (width/4 - 200 + i*100);
image(img, x2, y2, 80, 80);
}
*/
for(var i=0; i<1; i++) {
// get array of face marker positions [x, y] format
var positions = data.landmarks[i];
var shifted_positions = JSON.parse(JSON.stringify(positions))
var data_mean = [0.0, 0.0];
var data_scale = 1.0;
var data_angle = 0.0;
if ('transform' in positions) {
data_mean = positions.transform.center;
data_scale = positions.transform.scale;
data_angle = positions.transform.angle;
delete shifted_positions.transform
}
var scale_x = 400.0 / img.width;
var scale_y = 400.0 / img.height;
Object.keys(positions).forEach(function(key) {
if (key=='transform') {
return;
}
var curSection = positions[key];
var shiftedSection = shifted_positions[key];
for (var i=0; i<curSection.length; i++) {
var cur_x = curSection[i][0];
var cur_y = curSection[i][1];
// get ready for drawing the face
shiftedSection[i][0] = cur_x;
shiftedSection[i][1] = cur_y;
}
});
/*
var scale_x = 250.0 / img.width;
var scale_y = 250.0 / img.height;
var x2 = (3*width/4-250/2);
push();
translate(x2, y1);
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
mainFace.setProperties(params);
mainFace.draw(shifted_positions);
pop();
*/
var scale_x = 80.0 / img.width;
var scale_y = 80.0 / img.height;
var otherKeys = Object.keys(trainValues);
var index = otherKeys.indexOf(trainDataKeys[curTrainIndex]);
if(index >= 0) {
otherKeys.splice(index, 1);
}
var answerSlot = int(focusedRandom(0, 4));
var answerKeys = Array(4);
for(var j=0; j<4; j++) {
if(j == answerSlot) {
curKey = trainDataKeys[curTrainIndex];
}
else {
var guess = int(focusedRandom(0, otherKeys.length));
// if(otherKeys.length > j+2) {
// while(answerKeys.indexOf(guess) == -1) {
// guess = int(focusedRandom(0, otherKeys.length));
// }
// }
curKey = otherKeys[guess];
}
answerKeys[j] = curKey;
// print("Answer", j, " is ", curKey);
var x2 = (width/2 - 200 + j*100);
var settings = params;
if (valid_mode && j == answerSlot) {
var curEmbedding = data.embedding[0];
results = getAverageSettingsFrom(curEmbedding);
settings = results[0];
var validTrainKeys = results[1];
}
else if (curKey in trainValues) {
settings = trainValues[curKey];
}
push();
translate(x2, y2);
translate(scale_x*data_mean[0], scale_y*data_mean[1]);
scale(scale_x*data_scale, scale_y*data_scale);
rotate(degrees(data_angle));
strokeWeight(1/data_scale);
littleFace.setProperties(settings);
littleFace.draw(shifted_positions);
pop();
if(quiz_done && guessed_answer == (j+1)) {
push();
translate(x2, y2);
noFill();
strokeWeight(4);
if(guessed_answer == (answerSlot+1)) {
stroke(0, 100, 0);
}
else {
stroke(100, 0, 0);
}
rect(-10, -10, 100, 100);
pop();
}
}
if(quiz_done) {
for(var j=0; j<4; j++) {
if (valid_mode && (answerSlot+1) == (j+1)) {
for(var k=0; k<4; k++) {
var curKey = validTrainKeys[k];
var nearData = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = nearData.image
var x2 = (width/2 - 200 + j*100 + (k%2)*40);
var y4 = y3 + (int(k/2))*40;
image(img, x2, y4, 40, 40);
}
}
else {
var curKey = answerKeys[j];
var nearData = trainData[curKey];
// Displays the image at its actual size at point (0,0)
var img = nearData.image
var x2 = (width/2 - 200 + j*100);
image(img, x2, y3, 80, 80);
}
}
}
}
if(valid_mode) {
if(quiz_done) {
textDisplay = "ValidQuiz: hit spacebar to continue";
}
else {
textDisplay = "ValidQuiz: hit 1, 2, 3, or 4 to guess";
}
}
else {
if(quiz_done) {
textDisplay = "TrainQuiz: hit spacebar to continue";
}
else {
textDisplay = "TrainQuiz: hit 1, 2, 3, or 4 to guess";
}
}
}
fill(255);
textSize(32);
textAlign(CENTER);
text(textDisplay, width/2, height-12);
}
function keyTyped() {
if(!haveStarted) {
return;
}
var mode = faceSelector.value();
if (key == 'q' && mode != 'Face') {
print("face")
faceSelector.value('Face');
}
else if (key == 'w' && mode != 'FaceMap') {
print("facemap")
faceSelector.value('FaceMap');
}
else if (key == 'e' && mode != 'Train') {
faceSelector.value('Train');
}
else if (key == 'r' && mode != 'Neighbors') {
faceSelector.value('Neighbors');
}
else if (key == 't' && mode != 'TrainQuiz') {
faceSelector.value('TrainQuiz');
}
else if (key == 'y' && mode != 'ValidQuiz') {
faceSelector.value('ValidQuiz');
}
if (key == ' ' &&
(mode == 'TrainQuiz' || mode == 'ValidQuiz') && quiz_done) {
quiz_done = false;
if(mode == 'TrainQuiz') {
curTrainIndex = (curTrainIndex + 1) % trainDataKeys.length;
}
else {
curValidIndex = (curValidIndex + 1) % validDataKeys.length;
}
changeRandomSeed();
}
else if ((mode == 'TrainQuiz' || mode == 'ValidQuiz') && quiz_done == false) {
if(key >= '1' && key <= '4') {
guessed_answer = key - '0';
quiz_done = true;
}
}
if (key == 's') {
saveCurrentSettings();
}
else if (key == 'i') {
interpolateCurrent();
}
else if (key == 'l') {
loadCurrentSettings();
}
if (key == '!') {
saveBlocksImages();
}
else if (key == '@') {
saveBlocksImages(true);
}
}
function interpolateCurrent() {
var curNeighborSettings = [];
for(var i=0; i<4; i++) {
neighborKey = curNeighbors[i]
if(neighborKey in trainValues) {
curNeighborSettings.push(trainValues[neighborKey]);
}
}
for(var i=0; i<NUM_SLIDERS; i++) {
sliders[i].value(50);
}
if(curNeighborSettings.length > 0) {
settings = curNeighborSettings[0];
for(var i=0; i<settings.length; i++) {
var sum = 0;
for(j=0; j<curNeighborSettings.length; j++) {
sum += curNeighborSettings[j][i];
}
var avg = int(sum / curNeighborSettings.length)
sliders[i].value(avg);
}
}
}
function loadCurrentSettings() {
var curKey = trainDataKeys[curTrainIndex];
for(var i=0; i<NUM_SLIDERS; i++) {
sliders[i].value(50);
}
if (curKey in trainValues) {
var settings = trainValues[curKey]
for(var i=0; i<settings.length; i++) {
sliders[i].value(settings[i]);
}
}
}
function updateSlidersForTraining() {
var mode = faceSelector.value();
var curKey = trainDataKeys[curTrainIndex];
// first find the closest neighbors
var nearest = allEmbeddingsTree.nearest(trainData[curKey].embedding[0], 5);
curNeighbors = [];
curNeighborSettings = [];
for(var i=0; i<5; i++) {
if(nearest[i][0][128] != curKey) {
var neighborKey = nearest[i][0][128];
curNeighbors.push(neighborKey);
if(neighborKey in trainValues) {
curNeighborSettings.push(trainValues[neighborKey]);
}
}
}
loadCurrentSettings();
// if(mode == 'Neighbors') {
// interpolateCurrent();
// }
// else {
// loadCurrentSettings();
// }
}
function getAverageSettingsFrom(e) {
// first find the closest neighbors
var nearest = allEmbeddingsTree.nearest(e, 4);
curNeighbors = [];
curNeighborSettings = [];
for(var i=0; i<4; i++) {
var neighborKey = nearest[i][0][128];
curNeighbors.push(neighborKey);
if(neighborKey in trainValues) {
curNeighborSettings.push(trainValues[neighborKey]);
}
}
for(var i=0; i<4; i++) {
neighborKey = curNeighbors[i]
if(neighborKey in trainValues) {
curNeighborSettings.push(trainValues[neighborKey]);
}
}
var trainValueKeys = Object.keys(trainValues);
var props = trainValues[trainValueKeys[0]];
if(curNeighborSettings.length > 0) {
settings = curNeighborSettings[0];
for(var i=0; i<settings.length; i++) {
var sum = 0;
for(j=0; j<curNeighborSettings.length; j++) {
sum += curNeighborSettings[j][i];
}
var avg = int(sum / curNeighborSettings.length)
props[i] = avg;
}
}
return [props, curNeighbors];
}
function keyPressed() {
if(!haveStarted) {
return;
}
var mode = faceSelector.value();
if (mode == 'FaceMap') {
if (keyCode == LEFT_ARROW || keyCode == UP_ARROW) {
curFaceIndex = (curFaceIndex + faceData.length - 1) % faceData.length;
} else if (keyCode === RIGHT_ARROW || keyCode == DOWN_ARROW) {
curFaceIndex = (curFaceIndex + 1) % faceData.length;
}
}
else if (mode == 'Train' || mode == 'Neighbors') {
if (keyCode == LEFT_ARROW || keyCode == UP_ARROW) {
curTrainIndex = (curTrainIndex + trainDataKeys.length - 1) % trainDataKeys.length;
updateSlidersForTraining();
} else if (keyCode == RIGHT_ARROW || keyCode == DOWN_ARROW) {
curTrainIndex = (curTrainIndex + 1) % trainDataKeys.length;
updateSlidersForTraining();
}
}
}
This file has been truncated, but you can view the full file.
{
"000001": {"landmarks": [{"left_eye": [[-1.082368150584677, -1.1315914745344497], [-0.9593439214531732, -1.280429936290964], [-0.7185988847742163, -1.2464195066724204], [-0.5410534149832094, -1.0324529610883009], [-0.7526093143927599, -1.0056744699934634], [-0.9933543510717169, -1.039684899612007]], "nose_tip": [[-0.6517630300672874, 0.2325432722547785], [-0.5325958348150934, 0.3249319764121349], [-0.3526397188495179, 0.3881315433000849], [-0.17075508594428748, 0.33071752723109965], [0.041282942700176795, 0.27378564039702813]], "top_lip": [[-0.6273951851470185, 0.5948661503604983], [-0.5364528686944032, 0.5661591423260055], [-0.35553249425900024, 0.5690519177354879], [-0.2057297740326586, 0.6317693553885243], [0.0058261253768919375, 0.6049908642936865], [0.4284557949610792, 0.5815872778432448], [0.9104279975539068, 0.6194547413410985], [0.788850156127144, 0.6778330158799111], [0.00437973767215075, 0.695451051511388], [-0.17702276599816597, 0.7227116718411394], [-0.35746101119865514, 0.6896655006924233], [-0.5378992563991444, 0.6566193295437069]], "right_eye": [[0.33243080298474414, -0.9581644217973353], [0.5162439528296294, -1.1361920208232559], [0.7881066437176477, -1.162006253448266], [0.9967697677177159, -1.0078643701077008], [0.7842496098383378, -0.9207790875343954], [0.5425403146895535, -0.8944827256744714]], "right_eyebrow": [[0.007493259141964269, -1.3856153837306597], [0.40189804992657274, -1.5301146823729506], [0.7953385822413537, -1.6143071895367735], [1.1868505976164798, -1.577886113743661], [1.5457985710778033, -1.3911801884892936]], "nose_bridge": [[-0.3601330405478064, -1.0295601856788186], [-0.39655411634091875, -0.6380481703036927], [-0.46264645863835113, -0.2771716799027142], [-0.5292209301706973, 0.11385820623749812]], "bottom_lip": [[0.9104279975539068, 0.6194547413410985], [0.48104851868092724, 1.0650058681408137], [0.0861615986614051, 1.239658562522338], [-0.15506556725246554, 1.2358015286430282], [-0.33550381245295474, 1.2027553574943122], [-0.5130492822439616, 0.9887888119101929], [-0.6273951851470185, 0.5948661503604983], [-0.5378992563991444, 0.6566193295437069], [-0.361318045077965, 0.9308926666062939], [-0.18136192911238952, 0.9940922334942438], [0.02971184106224728, 0.99746713813864], [0.788850156127144, 0.6778330158799111]], "left_eyebrow": [[-1.345552515244248, -1.6485383652156484], [-1.2234925445825717, -1.7370700354936948], [-1.0133830328777622, -1.6733883393708313], [-0.8343911753820142, -1.5498819810044133], [-0.6257280513819461, -1.395740097663848]], "transform": {"center": [129.48611111111111, 164.94444444444446], "angle": -0.01598785619757211, "scale": 33.15952225070593}, "chin": [[-1.2642527834899076, -1.0741774584654644], [-1.3313093842571675, -0.6529941765860182], [-1.3079057978067257, -0.23036450700183098], [-1.133735232660115, 0.19467580875692503], [-0.9294112717742705, 0.6201982537505948], [-0.7246051816535122, 1.0155673030050305], [-0.5801058830112215, 1.4099720937896392], [-0.3757819221253769, 1.8354945387833088], [-0.04650521516837345, 1.9915649390635288], [0.40627785015504764, 1.968643481848001], [0.9227426116013326, 1.7356125129276636], [1.4406537607523586, 1.4121213567896251], [1.9298579018688922, 0.9976878841989713], [2.23910592701985, 0.5200548447203672], [2.3990333611793804, -0.05044902815050689], [2.4991361330953565, -0.6520705552304422], [2.5389321135328644, -1.254656340780205]]}], "url": "http://i.imgur.com/iBvM5aU.jpg", "embedding": [[-0.1066107302904129, 0.1485077291727066, 0.039523154497146606, -0.03118717670440674, -0.14745712280273438, 0.057141903787851334, -0.0691254585981369, -0.09960339963436127, 0.22188687324523926, -0.1243767961859703, 0.23935052752494812, -0.07511913776397705, -0.34320682287216187, 0.076741062104702, -0.08805474638938904, 0.20431597530841827, -0.2400541603565216, -0.13779573142528534, -0.12186677008867264, -0.12693065404891968, -0.03830017149448395, -0.025015411898493767, 0.06169622018933296, 0.1271224021911621, -0.20797201991081238, -0.36247333884239197, 0.022544126957654953, -0.06996633112430573, -0.01914086937904358, -0.25682058930397034, 0.008568190969526768, 0.065699502825737, -0.1454155594110489, 0.07797020673751831, -0.009573593735694885, 0.11103647947311401, -0.0285562202334404, -0.15743309259414673, 0.2089920938014984, -0.060973260551691055, -0.20405620336532593, -0.129622682929039, 0.10013291239738464, 0.2830047309398651, 0.29707640409469604, -0.08574699610471725, 0.008662041276693344, -0.09223061054944992, 0.17101623117923737, -0.2949543595314026, 0.0042231082916259766, 0.1493961662054062, -0.003148164600133896, 0.10517379641532898, 0.1334391087293625, -0.16013196110725403, -0.04087948054075241, 0.15982848405838013, -0.07950172573328018, -0.026963332667946815, 0.06907039880752563, -0.020525097846984863, 0.033665142953395844, -0.1001741886138916, 0.31165194511413574, 0.09398506581783295, -0.1851806640625, -0.11977623403072357, 0.14412885904312134, -0.166152685880661, -0.05420549213886261, 0.07561560720205307, -0.11570170521736145, -0.21482019126415253, -0.31546851992607117, -0.013671251945197582, 0.33818429708480835, 0.16871163249015808, -0.1523156762123108, 0.03564263880252838, -0.041831448674201965, -0.057398829609155655, 0.0007435409352183342, 0.15268775820732117, -0.05465215817093849, 0.025998586788773537, -0.10950946062803268, 0.10757769644260406, 0.24762581288814545, 0.01226470060646534, -0.055185332894325256, 0.2214655578136444, -0.04510842263698578, -0.09844058752059937, 0.0459165945649147, 0.11920461803674698, -0.22929653525352478, -0.022295590490102768, -0.19496098160743713, -0.048880964517593384, 0.018183540552854538, 0.011494350619614124, -0.011754537001252174, 0.09797869622707367, -0.12854936718940735, 0.1525353044271469, -0.03767697885632515, -0.007157992571592331, -0.04525915905833244, -0.030064966529607773, -0.12139441817998886, 0.004227103665471077, 0.19985349476337433, -0.32485613226890564, 0.15989111363887787, 0.0861654207110405, 0.08745167404413223, 0.14284919202327728, 0.03687800467014313, 0.06106988713145256, 0.012853779830038548, 0.01497199758887291, -0.05323990061879158, -0.05195643752813339, 0.008762119337916374, -0.059743717312812805, 0.08953282237052917, 0.005234583280980587]]},
"000002": {"url": "http://i.imgur.com/jOx5g4v.jpg", "landmarks": [{"transform": {"center": [128.375, 165.83333333333334], "angle": -0.007359635338350166, "scale": 34.180370727298374}, "right_eyebrow": [[0.028368803398605258, -1.3700104553085821], [0.40998565160510364, -1.5427459460800845], [0.8197816872519248, -1.5689872926282846], [1.228716460280025, -1.4782055763215871], [1.5782784392619549, -1.270831428469353]], "left_eyebrow": [[-1.4055943478832487, -1.3220493909604683], [-1.258023625386545, -1.4965074069694129], [-0.9945064183083454, -1.5238253317910146], [-0.7314198425395065, -1.4926317251851675], [-0.4689792137347087, -1.3736708214381472]], "chin": [[-1.3782764230616469, -1.058532183882269], [-1.4105466079408955, -0.6491667795448084], [-1.4137763427611, -0.210330293838943], [-1.2999830147264073, 0.22936745448564347], [-1.1571492366326703, 0.6985362841786347], [-0.9263328457430801, 1.1390952951219424], [-0.6955164548534899, 1.5796543060652501], [-0.4350136669408146, 1.9619171012357892], [-0.02650952522207519, 2.111210348969935], [0.4710538075659191, 2.0856149493857763], [0.9993801156503997, 1.8554445054602267], [1.4993119206398773, 1.5080356830250994], [1.912122375452223, 1.0722136164847587], [2.1498288672915833, 0.5765881245888871], [2.3004140089538105, -0.007450611412198382], [2.3634471691295453, -0.6213910600910493], [2.4264803293052806, -1.2353315087699]], "bottom_lip": [[0.8916156259467554, 0.5965853171513583], [0.5080609368481344, 1.0326226993463798], [0.12622877298695567, 1.2346139558316063], [-0.1372884340912438, 1.261931880653208], [-0.3416481627779536, 1.2019131396429972], [-0.5741870789049864, 0.9954002544094842], [-0.8052187854492568, 0.5840970091799008], [-0.6886263539037202, 0.6434698032260708], [-0.3397103218858309, 0.938611248219478], [-0.13535059319912107, 0.9986299892296887], [0.09891084816535405, 0.9710967487534068], [0.7743772474371778, 0.6249798202463615]], "nose_tip": [[-0.5965527436689411, 0.059000435915624636], [-0.4509198620643601, 0.14784431133019918], [-0.2465601333776503, 0.20786305234041], [-0.012083376358494864, 0.15107404615040373], [0.22260869631534086, 0.06502927424667312]], "right_eye": [[0.37663888845245347, -0.987101713174002], [0.5829364580312861, -1.1903848635873102], [0.8462383494548052, -1.1884470226951875], [1.108463662604923, -1.0402303532344432], [0.8737715899310872, -0.9541855813307125], [0.610469698507568, -0.9561234222228352]], "left_eye": [[-1.144230297351852, -1.0568096586448266], [-0.9678344404507848, -1.1725408275716422], [-0.7337883147409899, -1.1708183023341998], [-0.5302898486730013, -0.9937764984690914], [-0.7647666056921567, -0.9369874922790852], [-0.9988127314019515, -0.9387100175165276]], "top_lip": [[-0.8052187854492568, 0.5840970091799008], [-0.5997824784891456, 0.49783692162148985], [-0.3655210371246704, 0.470303681145208], [-0.1611613084379606, 0.5303224221554188], [0.0440596828674705, 0.47331810031073224], [0.4826808529186555, 0.5058036008446611], [0.8916156259467554, 0.5965853171513583], [0.7743772474371778, 0.6249798202463615], [0.07245418596247363, 0.5905564788203099], [-0.1618072554020015, 0.6180897192965918], [-0.3663822997433916, 0.5873267440001053], [-0.6886263539037202, 0.6434698032260708]], "nose_bridge": [[-0.23708624457171693, -1.0793906390634613], [-0.297966248200649, -0.7580078475218541], [-0.32937517046117637, -0.46566550603929097], [-0.3902551740901084, -0.1442827144976837]]}], "embedding": [[-0.12037080526351929, 0.03749090060591698, 0.045407697558403015, -0.04478744789958, -0.04764515161514282, -0.006907154340296984, 0.005972076207399368, -0.10542856156826019, 0.14295288920402527, -0.09997256100177765, 0.21441863477230072, -0.0513451024889946, -0.3523358106613159, -0.037741631269454956, -0.006192009896039963, 0.1582765132188797, -0.18614409863948822, -0.14054059982299805, -0.11978139728307724, -0.1259090155363083, 0.0949140191078186, 0.07833552360534668, 0.11771806329488754, 0.045201338827610016, -0.24501872062683105, -0.22651973366737366, -0.08845460414886475, -0.16605664789676666, -0.044129081070423126, -0.1511019468307495, 0.04749206453561783, 0.03995933383703232, -0.15163084864616394, -0.003514232113957405, 0.08082987368106842, 0.08683636784553528, -0.0799194797873497, -0.13217027485370636, 0.24530331790447235, -0.052129123359918594, -0.23659057915210724, -0.11538589000701904, 0.14392505586147308, 0.14539273083209991, 0.15861822664737701, -0.034020304679870605, 0.022781506180763245, -0.1414259672164917, 0.08858159184455872, -0.28399649262428284, 0.08719547837972641, 0.13119705021381378, 0.018745873123407364, 0.1704985797405243, 0.08732201904058456, -0.2575688660144806, 0.019225724041461945, 0.26145508885383606, -0.18699201941490173, 0.08288976550102234, 0.016980858519673347, -0.1294630467891693, -0.01230871956795454, -0.0031735170632600784, 0.14888083934783936, 0.0734291672706604, -0.1506129503250122, -0.2540396451950073, 0.15908631682395935, -0.1872425228357315, -0.05555734038352966, 0.3292992115020752, -0.1046946793794632, -0.2722305357456207, -0.24218958616256714, -0.03561791405081749, 0.4187271296977997, 0.10029162466526031, -0.08589155226945877, 0.016436416655778885, -0.11715260148048401, -0.09231382608413696, -0.008593427017331123, 0.12582415342330933, 0.02645774558186531, 0.014513108879327774, -0.08202856034040451, 0.005438998341560364, 0.2321903109550476, -0.041500870138406754, -0.07377777248620987, 0.2722841501235962, -0.0018758028745651245, -0.006018860265612602, 0.05323300510644913, 0.08911178261041641, -0.11155626177787781, -0.025044120848178864, -0.08318047225475311, -0.0871301144361496, -0.05117402970790863, -0.12127435952425003, -0.06783691793680191, 0.028693366795778275, -0.14985291659832, 0.15886175632476807, -0.02184174209833145, -0.057883307337760925, -0.10489897429943085, -0.08808303624391556, -0.06696747988462448, 0.03768002241849899, 0.20136496424674988, -0.4171253442764282, 0.17753958702087402, 0.21306639909744263, 0.07231452316045761, 0.1981665939092636, 0.031079236418008804, 0.10218647122383118, 0.020191770046949387, -0.08699503540992737, -0.20210224390029907, -0.023845812305808067, 0.06982298940420151, -0.010472597554326057, 0.040090203285217285, -0.010263604111969471]]},
"000005": {"embedding": [[-0.08472214639186859, 0.03194201737642288, 0.030310407280921936, -0.05851529538631439, -0.149995818734169, -0.015514515340328217, 0.013238154351711273, -0.057169295847415924, 0.1834779679775238, -0.12884166836738586, 0.11645298451185226, -0.046902552247047424, -0.25739264488220215, 0.018732478842139244, -0.08673983812332153, 0.080474354326725, -0.17339354753494263, -0.22670459747314453, -0.06766659766435623, -0.09060454368591309, -0.007942110300064087, -0.0005566515028476715, 0.01388474553823471, 0.050538185983896255, -0.12924279272556305, -0.3598056435585022, -0.04504040256142616, -0.029742378741502762, 0.025390159338712692, -0.08417949825525284, 0.05414523929357529, 0.18607468903064728, -0.22414836287498474, 0.029294848442077637, 0.020756427198648453, 0.22000306844711304, 0.03202294185757637, -0.02565551921725273, 0.20296832919120789, 0.02554469369351864, -0.2394534796476364, -0.037707798182964325, 0.046160344034433365, 0.3316062390804291, 0.21049347519874573, -0.04131569340825081, 0.00862395204603672, -0.085904560983181, 0.16596370935440063, -0.33631154894828796, 0.07407910376787186, 0.1960446834564209, 0.01797172799706459, 0.044147610664367676, 0.1362227201461792, -0.1945013701915741, 0.025888388976454735, 0.14120051264762878, -0.12248510867357254, 0.06490324437618256, 0.04631290212273598, -0.10042215883731842, 0.012805568985641003, -0.1166156679391861, 0.23193660378456116, 0.04795489087700844, -0.0807693600654602, -0.19046394526958466, 0.2716844081878662, -0.20044012367725372, -0.02001744508743286, 0.19841362535953522, -0.0646972581744194, -0.15014302730560303, -0.28008681535720825, 0.054681990295648575, 0.43460163474082947, 0.17419132590293884, -0.09069496393203735, 0.11180910468101501, -0.09523343294858932, -0.03506598621606827, 0.04687333479523659, 0.1291203498840332, -0.047241389751434326, 0.09027120471000671, -0.16822853684425354, 0.07783623784780502, 0.2386399805545807, 0.030934782698750496, -0.0476747527718544, 0.22516460716724396, 0.00754619762301445, 0.016410091891884804, 0.07873943448066711, 0.05746617913246155, -0.1234959214925766, -0.001109059900045395, -0.2353278398513794, -0.028311647474765778, 0.03381293639540672, -0.10852688550949097, -0.04091397672891617, 0.11155542731285095, -0.16116061806678772, 0.10330680012702942, -0.08764906227588654, -0.03291036933660507, -0.07099036127328873, -0.06769483536481857, -0.030301425606012344, 0.024111978709697723, 0.17304259538650513, -0.39394769072532654, 0.15081745386123657, 0.1293189972639084, 0.03524641692638397, 0.17413562536239624, 0.032787296921014786, 0.05589491128921509, 0.01944032311439514, -0.12800844013690948, -0.15188102424144745, -0.048212867230176926, -0.025100942701101303, -0.032420866191387177, -0.03750632330775261, 0.06819707155227661]], "url": "http://i.imgur.com/WQbXo4V.jpg", "landmarks": [{"chin": [[-1.8616951298144135, -0.4074913939727611], [-1.830218116704077, 0.02449605498098053], [-1.7412968126772292, 0.42731702498419527], [-1.6235644964936713, 0.8299602615905016], [-1.5058321803101133, 1.232603498196808], [-1.3022000278471504, 1.5482804981422589], [-0.9552237481882714, 1.7478247824763278], [-0.49353662009327776, 1.860225096752633], [0.05387261088421231, 1.8568481622113728], [0.6300928540184124, 1.8532934942732044], [1.1483356060453753, 1.7924722688154324], [1.550623375857865, 1.6171179283184547], [1.8367784300589725, 1.2984194606255604], [1.949711944526003, 0.9231653690006965], [2.004490234488888, 0.4618337076995197], [2.0598017246424987, 0.08693508286847279], [2.08612446924249, -0.31659682072237566]], "bottom_lip": [[0.5943502393822736, 0.7298417535584226], [0.3640398755255021, 0.7600746328904001], [0.1337295116687305, 0.7903075122223774], [-0.06794757342823952, 0.7915516460007365], [-0.2406359129715911, 0.8214290585388971], [-0.4999350223819811, 0.8230286591110729], [-0.7304231196356612, 0.8244505262863404], [-0.586723525645928, 0.7659398349883783], [-0.24276871373449221, 0.47569691265837705], [-0.06990264079423222, 0.4746305122769265], [0.1317744443027378, 0.4733863784985675], [0.4499397118049068, 0.6731083962295447]], "left_eye": [[-1.2301633965266032, -0.7859446867419765], [-1.0291972450172668, -0.9024328691471756], [-0.7988868811604952, -0.932665748479153], [-0.5104212927995784, -0.8768210581348171], [-0.7691872020192431, -0.7887884210925113], [-1.0281308446358164, -0.7295667962069156]], "transform": {"center": [125.52777777777777, 169.54166666666666], "scale": 34.70829026052194, "angle": 0.0061688614546630645}, "right_eyebrow": [[0.407087761292431, -1.602783830753637], [0.751931240188409, -1.7489716923000882], [1.0976633860689289, -1.7511044930629893], [1.386662174620571, -1.6088267662485236], [1.6475608846031369, -1.3511272574103093]], "left_eyebrow": [[-1.6653500466246964, -1.27306589245242], [-1.4364615499431923, -1.5337868690380776], [-1.1492400953606343, -1.6796192637907117], [-0.7746969373234044, -1.6819297979505212], [-0.4280761244583422, -1.5400075379298725]], "nose_tip": [[-0.33311188493660765, -0.15761215459851774], [-0.21786783630976764, -0.15832308818615143], [-0.07381277552621764, -0.15921175517069358], [0.09887556401713396, -0.18908916770885414], [0.27174163695739395, -0.1901555680903047]], "right_eye": [[0.5842194357584932, -0.9123859393740474], [0.814174332821448, -1.000240843019445], [1.073828909025655, -0.9442184192782007], [1.305205673263877, -0.8015852256699182], [1.045906563853487, -0.7999856250977423], [0.8152407332028986, -0.8273747700791848]], "top_lip": [[-0.7304231196356612, 0.8244505262863404], [-0.5027787567325159, 0.3620524646037128], [-0.24490151449739334, 0.12996476677785698], [-0.07185770816022494, 0.15770937855311645], [0.10083063138312666, 0.12783196601495586], [0.3613738745718757, 0.32790945053975], [0.5943502393822736, 0.7298417535584226], [0.4499397118049068, 0.6731083962295447], [0.13159671090582936, 0.4445753663418575], [-0.07025810758804908, 0.4170084879635065], [-0.24294644713140065, 0.44688590050166704], [-0.586723525645928, 0.7659398349883783]], "nose_bridge": [[-0.0512224322613026, -1.1677749140524518], [-0.050156031879852035, -0.9949088411121921], [-0.0780783770520199, -0.8506760469317336], [-0.10600072222418777, -0.7064432527512752]]}]},
"000006": {"embedding": [[-0.037340518087148666, -0.009861281141638756, 0.01682112365961075, 0.015028830617666245, -0.03984393551945686, 0.008840582333505154, -0.0016342755407094955, -0.14040151238441467, 0.1643073558807373, -0.04492109641432762, 0.23604202270507812, -0.09034944325685501, -0.2694287896156311, -0.03287893161177635, -0.17971572279930115, 0.10200217366218567, -0.1373196393251419, -0.13152699172496796, -0.0013713634107261896, -0.015583427622914314, 0.09445367008447647, -0.02705235406756401, 0.07680214196443558, 0.05951646342873573, -0.1298561692237854, -0.30151045322418213, -0.06509877741336823, -0.12767644226551056, -0.005780412815511227, -0.08428351581096649, -0.03085245192050934, 0.140376478433609, -0.18022111058235168, 0.029040010645985603, 0.018802300095558167, 0.06316819041967392, -0.014823711477220058, -0.09253495931625366, 0.14967061579227448, -0.08809986710548401, -0.19789695739746094, -0.07851918041706085, 0.07258162647485733, 0.26135769486427307, 0.18978539109230042, -0.09924253821372986, -0.03210604935884476, -0.0996297150850296, 0.07887569069862366, -0.29079535603523254, -0.012564423494040966, 0.15846040844917297, 0.13357052206993103, 0.08310223370790482, 0.0454026497900486, -0.11486513167619705, -0.020452361553907394, 0.13021445274353027, -0.12178590148687363, 0.05759982019662857, -0.015261940658092499, -0.08329445123672485, 0.036210570484399796, -0.16699472069740295, 0.21097762882709503, 0.07997196912765503, -0.16715091466903687, -0.10631788522005081, 0.12208883464336395, -0.14506393671035767, 0.015350818634033203, 0.117909274995327, -0.12119773775339127, -0.26833781599998474, -0.1865665316581726, -0.042581960558891296, 0.42389464378356934, 0.16043372452259064, -0.15177103877067566, 0.13627862930297852, -0.20112580060958862, -0.020550575107336044, -0.01641790196299553, 0.08351384103298187, 0.056368980556726456, 0.08287335932254791, -0.13589587807655334, 0.029553383588790894, 0.19450071454048157, -0.1520422399044037, -0.018039241433143616, 0.22141842544078827, -0.11370934545993805, 0.01859600841999054, 0.0064492132514715195, 0.04184103012084961, -0.11594384163618088, 0.07563938945531845, -0.12959477305412292, -0.01979164406657219, -0.10515623539686203, -0.07123018056154251, 0.03821875900030136, 0.0028341785073280334, -0.11969949305057526, 0.10799863934516907, 0.04363052546977997, 0.03618684411048889, 0.07277362048625946, -0.06492020934820175, -0.029409365728497505, -0.026074212044477463, 0.13603699207305908, -0.3846019506454468, 0.20211362838745117, 0.043041616678237915, 0.0991889014840126, 0.21639572083950043, -0.01706680655479431, 0.10247599333524704, -0.010260730050504208, -0.09328348189592361, -0.10795947164297104, 0.006460946053266525, 0.029768522828817368, -0.01863664761185646, -0.018566535785794258, -0.009757953695952892]], "landmarks": [{"right_eyebrow": [[0.5840756689481463, -1.5557005335979652], [0.7974193244068781, -1.7182664530850578], [1.0457793017860226, -1.757133756579308], [1.263936684212051, -1.763872974333523], [1.3934117725656496, -1.611897254174483]], "nose_tip": [[-0.145957824649816, 0.05780045891386709], [0.011794367869980048, 0.1153174126397215], [0.19974915534289225, 0.14070628062554114], [0.3234477713357348, 0.1056899587051284], [0.415981046982002, 0.07163638217817499]], "transform": {"center": [121.73611111111111, 165.29166666666666], "angle": 0.030881720293956815, "scale": 32.071627855031075}, "left_eyebrow": [[-1.5380557107993644, -1.5837298678824585], [-1.2623813746474817, -1.7482212781564699], [-0.9195626308351513, -1.7588114774845223], [-0.6050209911890185, -1.6749429103793887], [-0.28855386075596723, -1.5287436625811046]], "chin": [[-2.180974913355938, -1.1895281304609076], [-2.1646082416671297, -0.659717344569124], [-2.0859108892851705, -0.13183204946425958], [-1.9760481965566359, 0.3950905002471457], [-1.8048175685284094, 0.888922218825057], [-1.4485203892076486, 1.3146467843490612], [-1.0327807653741148, 1.6449498380464205], [-0.4952680163346573, 1.877905889130216], [0.006265665390928363, 1.9559979838745936], [0.43872944866914787, 1.8178581869798613], [0.7407553982003096, 1.4965773295795135], [0.9785251762514018, 1.114891282272933], [1.1227989332627673, 0.7360934711467307], [1.233981859140639, 0.29592772472083684], [1.3451647850185104, -0.14423802170505717], [1.3940170302032313, -0.5824782773440326], [1.3815013400882603, -0.9876277018495138]], "nose_bridge": [[0.16220208499797917, -1.0747419928909026], [0.17086679353911297, -0.7942539297717234], [0.2408994373799384, -0.5468566977860382], [0.2807294862676477, -0.2673313800603181]], "left_eye": [[-1.146742209558191, -1.0343066863656116], [-0.9012704683594244, -1.1666700108995882], [-0.5886543195002103, -1.1451321244876056], [-0.42705114540657707, -0.9629538093754493], [-0.6432830370456869, -0.8938839109280832], [-0.9247338455583255, -0.9163845427335249]], "right_eye": [[0.44654112969099574, -0.9587453400457345], [0.6900873801028438, -1.1534393452728617], [0.9394101028754477, -1.1611413084205364], [1.0990877861821624, -1.041293674001531], [0.9782774063696975, -0.9127813310413918], [0.7289546835970937, -0.9050793678937173]], "bottom_lip": [[0.6260789785044784, 0.8138280781352307], [0.5110450710527695, 1.129332463174823], [0.32886675594061315, 1.290935637268456], [0.14283745925461955, 1.3278774499757873], [-0.04511732821829263, 1.3024885819899676], [-0.3284936275178499, 1.2176572694913752], [-0.6205346353585409, 0.8523378938736031], [-0.46470793362566354, 0.8475241669063066], [-0.023579441806310244, 0.9898724331307537], [0.16341260027314264, 0.9840959607699977], [0.31827655661256077, 0.9481168934561257], [0.4712150221650602, 0.8498071454491027]], "top_lip": [[-0.6205346353585409, 0.8523378938736031], [-0.314657704253542, 0.6557183978595571], [-0.005892536968165097, 0.5525949228852376], [0.15185965555163092, 0.6101118766110919], [0.3057608664975897, 0.5429674689506445], [0.49564114475742055, 0.630687017629615], [0.6260789785044784, 0.8138280781352307], [0.4712150221650602, 0.8498071454491027], [0.31346282964526423, 0.7922901917232482], [0.15763612791238676, 0.7971039186905448], [-0.029355914167066104, 0.8028803910513007], [-0.46470793362566354, 0.8475241669063066]]}], "url": "http://i.imgur.com/rhEt5N6.jpg"},
"000007": {"landmarks": [{"left_eye": [[-1.0931910224172077, -1.1667936206965623], [-0.9072617228393265, -1.2867503934808842], [-0.6618151245924685, -1.2830616916954083], [-0.4804967022464322, -1.0962102166711578], [-0.726865475939659, -1.0385372688949193], [-0.9416312494056597, -1.0417648829572108]], "nose_tip": [[-0.46825938639295517, 0.1314838622863159], [-0.34691935043907973, 0.22537068752162562], [-0.16375657720030537, 0.28949886342244713], [0.021711634654391538, 0.20022291541898243], [0.23739958356676116, 0.14208887991955949]], "transform": {"scale": 32.589967769674075, "angle": -0.015027399619280415, "center": [127.19444444444444, 164.48611111111111]}, "chin": [[-1.552942306406882, -1.2043907613251872], [-1.5603197099778339, -0.7134975648314714], [-1.4751935514830297, -0.25190192994905947], [-1.39052848071141, 0.2403745297142097], [-1.243579584931707, 0.6722115152621334], [-1.0045882148094323, 1.1054317639796107], [-0.7655968446871574, 1.538652012697088], [-0.46386056183361457, 1.8807519625183624], [0.025188283767363057, 2.0108526652127434], [0.5170036557074478, 1.9568684192219812], [0.9818269046521511, 1.6569764872611765], [1.3862106794815092, 1.2948007302922881], [1.7306160679187064, 0.8396603235344592], [1.9834400697365162, 0.3524558288262196], [2.114462947877266, -0.19795466633647257], [2.184585264179486, -0.7799681617263908], [2.1928848431968073, -1.3322230077818211]], "nose_bridge": [[-0.1430076296570027, -1.091138251716128], [-0.17876041939288947, -0.7541102668498832], [-0.21497429685196073, -0.3864014572027809], [-0.251188174311032, -0.018692647555678708]], "top_lip": [[-0.6624882649881575, 0.8036954811260679], [-0.4774811408566452, 0.7451003579034605], [-0.2929351044483174, 0.7171860594617103], [-0.10977233120954295, 0.7813142353625319], [0.044553968141112205, 0.7222580244167399], [0.3504400405033155, 0.7882305512102994], [0.6879291130927451, 0.7933025161653289], [0.564283638522947, 0.8528198148343054], [0.07292935430604691, 0.8761232360442105], [-0.11161668210228097, 0.9040375344859608], [-0.29524054306423986, 0.8705901833659964], [-0.5709068783687704, 0.8357595690764786]], "right_eye": [[0.4399280411792847, -1.0823775849756225], [0.626779516203535, -1.263696007321659], [0.9029069392312502, -1.2595462178129986], [1.1158283618045128, -1.1335953046272782], [0.9298990622266314, -1.0136385318429562], [0.6537716391989162, -1.0177883213516168]], "right_eyebrow": [[0.2293120572219446, -1.3617326220656292], [0.5379646559232549, -1.4798450439572133], [0.9075178164630953, -1.5663544656215709], [1.2450068890525248, -1.5612825006665414], [1.6113324355300735, -1.433026148864898]], "left_eyebrow": [[-1.4576722180020185, -1.4177732716216342], [-1.301040480035441, -1.6302336064717122], [-1.0253741447309104, -1.5954029921821946], [-0.7506299848727488, -1.4992107283309624], [-0.4763469127377717, -1.372337639698873]], "bottom_lip": [[0.6879291130927451, 0.7933025161653289], [0.3774321634986967, 1.0341382371803418], [0.10038256502461264, 1.0913500972333956], [-0.11438320844138798, 1.088122483171104], [-0.2984681571265314, 1.085355956831997], [-0.48116984264212126, 0.9905469561503183], [-0.6624882649881575, 0.8036954811260679], [-0.5709068783687704, 0.8357595690764786], [-0.2943183676178709, 0.809228533804282], [-0.11115559437909646, 0.8733567097051035], [0.07339044202923141, 0.8454424112633533], [0.564283638522947, 0.8528198148343054]]}], "embedding": [[0.0007259082049131393, 0.19465941190719604, -0.010147977620363235, 0.034770261496305466, -0.05515235662460327, 0.03367019444704056, -0.016617178916931152, -0.06582227349281311, 0.15987910330295563, 0.03704320266842842, 0.16595369577407837, -0.075181744992733, -0.28983786702156067, -0.07164004445075989, -0.0690021961927414, 0.07388981431722641, -0.18128344416618347, -0.11775344610214233, -0.13268226385116577, -0.10314063727855682, 0.01810559630393982, 0.017883362248539925, 0.09431864321231842, 0.008697524666786194, -0.16968858242034912, -0.38846808671951294, -0.05519406870007515, -0.1838705688714981, -0.012349460273981094, -0.14603731036186218, -0.03430596739053726, 0.0842689797282219, -0.1523318886756897, -0.057055290788412094, 0.028209291398525238, 0.026094354689121246, -0.05098777636885643, -0.011781413108110428, 0.1785731166601181, -0.046844009310007095, -0.09967761486768723, 0.07884758710861206, 0.09317293763160706, 0.2780848741531372, 0.23515918850898743, 0.034521978348493576, 0.019941655918955803, -0.05969041585922241, 0.14150038361549377, -0.21218852698802948, 0.129740372300148, 0.1751473844051361, 0.17024973034858704, 0.07109884172677994, 0.13747678697109222, -0.1923958659172058, -0.01917063631117344, 0.12999606132507324, -0.19591528177261353, 0.11038082838058472, 0.037057504057884216, -0.02431129664182663, -0.04205906391143799, 0.03293204307556152, 0.16692739725112915, 0.08212815225124359, -0.10648854076862335, -0.1367456614971161, 0.12749609351158142, -0.14297617971897125, 0.08554922044277191, 0.129977747797966, -0.11860746145248413, -0.2194715291261673, -0.23596595227718353, 0.09177421778440475, 0.4537779688835144, 0.07773697376251221, -0.15449056029319763, -0.0014827251434326172, -0.12465507537126541, -0.03626052290201187, 0.018618298694491386, -0.030386002734303474, -0.17166529595851898, -0.09662649035453796, -0.19926343858242035, 0.06987422704696655, 0.1612050086259842, -0.031168611720204353, -0.10798272490501404, 0.1970548927783966, -0.02633446827530861, -0.008556774817407131, 0.04204708710312843, 0.06205200403928757, -0.16556373238563538, 0.0205097533762455, -0.11465752124786377, 0.004059862345457077, 0.02753473073244095, -0.1938042938709259, -0.11418565362691879, 0.029492609202861786, -0.13503772020339966, 0.03922915458679199, 0.0054579246789216995, -0.0028379112482070923, -0.04461018741130829, -0.0178971029818058, -0.16357725858688354, -0.02520890161395073, 0.2130015641450882, -0.374010294675827, 0.18687213957309723, 0.11489154398441315, 0.018094563856720924, 0.1646260917186737, 0.024396954104304314, 0.05165451765060425, 0.030602889135479927, -0.05696411058306694, -0.1306934356689453, -0.06390225887298584, 0.05578415095806122, 0.027428552508354187, -0.009128216654062271, 0.03172878175973892]], "url": "http://i.imgur.com/2bmpGiw.jpg"},
"000009": {"landmarks": [{"bottom_lip": [[0.803085784212075, 0.5491762338781955], [0.5685850357680547, 0.951660553240564], [0.3289359878567092, 1.1405907310800114], [0.11685278903873787, 1.2067544995538857], [-0.1584522928432075, 1.1828660072228865], [-0.5587301981481511, 1.0398884622886897], [-0.9351196111220955, 0.6216058354725476], [-0.8123532017565226, 0.6491716845659218], [-0.13382832915973342, 0.9380686598442156], [0.11023354686646245, 0.9321848890244152], [0.32231674568443375, 0.866021120550541], [0.6825257889039271, 0.6131335882946445]], "nose_bridge": [[0.18666526102610748, -0.9622365355885029], [0.22526318040660748, -0.6273869274049586], [0.2638610997871075, -0.29253731922141435], [0.33296675367088197, 0.0415768176096549]], "left_eye": [[-1.1564105284704447, -0.9603835305828753], [-0.9457982723574236, -1.0875627680632987], [-0.6704931904754783, -1.0636742757322994], [-0.4525262208377066, -0.8857761681799778], [-0.6958526255114273, -0.8493846628569031], [-0.9704222360408978, -0.8427654206846276]], "chin": [[-2.3230591531196256, -1.2375129642215683], [-2.2488051997685257, -0.6898446858675777], [-2.174551246417426, -0.1421764075135871], [-2.100297293066326, 0.4054918708404035], [-1.874975609903804, 0.8884673234254699], [-1.4680784624265852, 1.306014478889137], [-1.0023722600002423, 1.6305674881380308], [-0.4771215312723008, 1.8926340856754253], [-0.018034571018233393, 1.9426174843948485], [0.4068672979701842, 1.8407976819503744], [0.733626721276503, 1.4666146830338551], [1.061121615935297, 1.12293941862061], [1.3268655702350665, 0.750227362409041], [1.4988799069675878, 0.28819851674507346], [1.5793710401902854, -0.1716239148614689], [1.5988467044064345, -0.6299754037630612], [1.5878146341193087, -1.0875914213121785]], "top_lip": [[-0.9351196111220955, 0.6216058354725476], [-0.4782390649254533, 0.5800660306821475], [-0.08237398773536005, 0.5399971685966973], [0.13265109649251142, 0.595864338135921], [0.3447342953104827, 0.5297005696620467], [0.5880606999842035, 0.4933090643389717], [0.803085784212075, 0.5491762338781955], [0.6825257889039271, 0.6131335882946445], [0.349147123425333, 0.7127469766816935], [0.13632845325488666, 0.7484030106522934], [-0.10773342277130922, 0.7542867814720937], [-0.8123532017565226, 0.6491716845659218]], "nose_tip": [[-0.15147964161913455, 0.20588303176562806], [0.03303770810546246, 0.26248567265732675], [0.21829052918253453, 0.34959604805229993], [0.3991305221447562, 0.2536600164276262], [0.5196905174529042, 0.18970266201117703]], "left_eyebrow": [[-1.625794087659163, -1.4374752123481414], [-1.2938863648855188, -1.5981040697417392], [-0.927793550846225, -1.60692972597144], [-0.5594943227495061, -1.5242321786913169], [-0.21949641509863643, -1.3492759565488956]], "right_eye": [[0.5237212832670769, -0.9093112514591793], [0.7321271253226729, -1.1280136924494262], [0.9754535299963937, -1.164405197772501], [1.1912140855767401, -1.0780302937300028], [1.042352769822743, -0.9218142644512551], [0.7685186306457478, -0.8846872877757053]], "right_eyebrow": [[0.5126892129799512, -1.3669272690082968], [0.7843169380995213, -1.49557744919367], [1.0552091918666167, -1.654735363882318], [1.3290433310436118, -1.6918623405578677], [1.515031623473159, -1.5742442306596203]], "transform": {"center": [122.125, 164.375], "angle": 0.024103032669836145, "scale": 32.76905192233808}}], "url": "http://i.imgur.com/Z6TLieh.jpg", "embedding": [[-0.14828094840049744, 0.06601322442293167, 0.09660305082798004, -0.11211568117141724, -0.07580295205116272, -0.005075429566204548, -0.01978028565645218, -0.12387266755104065, 0.1629769206047058, -0.08182785660028458, 0.1376246064901352, -0.10959750413894653, -0.39590856432914734, 0.09763310849666595, -0.07782592624425888, 0.13769716024398804, -0.20720979571342468, -0.25750645995140076, -0.11253654211759567, -0.027053840458393097, -0.005309998989105225, 0.11878751218318939, -0.04326042905449867, 0.09624260663986206, -0.08525785058736801, -0.34946057200431824, -0.1012767106294632, -0.022452060133218765, 0.009547286666929722, -0.09280454367399216, 0.06388996541500092, 0.054124340415000916, -0.150180384516716, -0.0010997317731380463, 0.02918238192796707, 0.15554116666316986, -0.03509681299328804, -0.24986249208450317, 0.15997064113616943, 0.03502193093299866, -0.28953057527542114, -0.14662382006645203, 0.10596326738595963, 0.3211566209793091, 0.1826849728822708, -0.050713345408439636, -0.04814297705888748, -0.0802825316786766, 0.08931650966405869, -0.33276256918907166, 0.029941927641630173, 0.20957523584365845, 0.03968146815896034, 0.14604808390140533, 0.12102644145488739, -0.1912834495306015, 0.0611376091837883, 0.10648265480995178, -0.19706608355045319, 0.028500761836767197, 0.06818552315235138, -0.1220565140247345, 0.09562859684228897, -0.14847403764724731, 0.1838555932044983, 0.05879156291484833, -0.12340665608644485, -0.21143905818462372, 0.24994871020317078, -0.16736526787281036, -0.153510183095932, 0.09139476716518402, -0.11090578883886337, -0.16476738452911377, -0.29688355326652527, 0.013247909024357796, 0.37460315227508545, 0.12913580238819122, -0.07069650292396545, 0.15040120482444763, -0.03445710241794586, -0.11025367677211761, -0.0621057003736496, 0.199875146150589, 0.009862672537565231, 0.07479875534772873, -0.11626739799976349, 0.057332973927259445, 0.22065062820911407, -0.0036045247688889503, -0.03991447389125824, 0.2471020221710205, -0.07800240814685822, -0.03887832909822464, 0.12237954139709473, 0.16395464539527893, -0.14429952204227448, 0.07857689261436462, -0.15656158328056335, 0.00903983786702156, 0.11920484900474548, -0.029867682605981827, 0.03246336057782173, 0.13733261823654175, -0.06889346241950989, 0.1766374409198761, 0.011919759213924408, -0.004027841612696648, 0.015658531337976456, -0.07380598038434982, -0.0820431262254715, -0.020451243966817856, 0.21987177431583405, -0.3155346214771271, 0.1882849931716919, 0.11214617639780045, 0.06839137524366379, 0.10850806534290314, 0.0393541119992733, 0.08060096949338913, 0.04394157603383064, -0.05240675061941147, -0.21079586446285248, -0.10483581572771072, 0.01346999779343605, -0.0017359091434627771, -0.03814465180039406, 0.12760062515735626]]},
"000010": {"embedding": [[-0.07911072671413422, 0.13816410303115845, -0.0333247110247612, -0.1589442789554596, -0.16233257949352264, -0.04183566942811012, -0.07710370421409607, -0.0794021338224411, 0.2622031271457672, 0.01841481402516365, 0.13281142711639404, -0.06310953199863434, -0.2633556127548218, -0.0061302389949560165, -0.06842458248138428, 0.21095353364944458, -0.25354403257369995, -0.1307756006717682, -0.051088202744722366, -0.06485781073570251, -0.02051284909248352, 0.008870168589055538, 0.006564833223819733, 0.15464206039905548, -0.0877838060259819, -0.27338707447052, -0.06376959383487701, -0.11708737909793854, -0.08178187906742096, -0.17548952996730804, 0.06459113955497742, 0.1687178611755371, -0.18327103555202484, -0.04342100769281387, 0.034532539546489716, 0.15123438835144043, -0.05529721453785896, -0.2000071108341217, 0.16299419105052948, 0.04749839007854462, -0.14772658050060272, -0.14587806165218353, 0.1117900088429451, 0.24250999093055725, 0.30112341046333313, -0.04209339991211891, 0.011062082834541798, -0.0496465340256691, 0.1958070993423462, -0.298350065946579, 0.0077898441813886166, 0.16607119143009186, 0.05359843373298645, 0.15059947967529297, 0.05595889315009117, -0.2106628715991974, 0.10075165331363678, 0.11351919174194336, -0.24018895626068115, -0.053766801953315735, 0.09171808511018753, -0.08055304735898972, -0.033619385212659836, -0.08882049471139908, 0.29512321949005127, 0.20514899492263794, -0.12073202431201935, -0.16527314484119415, 0.20091983675956726, -0.16155320405960083, -0.11515003442764282, 0.055063165724277496, -0.13998976349830627, -0.18030349910259247, -0.24989043176174164, -0.01992315798997879, 0.23175670206546783, 0.1441127359867096, -0.13079099357128143, 0.014247564598917961, -0.04877573996782303, -0.0809389129281044, -0.10129741579294205, 0.12783250212669373, -0.022132055833935738, 0.006511997431516647, -0.09031534940004349, 0.022139672189950943, 0.24120423197746277, -0.027897559106349945, 0.018616775050759315, 0.26452988386154175, -0.034428417682647705, -0.04191341996192932, 0.0006988197565078735, 0.04681665822863579, -0.0893673375248909, 0.07441891729831696, -0.1459590047597885, 0.01641312800347805, 0.017934750765562057, -0.05068080872297287, -0.05558670312166214, 0.06961008906364441, -0.16022546589374542, 0.152951180934906, -0.007342688739299774, -0.018954912200570107, -0.1769370585680008, -0.2036430537700653, -0.09071506559848785, 0.07956411689519882, 0.2629999816417694, -0.2259558141231537, 0.2691151201725006, 0.07947744429111481, 0.07271087169647217, 0.14757315814495087, -0.002506266115233302, 0.09569576382637024, 0.017116602510213852, -0.15552553534507751, -0.1250411719083786, -0.042153649032115936, 0.04483330622315407, -0.05595889315009117, -0.013445007614791393, 0.06538913398981094]], "url": "http://i.imgur.com/BN1bS1x.jpg", "landmarks": [{"nose_tip": [[-0.3781167533442019, 0.14589918808315683], [-0.194399651201113, 0.20844598443958212], [-0.010878713404333391, 0.301677685935292], [0.17381921047030227, 0.21079995659529427], [0.3583209699986286, 0.15060713239458115]], "top_lip": [[-0.8110402191814452, 0.6647962746026642], [-0.47311393395669593, 0.6055842721334979], [-0.16606871821754052, 0.5768610104573068], [0.017648383925548405, 0.639407806813732], [0.23283504859315934, 0.5794111469593283], [0.5394879356396961, 0.6120576955617063], [0.8461408226862327, 0.6447042441640843], [0.723205037782785, 0.6746044919181315], [0.23165806251530327, 0.7635205777950358], [0.016667562194001676, 0.792832332510155], [-0.19793060943468122, 0.760774276946705], [-0.6578118578313316, 0.6964620014734956]], "chin": [[-2.027451221359506, -1.0614049870496476], [-1.9692200406218863, -0.5700541761284751], [-1.8496190496056975, -0.07831103651468402], [-1.7300180585895086, 0.41343210309910705], [-1.5486549286021318, 0.8441977611269476], [-1.2443560137113072, 1.245063171400741], [-0.8780987955029854, 1.554266194949299], [-0.45027560266978517, 1.8331766420511912], [0.009409481380555869, 1.9281738226636853], [0.4700753871624436, 1.8697464775797565], [0.8703523043973089, 1.6575022781067856], [1.240728973878127, 1.3223222937303671], [1.51944325663371, 0.9251840060364515], [1.7064951526640577, 0.4660874150250384], [1.8016884976228609, -0.02428257416458722], [1.8968818425816645, -0.5146525633542127], [1.9307053772618985, -1.005414881236457]], "transform": {"center": [125.29166666666667, 165.16666666666666], "scale": 32.58864779762698, "angle": -0.006392774335090093}, "bottom_lip": [[0.8461408226862327, 0.6447042441640843], [0.5682111973158872, 0.9191029113008617], [0.29106622933077897, 1.0707619578805005], [0.04558698821650216, 1.0691926431100256], [-0.16901118341218072, 1.0371345875465756], [-0.4750755774197894, 0.912433323526344], [-0.8110402191814452, 0.6647962746026642], [-0.6578118578313316, 0.6964620014734956], [-0.16744186864170596, 0.7916553464322988], [0.04735246733328627, 0.7930284968564643], [0.2621468033082785, 0.7944016472806297], [0.723205037782785, 0.6746044919181315]], "right_eye": [[0.5496884816477822, -0.9835573716810931], [0.7656598037006302, -1.1662936520926352], [1.0111390448149074, -1.1647243373221605], [1.225148723404662, -1.0406115663408568], [1.0404507995300265, -0.949733837000859], [0.7949715584157495, -0.9513031517713337]], "left_eyebrow": [[-1.7178558691183292, -1.4890320155365384], [-1.4100259959939363, -1.640494897769868], [-1.041807134322521, -1.6381409256141557], [-0.7048616708293185, -1.543928402386899], [-0.3681123716824253, -1.419030974020358]], "right_eyebrow": [[0.3374442821748113, -1.3838342889159583], [0.7062516368851546, -1.4735350321781], [1.0134930169706193, -1.5329431989935758], [1.3510269735027498, -1.530785391184173], [1.687580108303334, -1.3752030576783472]], "nose_bridge": [[-0.0022474821667221624, -1.0484581401932307], [-0.0044052899761249705, -0.7109241836611], [-0.006563097785527778, -0.37339022712896924], [-0.008720905594930585, -0.035856270596838644]], "left_eye": [[-1.2908173336703663, -1.0873819478775077], [-1.0752383403101367, -1.2087484180104806], [-0.7990741940565751, -1.2069829388936966], [-0.6161417492987236, -1.0216965219801328], [-0.8313284139663345, -0.9616998621257291], [-1.107492560219896, -0.9634653412425132]]}]},
"000013": {"embedding": [[-0.015015589073300362, 0.09079690277576447, 0.02322271466255188, -0.11722830682992935, -0.13075974583625793, 0.020044727250933647, 0.01487589068710804, -0.012897282838821411, 0.15700940787792206, -0.07059793174266815, 0.20109963417053223, 0.02908036857843399, -0.2607272267341614, -0.08351251482963562, -0.030536212027072906, 0.03808794915676117, -0.15053367614746094, -0.12096621096134186, -0.10280611366033554, -0.169711634516716, -0.06194208562374115, 0.03917642682790756, -0.016696834936738014, 0.006592068821191788, -0.20820282399654388, -0.15664002299308777, -0.03137172758579254, -0.1631300300359726, 0.03975557163357735, -0.20310892164707184, 0.023996621370315552, 0.14490759372711182, -0.11170466244220734, -0.014412090182304382, -0.038238294422626495, 0.010302167385816574, -0.06760350614786148, -0.0750238373875618, 0.18316319584846497, 0.030795272439718246, -0.07538256049156189, -0.04617326706647873, -0.03046243265271187, 0.3085274398326874, 0.18538732826709747, -0.06657512485980988, 0.08590241521596909, -0.07665517926216125, 0.16569426655769348, -0.2519795298576355, 0.02956504374742508, 0.15816670656204224, 0.07006263732910156, 0.06979350745677948, 0.06228281930088997, -0.17717039585113525, 0.004498736932873726, 0.1332901269197464, -0.20004424452781677, 0.1319199502468109, 0.004764221608638763, -0.11436571925878525, -0.08660342544317245, -0.1089191883802414, 0.1654125452041626, 0.06708680093288422, -0.0709734708070755, -0.19192937016487122, 0.2522912919521332, -0.17899848520755768, -0.12577280402183533, 0.15385058522224426, -0.10735003650188446, -0.1637498289346695, -0.23865088820457458, 0.0681178867816925, 0.27140095829963684, 0.2065403312444687, -0.08221754431724548, 0.05225352197885513, -0.0984848365187645, -0.08341525495052338, -0.0408182293176651, 0.05499757081270218, -0.1268661916255951, -0.0016085468232631683, -0.05768803879618645, 0.07961564511060715, 0.24000155925750732, -0.051840197294950485, -0.06360475718975067, 0.15821270644664764, 0.028650982305407524, -0.0361083559691906, 0.01605837047100067, -0.04265674203634262, -0.08128304034471512, 0.036303043365478516, -0.08655069768428802, 0.04912537336349487, 0.060332298278808594, -0.22460013628005981, -0.023578617721796036, 0.0896819606423378, -0.1511174738407135, 0.18085019290447235, -0.025181202217936516, -0.07537595182657242, -0.11146104335784912, -0.1023755818605423, -0.08277805149555206, 0.0638277530670166, 0.26543524861335754, -0.29614704847335815, 0.22830381989479065, 0.19227172434329987, 0.16658782958984375, 0.14010584354400635, 0.05132646486163139, 0.01864086277782917, 0.005345663987100124, -0.07407832145690918, -0.13140904903411865, -0.09023258090019226, 0.043132174760103226, -0.05960492789745331, 0.00861272681504488, 0.05138770490884781]], "landmarks": [{"left_eyebrow": [[-1.6869317922418194, -1.159762937324792], [-1.3660559400310501, -1.3354965970541555], [-0.9865856085819193, -1.3945390781640172], [-0.5777682595278851, -1.3660382863163916], [-0.1980490381501431, -1.2790923491875705]], "left_eye": [[-1.1611743746396723, -1.0438682064768452], [-0.9277422394149463, -1.1318594813058327], [-0.6649630865853172, -1.1323074831773325], [-0.4603304111225502, -0.9866675108387051], [-0.6938621023187206, -0.9570716033051909], [-0.9274435715006131, -0.9566733794194133]], "right_eyebrow": [[0.32745948952339293, -1.3091860365783068], [0.677632581353343, -1.4265741069979194], [1.057152690788196, -1.4564189044600448], [1.407574672546757, -1.4278185566409745], [1.6123069039809685, -1.2237832170068739]], "nose_bridge": [[0.06512833856526366, -1.0459588818771777], [0.09492335804166666, -0.6956364560900611], [0.12471837751806966, -0.3453140303029446], [0.12531571334673608, 0.005058173469894281]], "transform": {"scale": 34.24924246706635, "angle": 0.0017048591283966295, "center": [123.70833333333333, 164.81944444444446]}, "bottom_lip": [[0.8562035862688722, 0.558569713133834], [0.5355268460009919, 0.851094107454144], [0.2729965830999739, 0.9975305275643267], [0.03946489190380347, 1.0271264350978409], [-0.1941663552638113, 0.9983269753358819], [-0.5447376709795388, 0.882133576573602], [-0.9249048942287807, 0.5324084866151517], [-0.8080146036663901, 0.5906047419677362], [-0.1944650231781445, 0.8231408734494625], [0.039166223989470256, 0.8519403332114215], [0.27264813719991843, 0.7931467420301708], [0.7394626296636481, 0.5879665087244594]], "top_lip": [[-0.9249048942287807, 0.5324084866151517], [-0.5160377671890244, 0.5901069621105142], [-0.16566556341618555, 0.5895096262818477], [0.06801546173715141, 0.6475067696915432], [0.27229969129986303, 0.5887629564960147], [0.5642765277772286, 0.5882651766387926], [0.8562035862688722, 0.558569713133834], [0.7394626296636481, 0.5879665087244594], [0.27244902525702963, 0.6763560074392244], [0.06811501770859582, 0.7059021369870163], [-0.16551622945901895, 0.6771026772250573], [-0.8080146036663901, 0.5906047419677362]], "nose_tip": [[-0.341598335088438, 0.1518430394801324], [-0.1370652155971154, 0.23908764452328668], [0.09661580955622154, 0.29708478793298215], [0.30090003911893315, 0.23834097473745364], [0.475936807048186, 0.1504492558799107]], "right_eye": [[0.5031931492527566, -0.9883101843675378], [0.736475950520316, -1.1638945101397347], [0.9700076417164862, -1.193490417673249], [1.1745905391935312, -1.0770481289823581], [0.9995039932785561, -1.0183540937725517], [0.7367746184346492, -0.9887084082533154]], "chin": [[-2.2126892098439663, -1.2756576681727385], [-2.153298282834049, -0.6918035511894515], [-2.064759450162118, -0.13719689583962338], [-1.9762703954759082, 0.3882120758624683], [-1.8002380678322114, 0.8842740299596568], [-1.4491191942735395, 1.3216419488470388], [-1.039704509390839, 1.7005149444675034], [-0.5428958855078174, 1.962447871539855], [-0.01718824589139257, 2.049144918740065], [0.508220725810699, 1.9606558640538558], [0.9456384226838034, 1.6387346741429205], [1.2953635126422536, 1.2585674508936786], [1.5865936793337863, 0.8201044163204082], [1.7025879661531773, 0.3527423660137342], [1.760137107691373, -0.14371781196923192], [1.846834154891583, -0.6694254515856568], [1.9042837404583344, -1.224280996864096]]}], "url": "http://i.imgur.com/O93NgpE.jpg"},
"000014": {"landmarks": [{"nose_bridge": [[0.16531322063507284, -0.9939442591748996], [0.17240731525309064, -0.6106791965885789], [0.21144016508663518, -0.22800530855375978], [0.218534259704653, 0.1552597540325608]], "right_eye": [[0.5805170384369202, -1.0016295283444188], [0.8011324521880998, -1.1654615262825627], [1.0560513193608119, -1.2021296779101014], [1.249457374308477, -1.10986045957253], [1.092128296436849, -0.9791495659529158], [0.8372094292641369, -0.9424814143253772]], "left_eyebrow": [[-1.6664281431284782, -1.5670836588343224], [-1.3494052891792168, -1.700750425211444], [-0.9661402265928962, -1.707844519829462], [-0.5816928149035727, -1.6510611040164265], [-0.19547187955974477, -1.4984614225568107]], "transform": {"center": [122.25, 164.01388888888889], "scale": 31.304561935823784, "angle": 0.018507516901952095}, "top_lip": [[-0.6976396741700965, 0.715362654690058], [-0.37884329656633087, 0.6775121539595165], [-0.09198567417809188, 0.6402528277804764], [0.1008292062180714, 0.7005832909025208], [0.2599318077442035, 0.6656886629294867], [0.45156433903736376, 0.6621416156204778], [0.6763179746490537, 0.7218809041910209], [0.5491541283384485, 0.7561843576125535], [0.2628876805017109, 0.8253824390071204], [0.0718463237600521, 0.8608682415316559], [-0.08843862686908298, 0.8318853590736368], [-0.5692934787564882, 0.7449367116995789]], "nose_tip": [[-0.25877354487374327, 0.2599436379516632], [-0.06536748992607852, 0.35221285628923443], [0.15997732023711295, 0.4438909000753042], [0.3498363278757688, 0.34452758711971515], [0.5077565802988979, 0.24575544871562757]], "chin": [[-2.204066410828919, -1.2695848945190567], [-2.1614865136863655, -0.6952784751910774], [-2.055029106112759, -0.12215440496610096], [-1.8858765372111013, 0.38590980572481903], [-1.6214988772143655, 0.860261737545708], [-1.2630784752255537, 1.2370238800655124], [-0.8727193180212153, 1.613194848033815], [-0.4202561740403279, 1.8923672012525345], [0.028068748080049145, 1.9479682679625672], [0.40896911246036377, 1.8131191524824426], [0.6579762341180613, 1.457063448699637], [0.8744534260087304, 1.0696601642528059], [1.0909306178993994, 0.6822568798059748], [1.2748778800230407, 0.26350601469511864], [1.4262952123796535, -0.18659243107976278], [1.545182614969238, -0.6680384575186694], [1.5682537519122424, -1.1477109603030717]], "right_eyebrow": [[0.5391194903973697, -1.5120584372413448], [0.8236124145796028, -1.6770727842824917], [1.1098788624163403, -1.7462708656770585], [1.3961453102530779, -1.8154689470716254], [1.5907337143037454, -1.6593222183030008]], "bottom_lip": [[0.6763179746490537, 0.7218809041910209], [0.45806725910388013, 1.0134679229912718], [0.2687994260167258, 1.1447699911623874], [0.07775806927506695, 1.1802557936869231], [-0.11387446201809334, 1.183802840995932], [-0.4048703062668427, 0.9974908806662851], [-0.6976396741700965, 0.715362654690058], [-0.5692934787564882, 0.7449367116995789], [-0.08843862686908298, 0.8318853590736368], [0.10378507897557882, 0.8602770669801544], [0.2628876805017109, 0.8253824390071204], [0.5491541283384485, 0.7561843576125535]], "left_eye": [[-1.2405831833996042, -0.9998713341243609], [-0.9874378398813963, -1.1323557513984797], [-0.7313366236056812, -1.105146392594965], [-0.5048094643394867, -0.9495908383778415], [-0.7591371569606974, -0.8809839315347763], [-1.0146471986849113, -0.8762545351227644]]}], "embedding": [[-0.19078142940998077, 0.15320372581481934, 0.09610514342784882, -0.07675475627183914, -0.15212464332580566, -0.06438332796096802, -0.05636508762836456, -0.12805578112602234, 0.17420761287212372, -0.08977990597486496, 0.12108366936445236, -0.14288312196731567, -0.26823487877845764, 0.018783241510391235, -0.07658238708972931, 0.19422613084316254, -0.10990110784769058, -0.16183383762836456, 0.0001901756040751934, -0.038291625678539276, 0.018295910209417343, 0.020120451226830482, -0.038111548870801926, 0.14163920283317566, -0.07757440209388733, -0.31876224279403687, -0.0844162106513977, -0.026875201612710953, -0.08582715690135956, -0.10710103809833527, -0.04406451806426048, 0.13529150187969208, -0.20349007844924927, -0.07481124997138977, 0.023188769817352295, 0.1998881697654724, 0.05805741623044014, 0.010434351861476898, 0.10637291520833969, -0.017586590722203255, -0.25604480504989624, -0.03430800884962082, 0.16654953360557556, 0.3179265558719635, 0.203018918633461, 0.056219976395368576, -0.06633883714675903, -0.04288332536816597, 0.09195776283740997, -0.16716960072517395, -0.0130617031827569, 0.14273357391357422, 0.11289376020431519, 0.07249082624912262, 0.006346874870359898, -0.19010883569717407, 0.020337089896202087, 0.07896337658166885, -0.15130183100700378, -0.01808561384677887, 0.06259961426258087, -0.10053049027919769, 2.3107975721359253e-05, -0.0687364935874939, 0.30798056721687317, 0.08611877262592316, -0.11449038237333298, -0.11383265256881714, 0.1754230260848999, -0.19172260165214539, -0.0944138765335083, 0.02078838460147381, -0.14575549960136414, -0.11428271234035492, -0.3333059549331665, -0.014449606649577618, 0.35361745953559875, 0.1074255034327507, -0.19418774545192719, 0.10578873008489609, -0.057375337928533554, -0.002765803597867489, -0.01406557485461235, 0.1565524786710739, -0.049752794206142426, 0.12758910655975342, -0.044607438147068024, -0.005315661430358887, 0.21914878487586975, 0.0032231006771326065, 0.009839462116360664, 0.20991410315036774, 0.021306533366441727, 0.02908417582511902, 0.04631969705224037, 0.00971224531531334, -0.0644729733467102, -0.05678102374076843, -0.22817906737327576, -0.06894827634096146, -0.048293955624103546, -0.08468042314052582, -0.017117172479629517, 0.12903070449829102, -0.30930212140083313, 0.13737042248249054, 0.06825105845928192, 0.003995874896645546, -0.07926973700523376, 0.11375398933887482, -0.06182840093970299, -0.05455769598484039, 0.1838061511516571, -0.26859062910079956, 0.1841675490140915, 0.19109533727169037, 0.011685467325150967, 0.13962936401367188, 0.07409952580928802, 0.09629752486944199, 0.03647056594491005, -0.017349861562252045, -0.03527785837650299, -0.08744103461503983, 0.11364249885082245, -0.09112948179244995, 0.10300110280513763, 0.10101291537284851]], "url": "http://i.imgur.com/pVhTFtq.jpg"},
"000015": {"landmarks": [{"top_lip": [[-0.6644639653875787, 0.6866063383630392], [-0.40005018237495715, 0.5398894316028899], [-0.1356821565572911, 0.4812850318497504], [0.06988318832909435, 0.5401334699759867], [0.3048803784777572, 0.4815138178245286], [0.5398013066348273, 0.5697483440180866], [0.7159500586572539, 0.716694036753014], [0.598466715981241, 0.7166330271597399], [0.3047888640878459, 0.6577388318385479], [0.06982217873582017, 0.6576168126519994], [-0.13575841854888382, 0.6281392101947665], [-0.5763514583805691, 0.6866520955579948]], "right_eye": [[0.5406554409406658, -1.0750184534460936], [0.746297047818644, -1.1630241936648733], [0.9518776451033479, -1.1335465912076403], [1.128041649524093, -1.0159717341417163], [0.9518166355100738, -1.0160632485316274], [0.7462360382253698, -1.0455408509888606]], "nose_tip": [[-0.34103396786721685, 0.011244894357469164], [-0.13546862298083145, 0.0700933324837054], [0.09946755757455718, 0.12895702300826023], [0.2757078239868951, 0.09967770172916825], [0.4519633427975514, 0.0410275447810731]], "left_eye": [[-1.1628225230648837, -1.1346447638865755], [-0.9571656637885869, -1.2520213397743585], [-0.7515698141055646, -1.2519145729861287], [-0.5754058096848194, -1.1343397159202047], [-0.7516308236988387, -1.134431230310116], [-0.9572266733818611, -1.1345379970983458]], "chin": [[-2.073409943193895, -0.9588925742204311], [-2.0443136506946256, -0.43020227978005465], [-1.9564756868573496, 0.09851851945695883], [-1.8686224706217551, 0.5978684830249692], [-1.7220123306498354, 1.0678781157206134], [-1.4285327599345816, 1.508593174738847], [-1.0175088369500407, 1.831885900674342], [-0.5183266497635343, 2.067111876797783], [0.03968872315088971, 2.1261433437038417], [0.5390386867189, 2.0382901274682474], [0.9503524052714935, 1.8035369756926813], [1.2736146264103514, 1.4512547240461466], [1.4794392620681518, 1.0107989557993282], [1.5384402241775739, 0.5115252542229107], [1.5680550982196737, 0.04160713591717781], [1.627040807930777, -0.4282957299902365], [1.6566556819728768, -0.8982138482959695]], "left_eyebrow": [[-1.5445518723720142, -1.3110680590787358], [-1.30946316783344, -1.5459127252442133], [-0.9863229658811306, -1.6632282915387222], [-0.6339034426497291, -1.6043035914208932], [-0.31088525988396787, -1.4866524723633763]], "right_eyebrow": [[0.3939995437737908, -1.456915579134728], [0.68773840526046, -1.515504726489549], [1.0108175976194953, -1.515336950108045], [1.304480197114572, -1.4270719191178498], [1.4805831919420427, -1.1920137193759128]], "bottom_lip": [[0.7159500586572539, 0.716694036753014], [0.51026269458432, 0.8928122839788034], [0.3046210877063419, 0.9808180241975833], [0.06963914995599763, 1.0100668406800382], [-0.16531228299770956, 0.9805739858244866], [-0.42960404682378284, 0.8923242072326101], [-0.6644639653875787, 0.6866063383630392], [-0.5763514583805691, 0.6866520955579948], [-0.1651902638111612, 0.7456073004724609], [0.06976116914254599, 0.7751001553280124], [0.30474310689289025, 0.7458513388455577], [0.598466715981241, 0.7166330271597399]], "nose_bridge": [[0.04142749655920384, -1.2221319225625247], [0.0706153034483845, -0.8696666421361677], [0.09980311033756517, -0.5172013617098106], [0.12899091722674588, -0.1647360812834534]], "transform": {"angle": -0.000519304153254618, "scale": 34.04737530900288, "center": [123.61111111111111, 167.61111111111111]}}], "url": "http://i.imgur.com/78khl5B.jpg", "embedding": [[-0.10258230566978455, 0.15717366337776184, 0.11837825179100037, 0.0059003643691539764, -0.12416578829288483, -0.028757311403751373, -0.000505080446600914, -0.04081471264362335, 0.10880092531442642, 0.006849881261587143, 0.22189809381961823, -0.02899339236319065, -0.30653178691864014, -0.14382120966911316, 0.03714456409215927, 0.14383883774280548, -0.17435602843761444, -0.08876410126686096, -0.10821787267923355, -0.1385476142168045, 0.07439427822828293, 0.06224603205919266, 0.026843484491109848, -0.015133127570152283, -0.2476813644170761, -0.3036960959434509, -0.06934276223182678, -0.049998387694358826, 0.08678610622882843, -0.13059622049331665, -0.09192703664302826, 0.056576721370220184, -0.20718713104724884, -0.1730954349040985, 0.09906986355781555, 0.07905785739421844, 0.0029310297686606646, -0.10893039405345917, 0.14376766979694366, 0.0220232754945755, -0.08653560280799866, 0.07849143445491791, 0.07572343945503235, 0.25982919335365295, 0.20223352313041687, 0.07509607076644897, 0.0034187748096883297, -0.06723232567310333, 0.14584600925445557, -0.29654139280319214, 0.07533444464206696, 0.1553412675857544, 0.1002737432718277, 0.03261232376098633, 0.1300806850194931, -0.16972015798091888, 0.0031981109641492367, 0.172773540019989, -0.2790283262729645, 0.054933831095695496, 0.034280989319086075, -0.09096232801675797, -0.11615252494812012, -0.10429065674543381, 0.10349301248788834, 0.10710444301366806, -0.12361001968383789, -0.11862088739871979, 0.15502198040485382, -0.12296032160520554, -0.02404380775988102, 0.05014756694436073, -0.10388681292533875, -0.1359846442937851, -0.36478278040885925, 0.09818979352712631, 0.40703085064888, 0.15307609736919403, -0.26011714339256287, -0.026929108425974846, 0.04244135692715645, 0.011674202978610992, 0.070799820125103, 0.1009531170129776, -0.1008605808019638, -0.07273536920547485, -0.06783298403024673, 0.07542220503091812, 0.10485686361789703, 0.024786584079265594, -0.03828660398721695, 0.24393753707408905, 0.06409783661365509, 0.0567513145506382, 0.055215880274772644, 0.034926898777484894, -0.13296498358249664, -0.08901380747556686, -0.10374116897583008, 0.019656063988804817, 0.09669991582632065, -0.10734487324953079, -0.031930528581142426, 0.17562611401081085, -0.12753643095493317, 0.09277384728193283, -0.027679115533828735, -0.07394474744796753, -0.04874253645539284, -0.10093522071838379, -0.06002964824438095, 0.01754133775830269, 0.09514699876308441, -0.31853610277175903, 0.17750239372253418, 0.2433702051639557, -0.09314316511154175, 0.1045404002070427, 0.021167200058698654, 0.01707564666867256, 0.05007932707667351, 0.022420521825551987, -0.1274241954088211, -0.15806053578853607, 0.06272908300161362, -0.1433103233575821, 0.024959344416856766, -0.03172530606389046]]},
"000016": {"landmarks": [{"top_lip": [[-0.7700127828062002, 0.6493476569348918], [-0.561425328974926, 0.5625828600306741], [-0.29446568918554417, 0.5654393953492721], [-0.05780301722133757, 0.6273029022523329], [0.15046704379675901, 0.5702002875469354], [0.44677147297178355, 0.6030363978775309], [0.7721032987192732, 0.6955142654189447], [0.6237923877251722, 0.6939273013530569], [0.17885965474286902, 0.6891664091553937], [-0.05875519566087022, 0.7162894488487934], [-0.32508004982389704, 0.6541085491325551], [-0.6516814468240969, 0.6802794103864223]], "nose_bridge": [[-0.09840120564150255, -1.1234006331044148], [-0.10220991939963316, -0.7674544467185721], [-0.10601863315776375, -0.41150826033272964], [-0.13948952911471454, -0.05587946676006466]], "chin": [[-1.6730360046843942, -0.9029249946122632], [-1.6187899252975946, -0.4276952938047847], [-1.5645438459107948, 0.04753440700269379], [-1.5102977665239954, 0.5227641078101722], [-1.3964099299263775, 0.9689664120451856], [-1.1929007611059443, 1.3567965303220912], [-0.8704254706770527, 1.7162340376528868], [-0.5176532124229856, 2.0166645733992192], [-0.044010475681394864, 2.1107294050065213], [0.46088140732490385, 2.056800718432899], [0.997339829409088, 1.8252163314795333], [1.4164190939507018, 1.4737136444781762], [1.7471465975222098, 1.0619344146396463], [1.9301979757259717, 0.5892438563375884], [1.9949180179476307, 0.08562154458399977], [2.0599554529824666, -0.4476629493684089], [2.095648098631661, -1.0109270183328154]], "bottom_lip": [[0.7721032987192732, 0.6955142654189447], [0.4148875410807205, 0.8103542804560949], [0.14729311566498351, 0.8668221095351374], [-0.09032173473875574, 0.8939451492285373], [-0.3569639817149601, 0.861426431711119], [-0.5639644714803465, 0.7998803176212358], [-0.7700127828062002, 0.6493476569348918], [-0.6516814468240969, 0.6802794103864223], [-0.32508004982389704, 0.6541085491325551], [-0.0880999850465129, 0.6863098738367958], [0.1491974725440488, 0.6888490163422162], [0.6237923877251722, 0.6939273013530569]], "transform": {"center": [126.72222222222223, 166.83333333333334], "scale": 33.71103145819345, "angle": -0.010699843273325842}, "left_eye": [[-1.1671919432385627, -1.0458402277823458], [-0.9579697037809336, -1.1919293890842042], [-0.720672246190372, -1.1893902465787838], [-0.48496175266569796, -1.0385401930792622], [-0.7225766030694373, -1.0114171533858625], [-0.9598740606599989, -1.0139562958912829]], "left_eyebrow": [[-1.521868558371695, -1.1682976703357573], [-1.400045901444639, -1.4636499210712492], [-1.1318166904025468, -1.5794421145479323], [-0.8055326862155243, -1.575950793602979], [-0.45053867826921445, -1.483155533248388]], "nose_tip": [[-0.4376983151688044, 0.0892575161022609], [-0.2606774004154158, 0.18014841957778685], [-0.0836564856620272, 0.2710393230533128], [0.12493096816924694, 0.18427452614909498], [0.33351842200052106, 0.09750972924487719]], "right_eye": [[0.4942076527085466, -1.0577284124432234], [0.7334094671781736, -1.2331623631307242], [0.9707069247687352, -1.2306232206253038], [1.1770726289077664, -1.1097527421377802], [0.9688025678896699, -1.0526501274323825], [0.7315051102991083, -1.055189269937803]], "right_eyebrow": [[0.29133326951446836, -1.504882895117769], [0.6488664199661986, -1.6493850923537396], [1.0347921813640388, -1.674921167981252], [1.3897861893103487, -1.5821259076266605], [1.623909718769135, -1.2829649431330379]]}], "embedding": [[-0.08782485127449036, 0.07313388586044312, 0.10722362995147705, 0.06715099513530731, -0.12049150466918945, -0.06705790758132935, -0.04909858852624893, -0.07186180353164673, 0.13561899960041046, -0.0777859315276146, 0.1807136833667755, 0.009798074141144753, -0.2702034115791321, -0.13984404504299164, 0.01254948228597641, 0.147077739238739, -0.012118928134441376, -0.2181759625673294, -0.08443492650985718, -0.12861663103103638, -0.04576931148767471, 0.014312852174043655, -0.03207075223326683, -0.014228135347366333, -0.17386238276958466, -0.3614879250526428, -0.0217145923525095, -0.03452374041080475, 0.06481938809156418, -0.1416805386543274, -0.03518572449684143, 0.13368719816207886, -0.14336499571800232, -0.03698687255382538, 0.08083150535821915, 0.16325846314430237, -0.00621146010234952, -0.016158275306224823, 0.19771318137645721, -0.043479546904563904, -0.16716767847537994, 0.06242315471172333, 0.02868662029504776, 0.2901252508163452, 0.13937155902385712, 0.025900939479470253, 0.11646589636802673, -0.0375606007874012, 0.12665769457817078, -0.23658519983291626, 0.05778277665376663, 0.1454935371875763, 0.03504357486963272, 0.021619074046611786, 0.10410833358764648, -0.20950356125831604, -0.06629414856433868, 0.1676729917526245, -0.21825118362903595, 0.1773800253868103, 0.09624689817428589, -0.10669241845607758, -0.16564813256263733, -0.07688945531845093, 0.1295531839132309, 0.03992085158824921, -0.0998639166355133, -0.1587163507938385, 0.22401505708694458, -0.21035532653331757, 0.033744703978300095, 0.12031029909849167, -0.06084798276424408, -0.1984386146068573, -0.20231440663337708, 0.10720781981945038, 0.3964362144470215, 0.1948123574256897, -0.16793133318424225, 0.05637538433074951, 0.031644295901060104, 0.03181832656264305, 0.053728677332401276, -0.04923667013645172, -0.05688606947660446, -0.015804871916770935, -0.1340140849351883, 0.039723895490169525, 0.24419279396533966, 0.11032144725322723, 0.001537613570690155, 0.19141864776611328, 0.04342581331729889, 0.015736710280179977, 0.01966196484863758, 0.012404270470142365, -0.061628904193639755, -0.05102302134037018, -0.1420004665851593, -0.029202140867710114, 0.07056824862957001, -0.18488597869873047, 0.03442801535129547, 0.011329397559165955, -0.12540991604328156, 0.18003597855567932, -0.02742040529847145, 0.07098498195409775, -0.02671886421740055, 0.10571913421154022, -0.13332800567150116, 0.02974172681570053, 0.19102703034877777, -0.3004200756549835, 0.26265472173690796, 0.20063313841819763, 0.0969846323132515, 0.132806658744812, 0.07733336836099625, 0.04608969762921333, 0.05176360905170441, -0.08775874227285385, -0.09972406178712845, -0.1731777787208557, -0.02656564861536026, -0.09405243396759033, 0.08162131905555725, 0.08709476888179779]], "url": "http://i.imgur.com/eSxCkUx.jpg"},
"000018": {"embedding": [[-0.07676579803228378, 0.1285332292318344, 0.08278213441371918, -0.08645616471767426, -0.12261722981929779, -0.02738957852125168, -0.023623883724212646, -0.10135780274868011, 0.20791095495224, -0.12336353957653046, 0.09756016731262207, -0.16508789360523224, -0.2669979929924011, 0.06677640229463577, -0.144120454788208, 0.20980030298233032, -0.22783342003822327, -0.2256648987531662, -0.10469811409711838, -0.1224578395485878, -0.03407061845064163, 0.09314566850662231, -0.041741907596588135, 0.13471904397010803, -0.15415823459625244, -0.3796447515487671, -0.036854878067970276, -0.12534093856811523, -0.006814959459006786, -0.10052825510501862, -0.007453525438904762, 0.21074259281158447, -0.11245417594909668, -0.0022057555615901947, 0.052898287773132324, 0.1713489592075348, -0.06886996328830719, -0.07752303779125214, 0.21513012051582336, 0.07900978624820709, -0.23916718363761902, -0.03751396760344505, 0.15672045946121216, 0.3650020658969879, 0.29059281945228577, -0.07667483389377594, 0.013896821066737175, -0.034980982542037964, 0.2131308615207672, -0.3062657415866852, -0.04170463606715202, 0.20314854383468628, 0.16262713074684143, 0.17099687457084656, 0.09733471274375916, -0.16427361965179443, -0.025731481611728668, 0.14432968199253082, -0.1984924077987671, 0.09374076873064041, 0.09776878356933594, -0.2444433569908142, 0.04938904196023941, -0.030633028596639633, 0.22406913340091705, 0.10593395680189133, -0.12190967053174973, -0.11844783276319504, 0.26177525520324707, -0.18326546251773834, -0.0116601986810565, 0.08368795365095139, -0.10173341631889343, -0.09218253195285797, -0.21910150349140167, -0.013195931911468506, 0.38409507274627686, 0.0943848267197609, -0.02422509156167507, 0.03619300574064255, -0.1026664450764656, -0.04629794508218765, -0.07355470210313797, 0.12894293665885925, -0.07575076818466187, -0.06837321817874908, -0.08518563210964203, 0.0853666216135025, 0.20267906785011292, -0.04880574345588684, 0.04231739416718483, 0.1785225123167038, -0.06355703622102737, -0.01368547324091196, 0.0097695617005229, 0.07615214586257935, -0.2751445472240448, 0.033394813537597656, -0.10304693877696991, -0.0016402825713157654, -0.08002530038356781, -0.10419649630784988, 0.06526657193899155, 0.05707168951630592, -0.10526297986507416, 0.11960339546203613, -0.049235910177230835, 0.0030553899705410004, -0.05219580605626106, 0.011962726712226868, -0.03626943379640579, -0.035727452486753464, 0.20974676311016083, -0.2273242473602295, 0.15889015793800354, 0.08724688738584518, -0.028669241815805435, 0.15184015035629272, 0.025697648525238037, 0.08524089306592941, -0.011613855138421059, -0.09870626032352448, -0.08777875453233719, -0.04864778742194176, 0.02951090782880783, 0.015572074800729752, -0.02003082074224949, 0.02957015112042427]], "landmarks": [{"top_lip": [[-0.8620675452973154, 0.6200758923864983], [-0.5235527792828554, 0.4974692009030121], [-0.21591571812468355, 0.46710252488331794], [-0.0006366021618255246, 0.4981374693816351], [0.24548090874681341, 0.46769217354092646], [0.5530393500839709, 0.4988450477707654], [0.8605191716001137, 0.5915174722501371], [0.7374407611905407, 0.6221200077328746], [0.24528435919427724, 0.6214910491647588], [-0.0008331517143617069, 0.6519363450054674], [-0.24687204280198619, 0.620862090596643], [-0.7083079795839904, 0.651032217063801]], "right_eye": [[0.5856860009130846, -0.9775848483075177], [0.8012009763389861, -1.1311085545577995], [1.0164800923018442, -1.1000736100594821], [1.200881503408414, -0.976798650097373], [1.016283542749308, -0.9462747344356498], [0.8009651168759426, -0.9465499038092005]], "transform": {"scale": 32.509964047129905, "center": [125.0, 166.80555555555554], "angle": -0.0012779641251463194}, "nose_tip": [[-0.3692035649119218, 0.06702889870881774], [-0.18472353398433747, 0.12878430842139407], [-0.031003278181519624, 0.19050040822346317], [0.15363399238809364, 0.12921671743697366], [0.3075114878329404, 0.06789371673997695]], "left_eyebrow": [[-1.5976290743772186, -1.4725322539497951], [-1.3820354791303027, -1.6875755104496095], [-1.0743197981511161, -1.7794617367188366], [-0.7360015816891924, -1.7482695525784906], [-0.4593601551188304, -1.5941168877600929]], "chin": [[-1.936890728691316, -0.7654898350957459], [-1.8759608270993917, -0.3040145884032344], [-1.784310460293208, 0.1882597433245507], [-1.692620783576517, 0.6497742999275694], [-1.5085731616645124, 1.0498872360125766], [-1.232206904467701, 1.4193583267043397], [-0.8634433921650687, 1.6966680217533245], [-0.4022826247566152, 1.8818163211595318], [0.05903538229386729, 1.9439255200666736], [0.48975085386161227, 1.8829563085642418], [0.9206235650713862, 1.6989479965627443], [1.2286144154241232, 1.391743344420152], [1.4751250254378345, 1.0537002973317786], [1.629434929898261, 0.6540197702623509], [1.7222645940196617, 0.22350084824714214], [1.8150942581410625, -0.20701807376806666], [1.877203457048204, -0.6683360808185491]], "bottom_lip": [[0.8605191716001137, 0.5915174722501371], [0.5832880963721432, 0.8987614343032366], [0.27553310548244964, 1.02140743569723], [0.029415594573810683, 1.0518527315379385], [-0.21666260642432103, 1.0515382522538805], [-0.5548628931547231, 0.9280667427392353], [-0.8620675452973154, 0.6200758923864983], [-0.7083079795839904, 0.651032217063801], [-0.21634812714026314, 0.805460051255749], [0.029730073857868574, 0.805774530539807], [0.2758082748560003, 0.8060890098238648], [0.7374407611905407, 0.6221200077328746]], "nose_bridge": [[0.0014468230950580086, -1.1321306122309875], [0.0010144140794784075, -0.7937730858585564], [-0.030177770060867658, -0.45545486939663254], [-0.030570869165940023, -0.1478571181489679]], "right_eyebrow": [[0.46343309862416354, -1.592937590444876], [0.7711880895138571, -1.7155835918388695], [1.0787858407615216, -1.715190492733797], [1.3555058871528982, -1.6225573781649323], [1.5705491436527126, -1.4069637829180166]], "left_eye": [[-1.2291407314481368, -0.9799041330274447], [-1.0136257560222355, -1.1334278392777264], [-0.7983466400593773, -1.102392894779409], [-0.583185453828041, -0.9790786249067928], [-0.7985431896119135, -0.9485940191555768], [-1.0446213906100452, -0.9489084984396347]]}], "url": "http://i.imgur.com/21S3Dz3.jpg"},
"000020": {"landmarks": [{"left_eye": [[-1.0787081805135257, -0.9402856896722117], [-0.8902958979845143, -1.1085343235157423], [-0.6717105391094149, -1.140375637805265], [-0.45034478366192465, -1.0352535532263014], [-0.6415374627633268, -1.0039683182512569], [-0.8601228216384262, -0.9721270039617343]], "right_eye": [[0.4804502493293017, -1.0815529296922568], [0.69625521163201, -1.2503576428502656], [0.9159527291360658, -1.2274135975923939], [1.1104818841243371, -1.094342753925255], [0.9187331257084568, -1.0904501987239077], [0.6995916875188791, -1.0860015642080822]], "right_eyebrow": [[0.11489206392510906, -1.539999454756893], [0.4967213428134352, -1.6299626044806788], [0.880218859645196, -1.6377477148833735], [1.211711413501953, -1.507457267788626], [1.4632502452955314, -1.2659278636556548]], "nose_bridge": [[-0.07185198066046763, -1.2895727815922708], [-0.09479602591833935, -1.069875264088215], [-0.11829615049068927, -0.8775704263578565], [-0.1406841164340828, -0.6304802290801036]], "chin": [[-1.754071826509826, -0.4607081506574049], [-1.7457306367926535, -0.04981795405194702], [-1.7362772884465243, 0.4158576021009052], [-1.726823940100395, 0.8815331582537574], [-1.6357486317476526, 1.318147796689478], [-1.4093781624698587, 1.669803999231716], [-1.0482686115814919, 1.9091090861067743], [-0.5798126588562486, 2.036619136629131], [-0.058239584527045495, 2.0808389892014403], [0.4890579316324202, 2.0423247231381794], [0.9525091705273597, 1.9233006556972614], [1.4142921714788645, 1.722098548935252], [1.7363313769894928, 1.3867134398771475], [1.9745243052355947, 0.9708185294413859], [2.0740855966697764, 0.47552597625692383], [2.091468848782866, -0.01809833898410389], [2.108852100895956, -0.5117226542251315]], "bottom_lip": [[0.7077880838717857, 0.667686020623016], [0.4081368443045512, 0.7559809324033676], [0.13365396725310105, 0.7341490457744523], [-0.05809479116277927, 0.7380416009757995], [-0.24984354957865967, 0.7419341561771469], [-0.44159230799453997, 0.7458267113784941], [-0.662401984127552, 0.668097306573228], [-0.5533873443472415, 0.638480309541618], [-0.22523126637735333, 0.6044146779941828], [-0.060875187735170186, 0.6010782021073137], [0.13087357068071015, 0.5971856469059664], [0.5976612854625187, 0.6425176581072316]], "transform": {"scale": 36.49858360180942, "center": [125.66666666666667, 171.11111111111111], "angle": 0.020297501043008346}, "left_eyebrow": [[-1.4090885757413263, -1.015790777219565], [-1.2782420493321003, -1.3198906513026252], [-0.9528663679346031, -1.4909196817185466], [-0.5978736895054961, -1.5529340723541571], [-0.24065669381847626, -1.5053777438949794]], "top_lip": [[-0.662401984127552, 0.668097306573228], [-0.4477091804538, 0.44450723386782504], [-0.20284330043395982, 0.3573244807164298], [-0.037931142477298466, 0.3813806846032579], [0.1532615366241037, 0.35009544962821343], [0.4294126516189884, 0.45410537557822034], [0.7077880838717857, 0.667686020623016], [0.5976612854625187, 0.6425176581072316], [0.1565980125109728, 0.5144515282703966], [-0.03515074590490755, 0.5183440834717439], [-0.1995068245470907, 0.521680559358613], [-0.5533873443472415, 0.638480309541618]], "nose_tip": [[-0.4051575658249256, -0.1592438797824696], [-0.2676380876419615, -0.1346315965811633], [-0.07533324991160295, -0.11113147200881338], [0.14325210896349638, -0.14297278629833604], [0.3344447880648985, -0.17425802127338053]]}], "url": "http://i.imgur.com/9C9pYHh.jpg", "embedding": [[-0.13022197782993317, 0.1275848150253296, 0.006177887320518494, 0.03659515827894211, -0.10536201298236847, -0.007645617239177227, 0.038294125348329544, -0.11574135720729828, 0.09774501621723175, -0.004206994082778692, 0.20297180116176605, -0.013056041672825813, -0.26009058952331543, 0.02944641187787056, 0.019020773470401764, 0.07763385772705078, -0.1238659918308258, -0.13719291985034943, -0.14096686244010925, -0.06365484744310379, 0.041185975074768066, 0.04484891891479492, -0.01699031889438629, 0.07585810124874115, -0.10514861345291138, -0.36931467056274414, -0.09871460497379303, -0.11984720826148987, 0.045827917754650116, -0.03297963738441467, 0.031248774379491806, 0.021629521623253822, -0.1581013947725296, -0.014426764100790024, 0.04243513196706772, 0.015545522794127464, -0.05653068795800209, -0.07226105034351349, 0.18509171903133392, -0.0455741286277771, -0.1321147382259369, 0.03929886966943741, 0.09479141980409622, 0.2519412338733673, 0.1461767703294754, 0.0577397458255291, 0.07550603151321411, -0.11734439432621002, 0.13626150786876678, -0.1926385462284088, 0.15419864654541016, 0.16086088120937347, 0.16503606736660004, 0.11205877363681793, 0.1425691545009613, -0.1596025824546814, 0.02697591483592987, 0.10056544095277786, -0.20330975949764252, 0.08920484036207199, 0.06421011686325073, -0.013920661993324757, -0.06370431184768677, -0.10175757110118866, 0.1829422563314438, 0.109507717192173, -0.11842234432697296, -0.14592748880386353, 0.1054098829627037, -0.16616083681583405, -0.11004441976547241, 0.0512525849044323, -0.09819197654724121, -0.17619001865386963, -0.2772921919822693, 0.08627976477146149, 0.375198096036911, 0.1334448605775833, -0.2543012201786041, 0.02649853564798832, -0.06398749351501465, -0.03552531450986862, 0.0753973200917244, 0.044788800179958344, -0.07608197629451752, -0.13190937042236328, -0.18394485116004944, 0.002768121659755707, 0.18995246291160583, -0.006683974992483854, -0.03453201800584793, 0.20247481763362885, 0.006763864308595657, -0.05995609238743782, 0.03162924945354462, 0.17187285423278809, -0.2095438539981842, -0.019626600667834282, -0.049185775220394135, -0.062213458120822906, 0.10555186867713928, -0.018826059997081757, -0.07780271768569946, 0.06562070548534393, -0.18185171484947205, 0.22248601913452148, -0.04792284965515137, 0.03265310823917389, 0.006291828118264675, -0.07416442036628723, -0.09620209038257599, 0.028157752007246017, 0.11219087243080139, -0.2831008732318878, 0.22014844417572021, 0.04071152210235596, -0.0986531674861908, 0.15938939154148102, -0.0032951822504401207, 0.08710268884897232, -0.052355654537677765, -0.03310254588723183, -0.22423838078975677, -0.1551109105348587, 0.0899321436882019, 0.009141836315393448, -0.013134455308318138, 0.037502218037843704]]},
"000023": {"url": "http://i.imgur.com/t6b8e5B.jpg", "embedding": [[-0.13233816623687744, 0.09754839539527893, 0.015584547072649002, -0.053526125848293304, -0.2105167806148529, 0.048278335481882095, -0.013939093798398972, -0.06122520938515663, 0.18022939562797546, -0.08404012769460678, 0.258704274892807, -0.029465310275554657, -0.2692786157131195, -0.016924764961004257, 0.08834517002105713, 0.1812961995601654, -0.2710159718990326, -0.1033654734492302, -0.16090324521064758, -0.12357696145772934, -0.08779580146074295, 0.08962522447109222, -0.02631550095975399, 0.04279787465929985, -0.1474553942680359, -0.3185504376888275, 0.004693835973739624, -0.07303610444068909, 0.171047642827034, -0.12828238308429718, 0.04240882396697998, 0.06905482709407806, -0.12181451916694641, -0.02579321712255478, 0.08303043246269226, -0.002238759072497487, -0.11041554063558578, -0.07614919543266296, 0.29761555790901184, 0.005105027928948402, -0.16749653220176697, 0.028060073032975197, 0.0786619707942009, 0.2752508223056793, 0.14226168394088745, 0.06096767634153366, 0.00963114108890295, -0.07782907783985138, 0.13333314657211304, -0.3242338001728058, 0.042492784559726715, 0.20163412392139435, 0.1383877843618393, 0.033921804279088974, 0.09124636650085449, -0.23325441777706146, 0.014947118237614632, 0.16067661345005035, -0.20272906124591827, 0.12222050130367279, 0.1438775658607483, -0.1250573694705963, -0.05964691936969757, -0.07485000789165497, 0.22507311403751373, 0.06444261968135834, -0.11009486019611359, -0.11203751713037491, 0.1317877471446991, -0.09056055545806885, -0.14427940547466278, 0.021007684990763664, -0.0843527540564537, -0.20061209797859192, -0.32916179299354553, -0.004001626744866371, 0.33475542068481445, 0.2131773978471756, -0.24220196902751923, 0.004021039232611656, 0.022347189486026764, -0.005690194666385651, 0.06894369423389435, 0.09875669330358505, -0.16198408603668213, -0.1896616667509079, -0.06597598642110825, 0.010966718196868896, 0.15970487892627716, 0.02577083185315132, 0.010961255058646202, 0.21785391867160797, 0.11025486886501312, -0.005939137190580368, -0.031042156741023064, -0.042940653860569, -0.1172652319073677, -0.10885526984930038, -0.08622899651527405, -0.041007980704307556, 0.059337519109249115, -0.03942308574914932, 0.05962787941098213, 0.13875073194503784, -0.2515832185745239, 0.2918889820575714, 0.0012081246823072433, -0.054199930280447006, 0.003285118378698826, 0.029006952419877052, -0.017476461827754974, 0.07531291246414185, 0.1765565425157547, -0.2670535743236542, 0.2570115029811859, 0.2235420048236847, 0.07596924155950546, 0.18167844414710999, 0.08054056018590927, 0.024016300216317177, -0.03105062060058117, 0.0657903328537941, -0.17859743535518646, -0.16101323068141937, 0.020976196974515915, -0.12968198955059052, 0.08808453381061554, 0.08454146981239319]], "landmarks": [{"nose_tip": [[-0.3593374194015867, 0.16217064337789894], [-0.14906330975790683, 0.27988083499898697], [0.0609473368515099, 0.3677024184048425], [0.26937720525534786, 0.2761923525193032], [0.44791846544395336, 0.18494574966802696]], "right_eyebrow": [[0.34323524784525755, -1.5179145294974348], [0.7008446942909947, -1.6406305187695223], [1.0293559216242887, -1.673417220361649], [1.3594479271631617, -1.5268722726623811], [1.5408872807286615, -1.2893441851461003]], "right_eye": [[0.5267823056848624, -1.041277576259294], [0.7346852480201742, -1.1925648585752981], [0.9439055055268015, -1.19440909981514], [1.153916152136218, -1.1065875164092847], [0.9753748919476127, -1.0153409135580087], [0.736266026225753, -1.0132332092839036]], "transform": {"scale": 33.45626348470529, "center": [124.06944444444444, 165.68055555555554], "angle": 0.008814602837371049}, "top_lip": [[-0.7135218464019032, 0.6734385394480086], [-0.41489922728384154, 0.6409153008901448], [-0.20594243281147734, 0.6091824514350704], [0.03369335897890871, 0.6668519635914304], [0.24238669041700978, 0.6052305059211235], [0.45187041095790026, 0.6332748728965141], [0.6912427397140232, 0.6610557768376415], [0.5719517698873564, 0.6919982371899265], [0.2434405425540623, 0.7247849387820534], [0.03422028504743497, 0.7266291800218954], [-0.2048885806744248, 0.7287368842960004], [-0.5638153422914777, 0.7020098324919254]], "left_eye": [[-1.1173546091871867, -1.0566757175900545], [-0.8790361325681164, -1.1484492465098566], [-0.6401907298805197, -1.1804455589991942], [-0.4595417654178093, -1.0325832961286108], [-0.6684985598901735, -1.0008504466735366], [-0.9076074256120332, -0.9987427423994315]], "chin": [[-2.044691852962183, -1.1381741881735947], [-1.9801723019149817, -0.6007061663679365], [-1.886027605686811, -0.09339021581177379], [-1.7918829094586404, 0.41392573474438893], [-1.6379609968000048, 0.9207147592320254], [-1.3054978239527637, 1.3362571808683854], [-0.9434095059245535, 1.7216475312552504], [-0.5223343605686674, 2.016845130927891], [-0.043326240022158534, 2.1022955470253786], [0.4044759571378023, 2.038566385080966], [0.8501704500236582, 1.735728357414695], [1.2054087291610271, 1.3440148942055152], [1.5302314740146374, 0.8927876776001338], [1.6751956435083268, 0.38336402276986603], [1.7601191335372879, -0.15542131420710797], [1.8151540153510166, -0.6939431881498188], [1.9003409684142407, -1.2028399169115602]], "nose_bridge": [[0.048037648172616604, -1.096839384141549], [0.05146266761803727, -0.7082874773435267], [0.054887687063457945, -0.31973557054550444], [0.08820131472411108, 0.0685528732182546]], "bottom_lip": [[0.6912427397140232, 0.6610557768376415], [0.42408950701677284, 0.872647201652637], [0.21565963861293486, 0.9641572675381763], [0.006702844140570651, 0.9958901169932507], [-0.2326694846155523, 0.9681092130521233], [-0.442680131224969, 0.8802876296462677], [-0.7135218464019032, 0.6734385394480086], [-0.5638153422914777, 0.7020098324919254], [-0.20436165460589856, 0.7885141007264653], [0.0051220659349918785, 0.8165584677018559], [0.2140788604073561, 0.7848256182467815], [0.5719517698873564, 0.6919982371899265]], "left_eyebrow": [[-1.6270417270517177, -1.231528495298976], [-1.390304028638226, -1.5026336735101733], [-1.0326945821924889, -1.6253496627822608], [-0.673767820575436, -1.598622610978186], [-0.28442552467462445, -1.512381805777909]]}]},
"000025": {"url": "http://i.imgur.com/E08UrAD.jpg", "landmarks": [{"nose_bridge": [[-0.1240799416885891, -1.2027227766489361], [-0.1556065652484786, -0.9373571687317722], [-0.18713318880836805, -0.6719915608146082], [-0.2186598123682575, -0.40662595289744413]], "top_lip": [[-0.8175979594053199, 0.7397812009479636], [-0.5801738035120763, 0.5645139992905067], [-0.34342186728182694, 0.4777766913457705], [-0.13730026172747478, 0.5383651330345707], [0.09945167450277459, 0.4516278250898345], [0.3938791005488494, 0.5423984510125358], [0.7471023825157399, 0.6631271879481402], [0.6288384510111142, 0.6917408596350548], [0.09788316195578815, 0.6581975770861829], [-0.1384206278324651, 0.6859149558891052], [-0.3447663066078153, 0.6548364787712119], [-0.6995581011216921, 0.7406774938319558]], "transform": {"angle": -0.007592991656754929, "center": [127.51388888888889, 167.72222222222223], "scale": 33.88588186795698}, "right_eye": [[0.4352649458326535, -1.0214055980245316], [0.702199066296804, -1.1964487264609904], [0.938054709643061, -1.1651461761220994], [1.173238133326324, -1.045313732070487], [0.9662202348879797, -0.9878623154756596], [0.7006305537498175, -0.9898789744646421]], "nose_tip": [[-0.45787655402948557, 0.004720965327267906], [-0.31077487761694716, 0.06486126057407202], [-0.13393916341250384, 0.09571566447096727], [0.04356877045493365, 0.03804017465514186], [0.25036259567228, 0.010098722631221397]], "left_eyebrow": [[-1.5117204961842075, -1.1247243243231244], [-1.3912158324696013, -1.448437641719108], [-1.065485856084635, -1.5935226591426639], [-0.7113662812337523, -1.5908337804906871], [-0.3581429992668618, -1.4701050435550826]], "bottom_lip": [[0.7471023825157399, 0.6631271879481402], [0.4211483329097756, 0.837722169942603], [0.12560054075871055, 0.894501366874436], [-0.11070324902954269, 0.9222187456773584], [-0.3170489278048929, 0.891140268559465], [-0.5526804979301521, 0.8303277536496669], [-0.8175979594053199, 0.7397812009479636], [-0.6995581011216921, 0.7406774938319558], [-0.34499037982881336, 0.6843464433421188], [-0.1384206278324651, 0.6859149558891052], [0.09788316195578815, 0.6581975770861829], [0.6288384510111142, 0.6917408596350548]], "chin": [[-1.5736533771989962, -0.7415429313433308], [-1.5472804377220621, -0.3281793541296363], [-1.521131571466126, 0.11469418765496527], [-1.4654727406392831, 0.5577918026605648], [-1.3505699074496285, 0.9718275995372536], [-1.146913107326255, 1.35702565150603], [-0.8542782670481647, 1.6838759939959862], [-0.5021753511862646, 1.9521545537861251], [-0.0005059534808472804, 1.9559637985430922], [0.5308974820164748, 1.9304871519501503], [1.0631972103977894, 1.7869706470735809], [1.5373733025212821, 1.5249661374713879], [1.9236917205950486, 1.1737595144934798], [2.1336225709063674, 0.7326785584768628], [2.2259617093760555, 0.23168138043443984], [2.229995027354021, -0.2994979818418843], [2.2633142366818952, -0.8009433063263036]], "left_eye": [[-1.158721287438315, -0.9744856228166131], [-0.9805411339078832, -1.1206910063451592], [-0.7147273795487232, -1.1481843119270836], [-0.4795439558654603, -1.0283518678754715], [-0.7160718188747116, -0.9711245245016422], [-0.9523756086629648, -0.9434071456987199]], "right_eyebrow": [[0.08495461573873785, -1.5257638743819255], [0.49899041261542665, -1.6406667075715804], [0.9418639544000281, -1.6668155738275163], [1.3541071655087324, -1.5456386904499158], [1.6469660790078209, -1.2482983125308664]]}], "embedding": [[-0.048494238406419754, 0.059917327016592026, 0.02105654776096344, -0.009778741747140884, -0.12205001711845398, 0.0008123870939016342, 0.017683682963252068, 0.012315772473812103, 0.22339008748531342, -0.04738346487283707, 0.14461587369441986, -0.15530461072921753, -0.30612045526504517, -0.044483769685029984, 0.04127458110451698, 0.10217373073101044, -0.10318631678819656, -0.11365676671266556, -0.12917368113994598, -0.03572908043861389, 0.05217202752828598, -0.019894525408744812, 0.005537424236536026, 0.051014482975006104, -0.21293412148952484, -0.38203200697898865, -0.05898870900273323, -0.09859638661146164, 0.023306729272007942, -0.19451892375946045, 0.0169607475399971, 0.057637643069028854, -0.13706398010253906, -0.10411524027585983, 0.0031376443803310394, 0.1267961710691452, -0.07588636875152588, -0.028821174055337906, 0.23452511429786682, -0.02310868911445141, -0.2098442018032074, 0.09227487444877625, -0.0193328857421875, 0.29290005564689636, 0.15511563420295715, 0.06140100210905075, 0.05931168794631958, -0.07499091327190399, 0.053328610956668854, -0.32515421509742737, 0.05394527316093445, 0.19779226183891296, 0.09124572575092316, 0.043190762400627136, 0.13692940771579742, -0.13415004312992096, 0.017253760248422623, 0.12055237591266632, -0.2753393054008484, 0.11451397836208344, 0.1575642079114914, 0.018072061240673065, -0.0032197795808315277, -0.010424468666315079, 0.17421108484268188, 0.06494437158107758, -0.10837917774915695, -0.09871356934309006, 0.17118722200393677, -0.22084888815879822, 0.04918435961008072, 0.12712261080741882, -0.05958949029445648, -0.24432837963104248, -0.2755433917045593, 0.05321329087018967, 0.42203488945961, 0.13903135061264038, -0.1823883354663849, -0.033290497958660126, -0.08861922472715378, 0.022928643971681595, 0.0681932345032692, -0.06048288568854332, -0.10839490592479706, -0.0603930726647377, -0.10772381722927094, 0.09932316839694977, 0.1830943524837494, -0.005068670958280563, 0.018622364848852158, 0.19498172402381897, 0.1289128065109253, -0.06417375802993774, 0.05670918524265289, 0.04248936474323273, -0.05693530663847923, -0.024503791704773903, -0.11200352013111115, 0.1071469783782959, 0.07513919472694397, -0.20261690020561218, 0.02797188237309456, 0.05782204493880272, -0.21560747921466827, 0.19486112892627716, -0.007442912086844444, -0.11230496317148209, -0.04398294538259506, 0.086205393075943, -0.18969576060771942, 0.012920547276735306, 0.2674885392189026, -0.3803434669971466, 0.1638522744178772, 0.22612044215202332, 0.010909667238593102, 0.09635958075523376, -0.007107173558324575, 0.09448148310184479, -0.010032692924141884, -0.00032017752528190613, -0.11796089261770248, -0.10385867953300476, -0.051596347242593765, -0.015231998637318611, 0.01754290983080864, 0.0645587146282196]]},
"000028": {"embedding": [[-0.11845312267541885, 0.13963933289051056, 0.05980578064918518, -0.10392583906650543, -0.13615268468856812, -0.011556101031601429, -0.0646212249994278, -0.1391819417476654, 0.09452647715806961, -0.06872650235891342, 0.25857463479042053, -0.0905275046825409, -0.2606193423271179, 0.04668613523244858, -0.08711537718772888, 0.1687861829996109, -0.07837167382240295, -0.12965941429138184, -0.10210351645946503, -0.07850508391857147, 0.018931381404399872, -0.055264588445425034, 0.0028295107185840607, 0.1108768880367279, -0.08137500286102295, -0.3023594319820404, -0.02848878875374794, 0.02499949187040329, -0.0261303149163723, -0.06927909702062607, -0.0036313384771347046, 0.06630555540323257, -0.24234531819820404, 0.039190635085105896, 0.01876402273774147, 0.16416200995445251, 0.036960601806640625, -0.09088931977748871, 0.13570402562618256, -0.025774270296096802, -0.21725237369537354, -0.0324733704328537, 0.17707610130310059, 0.23504066467285156, 0.19077391922473907, -0.031096044927835464, 0.01227345410734415, -0.04458992928266525, 0.11161058396100998, -0.2559458911418915, 0.11366117745637894, 0.09166518598794937, 0.13610638678073883, 0.08858022093772888, 0.04138137027621269, -0.21093519032001495, -0.0013571595773100853, 0.17082829773426056, -0.14398059248924255, 0.0017079925164580345, 0.035086579620838165, -0.08096812665462494, -0.037088871002197266, -0.17094703018665314, 0.30680060386657715, 0.23125872015953064, -0.15265503525733948, -0.15710239112377167, 0.15022948384284973, -0.12743765115737915, -0.05996733158826828, 0.004790410399436951, -0.0838455930352211, -0.11185538023710251, -0.296464204788208, 0.05279729887843132, 0.3405892252922058, 0.16218098998069763, -0.22130145132541656, 0.09156598150730133, -0.12322349101305008, -0.03537309169769287, -0.06255162507295609, 0.0851622149348259, -0.020463639870285988, 0.09472441673278809, -0.09945619106292725, -0.007555536925792694, 0.23936399817466736, -0.031241584569215775, 0.013778133317828178, 0.2812574803829193, -0.03789839521050453, -0.03146599233150482, 0.0104361055418849, 0.06993506848812103, -0.19363075494766235, -0.02938595600426197, -0.1632397323846817, -0.08270812034606934, -0.09191963821649551, -0.09538193047046661, -0.004558242857456207, 0.046676285564899445, -0.3123154044151306, 0.15659239888191223, -0.004399439319968224, 0.029227495193481445, -0.009077684953808784, 0.03115350380539894, -0.00459371879696846, -0.05378146097064018, 0.11788852512836456, -0.31909215450286865, 0.1987665295600891, 0.09720861911773682, 0.09528490155935287, 0.20448969304561615, 0.11848912388086319, 0.11140545457601547, 0.10011434555053711, -0.03966086730360985, -0.04136039689183235, -0.07389838248491287, 0.023919859901070595, -0.06842969357967377, 0.02601776272058487, 0.1499873399734497]], "url": "http://i.imgur.com/CdXSDXI.jpg", "landmarks": [{"transform": {"angle": 0.000206695430585881, "center": [124.94444444444444, 164.29166666666666], "scale": 32.02957105657054}, "right_eyebrow": [[0.4385383010600577, -1.4141485328747159], [0.6882752187925704, -1.5703058990720808], [1.0004673390815613, -1.6640338757878599], [1.3126659126392755, -1.7265407044941234], [1.5936820577998123, -1.6017141918745672]], "left_eyebrow": [[-1.5596280780864145, -1.4761778196954685], [-1.3098847070851787, -1.6011140378833177], [-1.0288879217308113, -1.5699509692923097], [-0.7166635350982047, -1.5075732059605087], [-0.404426241928152, -1.3827531466096756]], "top_lip": [[-0.9348050152352609, 0.45940429152006296], [-0.5913723871305846, 0.4593333055641087], [-0.27914800049797805, 0.5217110688959096], [0.001848784856389407, 0.5528741374869176], [0.2516115156637945, 0.5216013633276166], [0.5950376904997478, 0.4903092293621464], [0.9384767718731472, 0.5214593914157082], [0.8136050863725293, 0.5839275005096327], [0.2516437820074101, 0.6777071033751968], [0.0018745979312818609, 0.6777587295249817], [-0.2791221874230856, 0.6465956609339737], [-0.8411286646692666, 0.5218272277329257]], "bottom_lip": [[0.9384767718731472, 0.5214593914157082], [0.6263749973462798, 1.0522834402647119], [0.25176639411314927, 1.2709089155560012], [0.00200366330574413, 1.3021816897153022], [-0.2789931220486233, 1.2710186211242942], [-0.6537049775813237, 0.9901057282633274], [-0.9348050152352609, 0.45940429152006296], [-0.8411286646692666, 0.5218272277329257], [-0.2790576547358544, 0.9588071410291339], [0.0019455838872361087, 1.021191357629658], [0.2517083146946413, 0.9899185834703571], [0.8136050863725293, 0.5839275005096327]], "left_eye": [[-1.2161051042196147, -1.0391527335181985], [-0.9975828812278948, -1.1640824984373244], [-0.7478072438830435, -1.1329129765775932], [-0.5292269414728156, -0.976852409411075], [-0.7789961255489438, -0.97680078326129], [-1.0287653096250722, -0.9767491571115051]], "right_eye": [[0.5322920908507294, -0.9770718205476608], [0.7820225553145189, -1.1644503347545418], [1.0317852861219239, -1.1957231089138427], [1.2503526819947055, -1.1021048377663565], [1.0318240057342627, -1.0083962208567465], [0.8132824229363737, -0.9771298999661688]], "chin": [[-1.8405409709473814, -1.1014659641627684], [-1.8092230239070186, -0.633155197288751], [-1.7778986235979328, -0.1336232824052176], [-1.652917232529022, 0.33466812466263035], [-1.4030512494220473, 0.8029337186555859], [-1.1219770248430023, 1.2087505633607865], [-0.8408963469952345, 1.6457885560755028], [-0.4661715849250878, 1.9891437449555016], [0.002171448292545079, 2.1139315379627193], [0.4704628553603931, 1.9889501468938082], [0.8450456455186311, 1.6454400795644546], [1.157173233120391, 1.2395006227535152], [1.4380796727126348, 0.8335676192112986], [1.6565373630171234, 0.39642637419701243], [1.750104008014825, -0.07191020575189735], [1.7812219037247712, -0.571455027172877], [1.7811186514252013, -1.0709933953251336]], "nose_bridge": [[0.0015325746889568487, -0.9769621149793679], [0.0016164671823573234, -0.5710871908556595], [0.001700359675757798, -0.16521226673195108], [0.0017777989004351593, 0.2094415093822413]], "nose_tip": [[-0.4665394212423053, 0.209538308413088], [-0.24796557210080064, 0.33437772757009027], [0.0018229717814969534, 0.4279895454488534], [0.2515727960514559, 0.33427447527052045], [0.5013161670526918, 0.20933825708267145]]}]},
"000029": {"embedding": [[-0.16137836873531342, 0.09376926720142365, 0.11693772673606873, -0.16385796666145325, -0.12708231806755066, -0.03670426830649376, -0.012707291170954704, -0.17026537656784058, 0.25396865606307983, -0.12201644480228424, 0.2045082151889801, -0.14625723659992218, -0.272278755903244, -0.019114792346954346, -0.002789650112390518, 0.18365129828453064, -0.13106374442577362, -0.17503690719604492, -0.12060877680778503, -0.08047898858785629, 0.01777302473783493, 0.015624790452420712, 0.05940597131848335, 0.10732223838567734, -0.1828785389661789, -0.20903503894805908, -0.10381662845611572, -0.11779536306858063, -0.06767947971820831, -0.1850723922252655, 0.07975579798221588, 0.08422348648309708, -0.1832708716392517, -0.03714365139603615, -0.03309231996536255, 0.13509348034858704, -0.09938301146030426, -0.2395077645778656, 0.14241604506969452, -0.04682595655322075, -0.14936688542366028, -0.17511728405952454, 0.05073681101202965, 0.21333612501621246, 0.11242283135652542, -0.032380957156419754, 0.0488123893737793, -0.0918513685464859, 0.11229006201028824, -0.3413183391094208, -0.08591800928115845, 0.1546141505241394, -0.09386773407459259, 0.11055606603622437, 0.1173434630036354, -0.1399090588092804, 0.13185358047485352, 0.14117631316184998, -0.18022269010543823, 0.13347399234771729, 0.08607426285743713, -0.09604445844888687, -0.04036608710885048, -0.09918046742677689, 0.2649725079536438, 0.11162850260734558, -0.14970095455646515, -0.09509270638227463, 0.14702248573303223, -0.09863566607236862, -0.11506704986095428, 0.1323263794183731, -0.1737930029630661, -0.2688586115837097, -0.271224707365036, -0.045432429760694504, 0.3683401048183441, 0.09216970205307007, -0.12998035550117493, 0.0034396573901176453, -0.0750630795955658, -0.017582518979907036, -0.05433114618062973, 0.13694320619106293, 0.01573597453534603, 0.012249533087015152, -0.12612712383270264, 0.06576220691204071, 0.3068169057369232, -0.1226799413561821, 0.03774113953113556, 0.31411564350128174, -0.0045784469693899155, -0.07976891100406647, -0.06870611011981964, 0.0715668722987175, -0.06250817328691483, 0.01553594134747982, -0.09745385497808456, 0.05151556804776192, 0.11575324088335037, -0.06506074219942093, -0.0848422721028328, 0.044990506023168564, -0.15982602536678314, 0.1275399923324585, 0.029900027438998222, -0.08565040677785873, -0.1359759420156479, -0.14930760860443115, -0.16128140687942505, 0.023174697533249855, 0.24488000571727753, -0.2551284730434418, 0.18026264011859894, 0.25566938519477844, 0.09171167016029358, 0.11665797233581543, 0.01916794665157795, 0.08102241158485413, 0.0519435778260231, -0.025485798716545105, -0.04766910523176193, -0.10079865157604218, 0.04471536725759506, 0.005661326460540295, -0.083545982837677, 0.04322988539934158]], "landmarks": [{"nose_tip": [[-0.24007708554125293, -0.006625005149511912], [-0.09213361219272709, 0.02325752894734854], [0.0557533535736535, 0.0827400592303432], [0.20380984208646982, 0.05342260095493523], [0.32232284199529715, -0.005551361088752219]], "chin": [[-2.103125110221206, -0.9277848645948232], [-2.0153422581414175, -0.39481541049797153], [-1.9275028984794842, 0.10855404741274588], [-1.8396635388175506, 0.6119235053234632], [-1.6629111754329242, 1.056262493608348], [-1.338045815953336, 1.4416840274316907], [-0.9242109451689094, 1.738475095443066], [-0.4510630668479239, 1.9761791862464637], [0.022423856965932982, 2.0362832999330567], [0.49613681110837093, 1.9779874288751116], [0.9110453259535571, 1.7123785693499372], [1.2373233749867765, 1.3578001985199244], [1.4748579430437383, 0.9734523087573415], [1.6237620452887334, 0.5001349076899203], [1.71346615516146, 0.026704491458208603], [1.8327702612203207, -0.44666941719135783], [1.8929308824890585, -0.9497563371913489]], "transform": {"center": [124.11111111111111, 167.20833333333334], "angle": -0.0019090378641943289, "scale": 33.78372657548543}, "nose_bridge": [[0.057957149277318126, -1.0716597920288913], [0.057448581038010905, -0.8052598263536833], [0.08659651656698315, -0.5684033492824643], [0.08608794832767593, -0.3020033836072563]], "bottom_lip": [[0.7650231103979698, 0.6760961649245134], [0.5276580650874436, 0.9716440661286936], [0.2610320690836546, 1.0895354826339234], [0.0538320957807151, 1.0891399295589066], [-0.18296787370835862, 1.0886878689017445], [-0.5083418014272539, 0.9696663007536099], [-0.8037201798849984, 0.6435012668846811], [-0.6557767065364726, 0.6733838009815416], [-0.18251581305119663, 0.8518878994126708], [0.024627652669597613, 0.8818834486738217], [0.23188413355468238, 0.8526790055627043], [0.6170231294672986, 0.6758136270137872]], "right_eye": [[0.5312745503447394, -0.9227556897838962], [0.7092135729544161, -1.10001662140783], [0.9756135386296241, -1.0995080531685228], [1.1825309740218373, -0.9511125191628348], [0.9751614779724621, -0.8627080836794491], [0.7383615084833884, -0.863160144336611]], "left_eye": [[-1.1558122171006204, -0.9851766143384436], [-0.9187862172829657, -1.1031245384258186], [-0.681986247793892, -1.1026724777686567], [-0.475125319983824, -0.9246769475768346], [-0.7119817970550428, -0.8955290120478623], [-0.9487817665441166, -0.8959810727050243]], "left_eyebrow": [[-1.6284515271822988, -1.4892806708170494], [-1.3320560122459397, -1.6959155682985363], [-0.976799550430184, -1.7248374734989276], [-0.621769118943009, -1.635359393954782], [-0.29650820638840425, -1.457137833434379]], "top_lip": [[-0.8037201798849984, 0.6435012668846811], [-0.50743768011293, 0.49606636177546254], [-0.2113247030872974, 0.43743144522464655], [0.025362251237485825, 0.497083498254077], [0.23267523970471582, 0.4382790589568253], [0.49896219021563326, 0.497987619568401], [0.7650231103979698, 0.6760961649245134], [0.6170231294672986, 0.6758136270137872], [0.23233619421184434, 0.6158790360736305], [0.025136220908904838, 0.6154834829986138], [-0.2116072409980236, 0.5854314261553176], [-0.6557767065364726, 0.6733838009815416]], "right_eyebrow": [[0.3546917097065485, -1.4558946666271837], [0.680574205664751, -1.603273064154257], [1.0063436864586632, -1.6914514693090619], [1.3614306255279833, -1.6315733859510504], [1.5978350419420402, -1.4239213519909488]]}], "url": "http://i.imgur.com/ql34tyY.jpg"},
"000030": {"landmarks": [{"left_eye": [[-1.1456841394498716, -1.0991760315949257], [-0.9398493242106601, -1.2247041259086218], [-0.7007162677270583, -1.2315173442765022], [-0.4872165818239814, -1.088020750046146], [-0.6956063539511481, -1.0521675519138005], [-0.9338877581387649, -1.01546270148547]], "nose_bridge": [[0.19943930327038925, -1.1375003849142518], [0.20965913082220955, -0.778800800188849], [0.24891893813849514, -0.45084449981988123], [0.2890303977507656, -0.09299656739046332]], "left_eyebrow": [[-1.6042784479084458, -1.4451008318805534], [-1.2199454926025177, -1.6056304720306098], [-0.8322059281126496, -1.6465935839388655], [-0.4718030387952765, -1.5970301473697854], [-0.10884519258994849, -1.4577918146193543]], "right_eye": [[0.47016729640641153, -1.0853819914572165], [0.7058937437060734, -1.211761738066898], [0.9450268001896753, -1.218574956434778], [1.0978915696758669, -1.103266689672902], [0.9210967342011203, -1.0084818797156412], [0.7110036574819836, -1.0324119457041963]], "chin": [[-2.435282579529158, -1.2120131431698207], [-2.4182495336094574, -0.6141805019608159], [-2.3721765079252912, -0.047091145108246274], [-2.2065369539993243, 0.5165916025603833], [-1.8931425443630765, 1.016232824628187], [-1.463588215668968, 1.39290090927025], [-0.9469139476814634, 1.6773391408430072], [-0.46183461634637923, 1.9028457605908486], [0.01813480121279469, 1.9490025879759887], [0.40417106111069284, 1.8482562119468327], [0.6646792266948947, 1.5416750206784648], [0.9251873922790967, 1.235093829410097], [1.1532489689148935, 0.8396893942563639], [1.2600407127169189, 0.38790830416567007], [1.3668324565189445, -0.06387278592502375], [1.47362420032097, -0.5156538760157175], [1.4907410479416447, -0.9648800092184563]], "bottom_lip": [[0.6732795513557193, 0.7935325668712238], [0.498188020472943, 0.9481006409493851], [0.35043316476266184, 1.0121421665502108], [0.17108337239996035, 1.017252080326121], [-0.009118072258726129, 0.9924703620415808], [-0.24995443333429815, 0.9395003162885606], [-0.5531290154187258, 0.7985586789461596], [-0.46345411923737495, 0.7960037220582045], [0.014811993729828936, 0.7823772853224441], [0.19501343838851543, 0.8071590036069841], [0.34361994639478166, 0.7730091100666088], [0.5827530028783836, 0.7661958916987286]], "transform": {"center": [121.25, 165.83333333333334], "scale": 33.44060863016036, "angle": 0.028483622502785192}, "right_eyebrow": [[0.4010158570296758, -1.4124866395301994], [0.696525568450238, -1.5405696907318505], [0.9937385844627706, -1.6088694778126011], [1.2943582096592432, -1.557602736651551], [1.4497779360333893, -1.3526195737083244]], "top_lip": [[-0.5531290154187258, 0.7985586789461596], [-0.25676765170217836, 0.7003672598049585], [0.01055373224990381, 0.6329191250201929], [0.16171519714412508, 0.6884441276611681], [0.3393616849148565, 0.6235509497643575], [0.520414781869528, 0.6782243001093478], [0.6732795513557193, 0.7935325668712238], [0.5827530028783836, 0.7661958916987286], [0.3137283143343314, 0.7738607623625938], [0.16427015403208015, 0.778119023842519], [0.014811993729828936, 0.7823772853224441], [-0.46345411923737495, 0.7960037220582045]], "nose_tip": [[-0.15253086478810784, 0.15891127353291404], [0.027670579870578665, 0.18369299181745413], [0.2087236768252502, 0.23836634216244448], [0.3573301848315164, 0.20421644862206909], [0.44530177642089713, 0.14187822761321353]]}], "url": "http://i.imgur.com/Wolh1MC.jpg", "embedding": [[-0.04495656490325928, 0.1289292871952057, 0.037160925567150116, -0.0903349220752716, -0.01528393104672432, 0.09886183589696884, 0.04248815402388573, -0.12356332689523697, 0.1335393190383911, 0.004305695183575153, 0.13572640717029572, 0.001925034448504448, -0.3118908405303955, -0.018724191933870316, -0.013959620147943497, 0.10719407349824905, -0.17303162813186646, -0.21083424985408783, -0.13443994522094727, -0.15903909504413605, 0.006409939378499985, 0.03997927904129028, -0.026793990284204483, 0.06656508147716522, -0.18343758583068848, -0.20335814356803894, -0.07768872380256653, -0.11464043706655502, 0.04250451922416687, -0.08644532412290573, 0.025352835655212402, 0.0034745577722787857, -0.18933658301830292, 0.01744314841926098, 0.001250341534614563, 0.031131118535995483, -0.06292212009429932, -0.16315051913261414, 0.2713526487350464, 0.04671413078904152, -0.10215302556753159, 0.04062388464808464, 0.005463719367980957, 0.2669489085674286, 0.17379990220069885, -0.01580386608839035, 0.035235445946455, -0.059849098324775696, 0.07579538226127625, -0.23283278942108154, 0.05729985237121582, 0.23365440964698792, 0.021380532532930374, 0.13982361555099487, -0.021326575428247452, -0.18868909776210785, 0.02387976460158825, 0.14261312782764435, -0.19537954032421112, 0.06407688558101654, -0.01660805754363537, -0.23342527449131012, -0.016454361379146576, -0.046160437166690826, 0.1634264588356018, 0.09027844667434692, -0.08868558704853058, -0.17427034676074982, 0.17216216027736664, -0.1094035655260086, -0.1328808218240738, 0.022935355082154274, -0.13622330129146576, -0.09690011292695999, -0.32473647594451904, 0.11300905793905258, 0.3624863922595978, 0.11136708408594131, -0.20504555106163025, 0.04960259422659874, -0.0954182967543602, -0.01698329672217369, 0.05568556487560272, 0.09786306321620941, -0.09502649307250977, -0.0746050775051117, -0.12890830636024475, 0.05813950300216675, 0.22501137852668762, -0.017057914286851883, -0.09219812601804733, 0.1592458039522171, -0.00040637701749801636, -0.026583632454276085, 0.05374850332736969, 0.13022436201572418, -0.12125161290168762, -0.010024011135101318, -0.08482186496257782, -0.006848033517599106, 0.10108847916126251, -0.021319570019841194, -0.006000783294439316, 0.1704515814781189, -0.16166047751903534, 0.16696062684059143, 0.005273895338177681, -0.1251765787601471, -0.08463279902935028, -0.09993445873260498, -0.07710763067007065, 0.030359849333763123, 0.2049880474805832, -0.26973432302474976, 0.2205972522497177, 0.21218764781951904, 0.006486639380455017, 0.13078604638576508, 0.07095508277416229, 0.05237990617752075, -0.045362215489149094, -0.01921125128865242, -0.20723076164722443, -0.11810648441314697, 0.10594049096107483, 0.08322355151176453, 0.07510921359062195, 0.07150547951459885]]},
"000031": {"url": "http://i.imgur.com/z2PVGjo.jpg", "embedding": [[-0.16724835336208344, 0.07496073842048645, 0.13514217734336853, -0.05146966874599457, -0.24986112117767334, -0.029796725139021873, -0.007479079067707062, -0.06602193415164948, 0.1553700566291809, -0.015023692511022091, 0.23947563767433167, -0.013464270159602165, -0.28953495621681213, 0.022866059094667435, 0.007801461964845657, 0.19315317273139954, -0.2069963812828064, -0.1594276875257492, -0.050842590630054474, 0.041235119104385376, -0.060580868273973465, 0.049060750752687454, 0.013772543519735336, 0.016374416649341583, -0.049168579280376434, -0.3538321554660797, -0.017906401306390762, -0.05443241819739342, 0.10342752188444138, -0.08631423115730286, -0.02063162624835968, 0.10803499072790146, -0.20307818055152893, -0.10571493953466415, 0.1311255246400833, 0.15464270114898682, -0.10270387679338455, -0.1399679183959961, 0.19223539531230927, 0.014926401898264885, -0.2506973445415497, -0.09205060452222824, 0.08373419940471649, 0.24999886751174927, 0.22352725267410278, -0.029847057536244392, 0.00888519175350666, -0.11352938413619995, 0.07929275184869766, -0.35671699047088623, 0.061984796077013016, 0.11022815853357315, 0.04778025299310684, 0.06912803649902344, 0.08076737821102142, -0.22156350314617157, 0.016384761780500412, 0.1533336341381073, -0.26123183965682983, 0.11526446044445038, 0.08987520635128021, -0.11793243139982224, 0.0004983749240636826, -0.06695258617401123, 0.25007185339927673, 0.1029084324836731, -0.11209013313055038, -0.16843949258327484, 0.20692993700504303, -0.1253434270620346, -0.07142608612775803, 0.12082335352897644, -0.07031905651092529, -0.18371953070163727, -0.2719677686691284, -0.004736912902444601, 0.4220300614833832, 0.0975545272231102, -0.1962229609489441, -0.015879372134804726, -0.03701170161366463, -0.12583206593990326, -0.019350267946720123, 0.171165332198143, 0.009902657940983772, -0.03402014821767807, -0.11551156640052795, -0.015552956610918045, 0.23375040292739868, -0.027828767895698547, 0.029894620180130005, 0.3026953637599945, 0.01194828748703003, -0.03824380785226822, 0.07561333477497101, 0.10499485582113266, -0.09194409847259521, -0.0649086982011795, -0.21736419200897217, -0.1718224287033081, 0.019076377153396606, -0.11737876385450363, 0.004166534170508385, 0.16485446691513062, -0.16897425055503845, 0.08705644309520721, -0.021269099786877632, -0.023953070864081383, 0.003780580125749111, -0.13328510522842407, -0.00899944081902504, -0.05496741831302643, 0.178094744682312, -0.2554040849208832, 0.25138700008392334, 0.16382363438606262, 0.0569753497838974, 0.12410704791545868, 0.02261658012866974, 0.013601565733551979, 0.06553579121828079, -0.08103492856025696, -0.06798437982797623, -0.05554504692554474, -0.020460039377212524, -0.04380534961819649, -0.007255992386490107, 0.06477642804384232]], "landmarks": [{"right_eyebrow": [[0.3946206622655911, -1.4397290477846088], [0.696312531070274, -1.5528406065410032], [1.0266083752867055, -1.6054833572474012], [1.324387215419589, -1.5391450061897054], [1.5896490514689248, -1.3538255533679164]], "transform": {"angle": -0.0218022324632193, "center": [125.86111111111111, 166.40277777777777], "scale": 33.42756789724152}, "top_lip": [[-0.9643886584275285, 0.5055244165771862], [-0.6054888387993484, 0.5133504739207848], [-0.2764973374735168, 0.5205243598190836], [-0.038535133945329876, 0.5855583679861796], [0.2020357553640566, 0.5309591029438819], [0.5609355749922366, 0.5387851602874806], [0.950395884368065, 0.5173550707740309], [0.8294582682680718, 0.574563021597528], [0.19942706958285703, 0.6505923761532753], [-0.040491648281229545, 0.6752833228932246], [-0.27910602325471634, 0.640157633028477], [-0.8753158749657834, 0.5373892492154342]], "right_eye": [[0.5343796820978344, -0.9878434160228843], [0.7469987674407722, -1.1328198074175269], [0.986265313859559, -1.1276024358551278], [1.1637587093377493, -1.0339644522762832], [0.9830044566330595, -0.9780608443433859], [0.7437379102142727, -0.983278215905785]], "nose_bridge": [[-0.0020135330085359546, -1.0893074569453274], [-0.00983959035213465, -0.7304076373171473], [-0.01766564769573335, -0.3715078176889673], [-0.025491705039332044, -0.012607998060787244]], "left_eye": [[-1.1404861428336723, -1.024365016959678], [-0.9285192289360344, -1.1394330900519722], [-0.719161000819596, -1.134867889934873], [-0.48250314018200896, -1.0100172451630807], [-0.7224218580460955, -0.9853262984231314], [-0.9317800861625339, -0.9898914985402306]], "nose_tip": [[-0.38700021044871163, 0.09919921780500741], [-0.2095068149705213, 0.19283720138385177], [-0.00145292974468273, 0.2572190381056476], [0.1793013229600071, 0.20131543017275036], [0.3906160654123451, 0.11615567538280458]], "bottom_lip": [[0.950395884368065, 0.5173550707740309], [0.5823656645056864, 0.928245469663309], [0.22020498765100688, 1.0699610038314518], [-0.01971373021307969, 1.0946519505714012], [-0.2882364234889148, 1.0588740892613535], [-0.6438753858905953, 0.9015064404060135], [-0.9643886584275285, 0.5055244165771862], [-0.8753158749657834, 0.5373892492154342], [-0.2843233948171155, 0.8794241794472636], [-0.015800701541280344, 0.9152020407573112], [0.22411801632280623, 0.8905110940173617], [0.8294582682680718, 0.574563021597528]], "chin": [[-1.8296818066782838, -0.9795483235968789], [-1.810208231500734, -0.5003630593140057], [-1.7614785094661354, 0.009382694716515719], [-1.712748787431537, 0.5191284487470372], [-1.5138253024398967, 1.0022267417017099], [-1.2232203482053121, 1.3975565940852372], [-0.8422382676183824, 1.7649346425023156], [-0.4293913543932046, 2.0432399074576493], [0.017929077251420684, 2.1128391157418442], [0.4984186844248937, 2.033548903959598], [0.9243090265560693, 1.7136878028679643], [1.2611265852254996, 1.361961869138083], [1.5693401684831816, 0.9497671273582055], [1.7293165031197213, 0.47449489174713133], [1.8002200542945161, -0.03264217650219054], [1.8711236054693108, -0.5397792447515125], [1.9420271566441059, -1.0469163130008343]], "left_eyebrow": [[-1.5520287131682504, -1.3624869185197084], [-1.3381052849347128, -1.5672799465190477], [-1.0377177590206295, -1.6205748686707453], [-0.7093784291400976, -1.583492664470098], [-0.412903931897814, -1.457337676807706]]}]},
"000032": {"url": "http://i.imgur.com/bAq6Ifv.jpg", "landmarks": [{"chin": [[-1.8870650879334472, -1.081956628599479], [-1.8539258346611707, -0.5632959014731916], [-1.7600578570032612, -0.10598054119463925], [-1.6660357187298263, 0.3818533418922551], [-1.5111306954552333, 0.8388603809397565], [-1.2648242643711396, 1.2648864153323391], [-0.9274247467085971, 1.5988943994533193], [-0.49877798185207983, 1.8714028561110387], [-0.040383497264848384, 1.9911645381115228], [0.4476045464375715, 1.92766092264643], [0.8734764202146286, 1.6508359687539944], [1.2685214499522925, 1.3131281298604007], [1.5410299066100122, 0.8844813650038834], [1.691155950803313, 0.3954141969927846], [1.8106093115727457, -0.12401733321113073], [1.869025626725495, -0.6431405421839949], [1.8970775796854278, -1.1315910677329917]], "right_eye": [[0.523898213925566, -1.094135317225999], [0.6757200248896481, -1.2474987343453365], [0.8893496845480416, -1.2485778586540157], [1.1035959866685374, -1.127582891729327], [0.9209473316650626, -1.0351023596111475], [0.7071635113911433, -1.0645417581108105]], "transform": {"scale": 32.76656764519155, "angle": 0.005051335718456244, "center": [124.65277777777777, 165.76388888888889]}, "nose_bridge": [[0.004775004952701978, -1.1525516323787484], [0.006316611107957661, -0.8473664042953288], [0.008012377878738913, -0.5116626534035674], [-0.02081037815882178, -0.17580474189628054]], "bottom_lip": [[0.6256283829752795, 0.9196247062779925], [0.38240516420169735, 1.1039691280522488], [0.16908382577435488, 1.1660852979776113], [-0.014027311075696778, 1.1670102616707647], [-0.22781113134961595, 1.137570863171102], [-0.4113847500462443, 1.0469402584392296], [-0.5650564883966329, 0.8340814018584638], [-0.4429823971632652, 0.8334647593963616], [-0.19852589346547855, 0.8932685200888408], [-0.015260595999901323, 0.9228620792040294], [0.16785054085015033, 0.921937115510876], [0.5034001311263862, 0.8897228259317528]], "right_eyebrow": [[0.2772834616104215, -1.5811983972352655], [0.5820062078472642, -1.674295571815547], [0.9174016375079745, -1.7370283842030123], [1.2230493474379704, -1.647014421933242], [1.4379122920205687, -1.4039453637751853]], "left_eyebrow": [[-1.5222302597730741, -1.3584732612608632], [-1.2791612016150173, -1.5733362058434615], [-0.943919932569833, -1.6665875410392685], [-0.5775434982542039, -1.6379189456172336], [-0.24137726551586594, -1.548059143962989]], "top_lip": [[-0.5650564883966329, 0.8340814018584638], [-0.38271615462420916, 0.6805638241236007], [-0.20006749962073422, 0.5880832920054214], [-0.01664804153963144, 0.6481953739289519], [0.16630893469489466, 0.6167518874274565], [0.38055523681539055, 0.7377468543521454], [0.6256283829752795, 0.9196247062779925], [0.5034001311263862, 0.8897228259317528], [0.1670797377725225, 0.7693445014691662], [-0.016031399077529165, 0.7702694651623196], [-0.1992966965431064, 0.7406759060471312], [-0.4429823971632652, 0.8334647593963616]], "left_eye": [[-1.0935834949165568, -1.0859648046031438], [-0.9110890005286074, -1.208963859529665], [-0.6670949786773974, -1.2407156672622117], [-0.45254035532585046, -1.058683654720839], [-0.6660158543687185, -1.027086007603818], [-0.910164036835454, -1.0258527226796132]], "nose_tip": [[-0.3247623213180367, 0.06988504672571069], [-0.17186138604527582, 0.1301512892647667], [0.011558072035826981, 0.1902633711882972], [0.16399652546201113, 0.15897404530232745], [0.3467993410810116, 0.09701203599249014]]}], "embedding": [[-0.10603578388690948, 0.14116699993610382, 0.030885137617588043, 0.002767235040664673, -0.028445005416870117, 0.07374998182058334, -0.006263156421482563, -0.10012756288051605, 0.09874238818883896, -0.10668497532606125, 0.32063716650009155, 0.03216256946325302, -0.2669740319252014, -0.1034453809261322, 0.022702444344758987, 0.1682029366493225, -0.11265691369771957, -0.13820694386959076, -0.24483758211135864, -0.0016203448176383972, -0.03882378339767456, 0.030968312174081802, -0.0006989464163780212, -0.08527356386184692, -0.031528376042842865, -0.36079156398773193, -0.0604819729924202, -0.039747338742017746, 0.06594634056091309, -0.13517048954963684, 0.015601452440023422, 0.017970111221075058, -0.1620008945465088, -0.0791943371295929, 0.0357639454305172, 0.08418582379817963, -0.15077155828475952, -0.0931258499622345, 0.197183758020401, -0.008128274232149124, -0.17052096128463745, 0.013598918914794922, 0.03384031727910042, 0.2516902685165405, 0.2545916736125946, 0.019051387906074524, -0.005448055919259787, -0.12638436257839203, 0.06616010516881943, -0.2741212844848633, 0.015366761013865471, 0.1091347485780716, 0.15205112099647522, 0.1440887153148651, 0.07785013318061829, -0.08831164985895157, 0.07275866717100143, 0.12885436415672302, -0.22740516066551208, -0.06700152903795242, 0.03646756336092949, -0.12450564652681351, -0.07546737790107727, -0.030553050339221954, 0.1924409121274948, 0.12857922911643982, -0.10388235747814178, -0.1692541539669037, 0.18369042873382568, -0.13860708475112915, -0.09341710805892944, 0.02749858796596527, -0.07035281509160995, -0.18816250562667847, -0.30208978056907654, 0.041225358843803406, 0.3373691737651825, 0.14013147354125977, -0.18509650230407715, 0.04190068319439888, 0.010504768230021, -0.05644813925027847, 0.06765928864479065, 0.10584794729948044, -0.07351469993591309, -0.11456994712352753, -0.04413741081953049, -0.014091826975345612, 0.16809968650341034, -0.009329869411885738, -0.05104494467377663, 0.16299596428871155, -0.011877134442329407, -0.019364936277270317, 0.09240745007991791, 0.04432649537920952, -0.028782479465007782, 0.002503853291273117, -0.13401547074317932, -0.027358558028936386, 0.020896553993225098, -0.0555456206202507, 0.005250103771686554, 0.10277967154979706, -0.07556302100419998, 0.19757023453712463, -0.02414487674832344, 0.056916676461696625, 0.11035844683647156, -0.10362391918897629, -0.01983863301575184, -0.01848703622817993, 0.11940958350896835, -0.2813597619533539, 0.21919523179531097, 0.17599605023860931, -0.04299387335777283, 0.09407244622707367, 0.13485732674598694, 0.0971800684928894, 0.01244275737553835, 0.034633539617061615, -0.3013392686843872, -0.10344506800174713, 0.04536161944270134, 0.001298075309023261, 0.010876570828258991, 0.006034551188349724]]},
"000035": {"embedding": [[-0.16229480504989624, 0.10888229310512543, 0.10294254124164581, -0.12611006200313568, -0.11459463089704514, 0.0036051981151103973, -0.006221741903573275, -0.08742401003837585, 0.188841313123703, -0.037979189306497574, 0.09135114401578903, -0.02948090434074402, -0.27248919010162354, 0.03862700238823891, 0.011941924691200256, 0.2032099962234497, -0.1765531301498413, -0.2446185201406479, -0.10642849653959274, -0.09272611886262894, 0.055555105209350586, 0.12367293983697891, -0.08039893209934235, 0.13740572333335876, -0.1905786246061325, -0.21770548820495605, -0.037868089973926544, -0.10764464735984802, -0.016984760761260986, -0.047908682376146317, 0.040211524814367294, 0.10746587812900543, -0.14398151636123657, 0.04345545917749405, 0.05283068120479584, 0.13431088626384735, 0.014712950214743614, -0.18136830627918243, 0.14135009050369263, 0.009912452660501003, -0.29265761375427246, 0.0261809304356575, 0.0950528085231781, 0.24811416864395142, 0.30901992321014404, -0.06496971100568771, -0.006717092357575893, -0.02074877917766571, 0.1224709078669548, -0.3617078959941864, -0.020623426884412766, 0.16339801251888275, 0.08851496130228043, 0.034750211983919144, 0.15504640340805054, -0.26324763894081116, 0.03848689794540405, 0.11664299666881561, -0.19919542968273163, 0.05270114541053772, 0.042727239429950714, -0.16825203597545624, 0.06579814106225967, -0.06879358738660812, 0.1609499305486679, 0.08793466538190842, -0.14062802493572235, -0.08248722553253174, 0.2392003834247589, -0.14835050702095032, -0.036012034863233566, 0.15974301099777222, -0.15052330493927002, -0.1809859573841095, -0.23499225080013275, 0.020544813945889473, 0.4316488802433014, 0.18300040066242218, -0.2403310239315033, 0.0503949299454689, -0.002645723521709442, 0.08086023479700089, 0.04773770645260811, 0.15393777191638947, -0.006844857707619667, -0.12214195728302002, -0.17372404038906097, 0.008149251341819763, 0.2401820868253708, 0.02435116656124592, 0.04316651448607445, 0.31883013248443604, 0.0416395477950573, -0.07527635246515274, 0.002741662785410881, 0.09430767595767975, -0.08636107295751572, -0.046479061245918274, -0.07515405118465424, -0.02531607076525688, -0.00017023924738168716, -0.015047170221805573, -0.005911549553275108, 0.19269877672195435, -0.12082606554031372, 0.09739062190055847, -0.03852260485291481, 0.005579343065619469, -0.11160439997911453, -0.020239941775798798, 0.04357542470097542, 0.029023228213191032, 0.15759357810020447, -0.2022801637649536, 0.09482763707637787, 0.14184704422950745, -0.10984110832214355, 0.0928739458322525, -0.03478573262691498, 0.10066749900579453, -0.013360431417822838, -0.09393077343702316, -0.17404286563396454, -0.0731051117181778, 0.038080379366874695, -0.08436388522386551, 0.0025115003809332848, 0.08260124176740646]], "url": "http://i.imgur.com/YJTVfC1.jpg", "landmarks": [{"transform": {"center": [124.94444444444444, 164.48611111111111], "angle": -0.002356567041777583, "scale": 31.9356736147587}, "chin": [[-1.9055048262593832, -1.2096072952409207], [-1.8753726237220105, -0.7085277711121384], [-1.782614704541853, -0.20730066501035369], [-1.6898567853616955, 0.293926441091431], [-1.534399358552251, 0.7639882708448257], [-1.2536167074707358, 1.2030324062228328], [-0.9100607577734326, 1.5795984069310571], [-0.47249244212545055, 1.925072922277393], [0.028365709043827944, 1.9888792947041982], [0.4982799568242201, 1.8960475845375393], [0.8748459575324447, 1.5524916348402364], [1.2201728909057776, 1.1775490358350391], [1.5029478986228273, 0.7711459965354471], [1.66069284601381, 0.27050921832567243], [1.7244254274541138, -0.19903607452221345], [1.8194708672158104, -0.6685075763835981], [1.8518905903347218, -1.1381266602179854]], "nose_bridge": [[0.004358158386059352, -1.1111674701001666], [0.0035464575345455773, -0.7667260285648485], [0.00266096569653055, -0.3909717287081377], [0.001849264845016775, -0.046530287172819526]], "left_eyebrow": [[-1.6544116317962327, -1.4595198339200512], [-1.3722269519711932, -1.6154200066485027], [-1.027711719449374, -1.6459211641183815], [-0.6521050015656656, -1.5824099556375812], [-0.3393453732842463, -1.425107754165606]], "left_eye": [[-1.2482299654561444, -1.0828062512388241], [-1.02867100227389, -1.2388540059402782], [-0.7156162100464657, -1.206803237753873], [-0.4969427387022266, -0.9870966925986164], [-0.7789060455677622, -0.9251350948343425], [-1.0607217704602954, -0.9257992137128538]], "bottom_lip": [[0.6888135822666206, 0.7692274308864145], [0.46903324612486264, 1.0192137605520464], [0.2182352156077171, 1.1438748659456064], [-0.0010285836285320636, 1.1746711873614903], [-0.18890573355688742, 1.1742284414424828], [-0.439113436182023, 1.0483866802649024], [-0.7203388331825459, 0.7972196948152508], [-0.5638483325620844, 0.8289015080691498], [-0.15685496537048232, 0.8611736492150585], [-0.00029067376351954097, 0.8615426041475647], [0.21897312547272965, 0.830746282731681], [0.563488357994549, 0.8002451252618021]], "top_lip": [[-0.7203388331825459, 0.7972196948152508], [-0.4382279443440079, 0.6726323804081917], [-0.15619084649197107, 0.5793579243225254], [0.00022586314198922504, 0.6423525958978168], [0.1882505950433471, 0.5801696251740391], [0.4698449469763764, 0.6747723190167281], [0.6888135822666206, 0.7692274308864145], [0.563488357994549, 0.8002451252618021], [0.18773405813783833, 0.7993596334237871], [-0.00021688277701828896, 0.8302297458261723], [-0.15678117438398106, 0.829860790893666], [-0.5638483325620844, 0.8289015080691498]], "right_eye": [[0.5363815859037279, -0.984661590044075], [0.7560881310589845, -1.2033350613883143], [1.0379038559515175, -1.202670942509803], [1.2567249092687593, -1.0455901139973314], [1.0685525953943988, -0.9207814266307687], [0.7867368705018659, -0.9214455455092799]], "right_eyebrow": [[0.34961130077289126, -1.454797210783971], [0.6943479062542145, -1.5792369432180273], [1.0076240714411426, -1.6411247499958002], [1.3519917219899595, -1.6090001908228937], [1.6334384919499862, -1.4517717803374197]], "nose_tip": [[-0.3117220642879163, 0.1406089528905233], [-0.15537914564045727, 0.23491648278720728], [0.0011113549800042524, 0.2665982960411061], [0.15782322855996955, 0.20434153433082725], [0.28314845283204104, 0.17332383995543968]]}]},
"000037": {"landmarks": [{"nose_tip": [[-0.12315955079940503, 0.1007670662576623], [0.11391240187117352, 0.14385656581751366], [0.3509843545417521, 0.18694606537736502], [0.5240299400423938, 0.14636779958827076], [0.6641106661576087, 0.0493765730329072]], "nose_bridge": [[0.2710435873032441, -1.0376964943335454], [0.3483934156795989, -0.7499216356994479], [0.4238398924550367, -0.49130493324894375], [0.5303478770149846, -0.20543342621576333]], "bottom_lip": [[0.6571848470151775, 0.8404534931917547], [0.5830338396708163, 1.0502706412796567], [0.41569830897292515, 1.1783233756195304], [0.24265272347228334, 1.2189016414086247], [0.0366422785862148, 1.2030669464314496], [-0.23339453346979055, 1.1035644861053286], [-0.5129481035303801, 0.8582712448612426], [-0.3671573226124147, 0.8487544868566583], [0.07021502014148187, 0.8202042128429056], [0.27622546502755047, 0.8360389078200806], [0.4201128943445991, 0.7973639936319032], [0.5697103784643984, 0.8461635479945052]], "top_lip": [[-0.5129481035303801, 0.8582712448612426], [-0.20553184671727404, 0.6332272839660055], [0.10759446489858268, 0.49565779162154777], [0.3174116129864849, 0.5698087989659091], [0.45939569070261677, 0.5019757285941385], [0.6127998780242496, 0.6090915953239266], [0.6571848470151775, 0.8404534931917547], [0.5697103784643984, 0.8461635479945052], [0.4473676989272754, 0.7663024858473935], [0.2743221134266336, 0.8068807516364875], [0.09746982472415813, 0.7891427050583957], [-0.3671573226124147, 0.8487544868566583]], "left_eye": [[-1.0778450035457061, -1.0667749454257422], [-0.8211316526961185, -1.1713795783847734], [-0.5276467392592709, -1.1612549382103488], [-0.3412776925522111, -0.9977261107142914], [-0.5707362388191222, -0.9241829855397703], [-0.835062996072377, -0.9362109773151117]], "chin": [[-2.6207160475053835, -1.3760148487483692], [-2.609903820069723, -0.7617902172919973], [-2.5990915926340614, -0.14756558583562532], [-2.4735500920649454, 0.42988748303348623], [-2.147708201412511, 0.9357007783289936], [-1.7109437408284545, 1.346426198670054], [-1.1613533587118596, 1.691221900240261], [-0.617473031398015, 1.9485431332596885], [-0.0596613607079125, 1.9706957652094546], [0.3409394194587236, 1.8274162180622462], [0.5805226059000592, 1.460388179450877], [0.7598861283732918, 1.068008687857749], [0.9354429476446907, 0.6173128838974343], [1.0526834545489032, 0.17042378313895357], [1.1718273130540329, -0.24730716143593412], [1.17433854682479, -0.6574246996071544], [1.118533468228361, -1.0637355345765411]], "left_eyebrow": [[-1.5127061125288455, -1.4483422095832097], [-1.1431668401467192, -1.6188765613130944], [-0.7019877941909891, -1.5891105229596612], [-0.3134150057996945, -1.4680633128536147], [0.10431593877519318, -1.348919454348485]], "right_eyebrow": [[0.4561171645792273, -1.3426015173758943], [0.6836723592452214, -1.4453027987340086], [0.8820693977276226, -1.5461007284912058], [1.080466436210024, -1.646898658248403], [1.2066158189489804, -1.508721283734105]], "right_eye": [[0.4497992276066365, -0.9908002915718602], [0.6716443674698802, -1.1809760414807535], [0.8757514607550319, -1.1942995026871717], [1.0019008434939884, -1.0561221281728737], [0.8928816251632835, -0.9318760970348337], [0.686871180277215, -0.9477107920120088]], "transform": {"angle": 0.06518433628519528, "center": [118.43055555555556, 164.83333333333334], "scale": 34.22288594008257}}], "url": "http://i.imgur.com/ByYnQne.jpg", "embedding": [[-0.07586882263422012, 0.06340279430150986, 0.08880384266376495, -0.003071911633014679, -0.06318926811218262, -0.025980159640312195, 0.03933136165142059, -0.08269795775413513, 0.1575581282377243, -0.011203356087207794, 0.28706416487693787, 0.0032861270010471344, -0.13281863927841187, -0.1995629221200943, 0.07174552232027054, 0.0923432782292366, -0.20861341059207916, -0.13837850093841553, -0.014756565913558006, -0.06689697504043579, 0.046334706246852875, -0.08642029762268066, 0.01921580359339714, 0.04768843948841095, -0.1881805956363678, -0.33791160583496094, -0.1104312390089035, -0.18416419625282288, 0.06516091525554657, -0.07195621728897095, -0.02361786924302578, -0.052055615931749344, -0.2270939201116562, -0.11791015416383743, -0.05624864250421524, 0.028299009427428246, 0.045512862503528595, -0.11947599053382874, 0.08462192863225937, -0.045185208320617676, -0.13686008751392365, 0.00021468009799718857, -0.006023865193128586, 0.2791852653026581, 0.16178345680236816, -0.0027761049568653107, 0.031026873737573624, 0.04369572177529335, 0.07772840559482574, -0.2241820991039276, 0.08216191828250885, 0.1031331792473793, 0.11505090445280075, 0.007299821823835373, 0.05876706540584564, -0.052111584693193436, 0.005419770255684853, 0.07510948926210403, -0.21152251958847046, 0.03256230056285858, 0.06377533078193665, 0.04952302575111389, 0.04675348103046417, -0.08543230593204498, 0.22826358675956726, 0.1233479231595993, -0.05751466006040573, -0.0688079372048378, 0.1098925992846489, -0.09522102028131485, -0.01844017580151558, -0.020192062482237816, -0.1830390989780426, -0.1764543652534485, -0.3131839334964752, 0.09112417697906494, 0.41596028208732605, 0.17142082750797272, -0.15716317296028137, -0.005604647099971771, -0.2376798689365387, 0.057887788861989975, 0.029556475579738617, -0.06689157336950302, -0.02106129564344883, 0.07704947888851166, -0.16187642514705658, 0.10361024737358093, 0.1796836405992508, -0.04956279695034027, -0.016081111505627632, 0.2212340235710144, -0.040896352380514145, -0.07351284474134445, 0.014141688123345375, -0.013662293553352356, -0.03703310340642929, 0.0608539879322052, -0.10930934548377991, 0.022168181836605072, 0.0742727518081665, -0.0631207600235939, 0.06748630106449127, 0.1086379662156105, -0.25014644861221313, 0.036035411059856415, 0.05908753722906113, -0.02263626828789711, 0.01433480903506279, 0.03356309235095978, -0.16711969673633575, -0.06880220770835876, 0.1480739712715149, -0.24586287140846252, 0.18699461221694946, 0.19536806643009186, 0.05770890414714813, 0.12664037942886353, -0.01131339743733406, 0.018889816477894783, -0.08352749049663544, -0.0968998521566391, -0.07452784478664398, -0.00991562195122242, 0.020419878885149956, 0.0008353320881724358, 0.05674770474433899, 0.0769009217619896]]},
"000038": {"url": "http://i.imgur.com/xZIdVfW.jpg", "embedding": [[-0.0929848849773407, 0.17766335606575012, 0.006681997328996658, -0.07815089821815491, -0.15167632699012756, 0.0146271837875247, -0.07927458733320236, -0.12324769794940948, 0.04976724833250046, 0.05863408371806145, 0.2702985405921936, -0.04054317623376846, -0.2147652953863144, -0.031029123812913895, -0.1093219518661499, 0.07234901934862137, -0.19898484647274017, -0.12582947313785553, -0.15422594547271729, -0.11077827960252762, -0.01851048320531845, 0.05633844435214996, 0.058197133243083954, 0.11551153659820557, -0.11925780773162842, -0.23886731266975403, -0.053294118493795395, -0.1316920816898346, 0.10345792770385742, -0.20331834256649017, -0.007757140323519707, 0.004507327452301979, -0.15335650742053986, -0.05425182729959488, 0.006287362426519394, -0.015092579647898674, -0.09723788499832153, -0.059839535504579544, 0.2468004673719406, 0.0686567947268486, -0.14077728986740112, 0.1375327706336975, 0.05621398985385895, 0.39743557572364807, 0.3252929449081421, 0.04252257198095322, -0.028829511255025864, -0.053515173494815826, 0.11579970270395279, -0.284803181886673, 0.09147131443023682, 0.21553382277488708, 0.16368697583675385, 0.011859823018312454, 0.1568884402513504, -0.1865309327840805, -0.023073235526680946, 0.12653714418411255, -0.10613999515771866, 0.12539279460906982, -0.006183888763189316, -0.01420702412724495, 0.06127549707889557, -0.12679405510425568, 0.1537642627954483, 0.06780481338500977, -0.107791006565094, -0.07213416695594788, 0.057794537395238876, -0.1251797080039978, -0.08702307939529419, 0.1715797781944275, -0.11447983235120773, -0.18618008494377136, -0.2902772128582001, 0.03914619982242584, 0.43474438786506653, 0.16247427463531494, -0.24365730583667755, -0.011412061750888824, -0.01374821923673153, -0.05380824953317642, 0.06771289557218552, 0.02222631871700287, -0.19333906471729279, -0.08172844350337982, -0.14594897627830505, 0.00295102596282959, 0.16538062691688538, -0.003440556116402149, -0.08179447054862976, 0.25628504157066345, -0.00388210266828537, -0.006559534929692745, 0.09697657823562622, 0.08725237101316452, -0.1241021677851677, -0.024267755448818207, -0.0914546549320221, -0.019073810428380966, 0.019452745094895363, -0.15744221210479736, -0.026980090886354446, 0.06135298311710358, -0.16501377522945404, 0.09182843565940857, 0.007253224030137062, 0.0054768286645412445, -0.09883706271648407, -0.012408856302499771, -0.09042699635028839, 0.05188307538628578, 0.2390889823436737, -0.3306853473186493, 0.21090497076511383, 0.20272621512413025, -0.0063005480915308, 0.08162203431129456, 0.11098018288612366, -0.015606861561536789, -0.061701949685811996, 0.01846339739859104, -0.03239813446998596, -0.08961474895477295, 0.02521926537156105, -0.07236461341381073, 0.08368770033121109, 0.04033617675304413]], "landmarks": [{"top_lip": [[-0.9465414497909811, 0.5718806985686556], [-0.5554637518015807, 0.5130529742102301], [-0.19465458260534552, 0.5142595623711042], [0.04568376549866554, 0.5751988160110595], [0.2863237606428951, 0.545935777351956], [0.5869980683064244, 0.5469412674860178], [0.8575043961901946, 0.5779136393730262], [0.7370335750979705, 0.6376463048521074], [0.2860221136026766, 0.6361380696510147], [0.045382118458447016, 0.6654011083101182], [-0.22502366041191696, 0.6043613056567568], [-0.8263722757389755, 0.6023503253886333]], "left_eye": [[-1.1514832694181119, -1.0825318366745984], [-0.9707770377797756, -1.1721308348932202], [-0.7302375916489523, -1.1713264427859709], [-0.5501346540910533, -1.080520856406475], [-0.7607072184689299, -1.0511572687339652], [-0.9712797828468065, -1.0217936810614554]], "bottom_lip": [[0.8575043961901946, 0.5779136393730262], [0.5557240493791973, 0.9076498876688467], [0.28451387840158393, 1.0871495311463084], [0.013806452491001446, 1.1163120207920059], [-0.25669987539276873, 1.0853396489049973], [-0.617006299521973, 0.9337959069123587], [-0.9465414497909811, 0.5718806985686556], [-0.8263722757389755, 0.6023503253886333], [-0.2559960322989255, 0.874867633540527], [0.014510295584844679, 0.9058400054275355], [0.2852177214954272, 0.8766775157818382], [0.7370335750979705, 0.6376463048521074]], "nose_bridge": [[0.05141505926281758, -1.1386447376710573], [0.11034333263464932, -0.7776344704480098], [0.13920417524012813, -0.4167247522383685], [0.1679644688322008, -0.025747603262374328]], "nose_tip": [[-0.34348350123601745, 0.06274535580877945], [-0.10314515313200645, 0.1236846094487347], [0.13709264595859844, 0.21469129385504288], [0.34776575934988124, 0.1552602754161803], [0.5283714419748112, 0.09572870796391149]], "chin": [[-1.933839763423725, -0.9047415264250416], [-1.8753136861055177, -0.42346153613658233], [-1.8467544905402575, 0.02765047437211773], [-1.7881278642086444, 0.47886303389422397], [-1.6092315148116194, 0.9304777894699549], [-1.3400323241021295, 1.3523267613195513], [-0.9805302920801747, 1.7444099494430136], [-0.5605917514852957, 2.0464919432942295], [-0.019679644731161464, 2.138504117834599], [0.5219363051168159, 2.0200442770104985], [0.9139189442268718, 1.6906096757548967], [1.2459678198310344, 1.3008391149397769], [1.517881833902491, 0.9108674560978443], [1.6698277719487544, 0.43029130890322836], [1.7314708686825528, -0.020519054565253176], [1.7630465346499986, -0.47142996704714085], [1.7947227496308502, -0.9524083102953814]], "right_eye": [[0.5321923044842459, -1.0468336611574998], [0.7429659668889349, -1.1363321103627153], [0.9534379822534054, -1.135628267268872], [1.1335409198113044, -1.0448226808893761], [0.9530357861997807, -1.01535854420346], [0.7425637708353102, -1.0160623872973034]], "right_eyebrow": [[0.35329595508722095, -1.4984484167332308], [0.7144067713236747, -1.5874441208714154], [1.0451485097535567, -1.5863380817239474], [1.3454206213634614, -1.465062868524474], [1.5249202648409232, -1.1938526975468604]], "left_eyebrow": [[-1.6018914368329684, -1.2644446564738088], [-1.3905144803478426, -1.5343476902771418], [-1.0594710948777417, -1.6234439434287327], [-0.698863023708319, -1.5621024937351524], [-0.3383555015523025, -1.4706936132752197]], "transform": {"center": [124.41666666666667, 165.875], "angle": -0.00334410476813936, "scale": 33.258392320168184}}]},
"000040": {"url": "http://i.imgur.com/CDMPJq7.jpg", "landmarks": [{"right_eyebrow": [[0.3644977350226659, -1.400094020367373], [0.7031142667224366, -1.5285380852274308], [1.0735220048562277, -1.5955318024260732], [1.4138441887212991, -1.6002223458806504], [1.6948480901315814, -1.4184297811443562]], "top_lip": [[-0.6584111101138056, 0.7182138869308523], [-0.3494537196414295, 0.6830113761662302], [-0.13288505718183857, 0.6800264848769539], [0.05359805100903258, 0.739344767331743], [0.238375507034603, 0.6749095283810517], [0.4244322021841489, 0.7032894304844707], [0.6723656580364352, 0.7308165065052392], [0.5490385496722799, 0.7634605390219102], [0.20914277884853363, 0.7990894628278574], [0.054877290133008155, 0.8321599083858534], [-0.13117940501653783, 0.8037800062824345], [-0.5028663822743046, 0.7779585824269667]], "right_eye": [[0.5251594193580693, -0.9690887606548172], [0.7696815708797539, -1.1890687274450096], [1.0167622006493897, -1.223418412126981], [1.2659748956256516, -1.1030761950521022], [1.0820502656827315, -0.9767641953986707], [0.8040312555617256, -0.9419880976753737]], "chin": [[-2.1398054212730138, -1.2418010426145523], [-2.0706796388677455, -0.7167014027239103], [-2.001553856462477, -0.19160176283326846], [-1.9324280740572086, 0.3334978770573734], [-1.7399751832877846, 0.8259534844313444], [-1.3941096298854858, 1.223461885544579], [-0.9562817615117268, 1.5578142868310978], [-0.48794192582792295, 1.8608018947249212], [-0.023013394474720585, 1.9162824598077837], [0.40927110436181086, 1.8484359165264908], [0.8381442988677408, 1.5330823304342367], [1.17334952623691, 1.1571312227632178], [1.4462515798620137, 0.7510945608234797], [1.5941208729576613, 0.25394840999493157], [1.6801134053505684, -0.24234491475096606], [1.797044318094846, -0.7390646525381889], [1.8516720570950582, -1.2658699445941317]], "nose_bridge": [[0.05980447496354169, -1.0555077060890496], [0.06492143145944397, -0.6842471418726082], [0.07046480099667143, -0.28204819730479647], [0.07558175749257372, 0.08921236691164512]], "left_eyebrow": [[-1.708800161560458, -1.4024627269499554], [-1.3706100429020127, -1.5618451721613833], [-0.999349478685571, -1.5669621286572855], [-0.627236088386479, -1.5102023244504477], [-0.28520825235610686, -1.391139346499544]], "left_eye": [[-1.209095532483959, -1.068963151746087], [-0.9942325221896687, -1.1957015644408437], [-0.6844223056346422, -1.1690273145027257], [-0.49580713223714507, -0.9550171302910859], [-0.7428877620067809, -0.9206674456091142], [-1.0217595982104375, -0.9477681085885578]], "nose_tip": [[-0.26303477420719695, 0.21765643177170274], [-0.10706363332637074, 0.30833950761918716], [0.048481094513130304, 0.36808420311530154], [0.2332585505387007, 0.30364896416461007], [0.35573283282020574, 0.20912817094519892]], "bottom_lip": [[0.6723656580364352, 0.7308165065052392], [0.4587818868661206, 0.9503700602541065], [0.24349246353050527, 1.0461700925974933], [0.026923801070914355, 1.0491549838867695], [-0.1277681006859363, 1.0512870490933954], [-0.3765543826208729, 0.9618832123698867], [-0.6584111101138056, 0.7182138869308523], [-0.5028663822743046, 0.7779585824269667], [-0.131605818057863, 0.7728416259310644], [0.05445087709168296, 0.8012215280344833], [0.20871636580720845, 0.7681510824764873], [0.5490385496722799, 0.7634605390219102]], "transform": {"center": [123.59722222222223, 164.08333333333334], "angle": 0.013781782978267338, "scale": 32.319243004194846}}], "embedding": [[-0.08782172203063965, 0.09908975660800934, 0.06520165503025055, -0.09248742461204529, -0.19729681313037872, -0.05075441300868988, -0.08978702872991562, -0.05828753113746643, 0.12975528836250305, -0.14649584889411926, 0.1628243625164032, -0.041060544550418854, -0.17936237156391144, 0.059688299894332886, -0.1261177659034729, 0.16056472063064575, -0.21480682492256165, -0.19061677157878876, 0.05643397569656372, -0.04368174076080322, 0.0678785964846611, 0.0603625513613224, 0.0038724690675735474, 0.07716599106788635, -0.17354631423950195, -0.2623629868030548, -0.034959644079208374, -0.06894972920417786, 0.010777337476611137, -0.15205815434455872, -0.027960728853940964, 0.027159417048096657, -0.1819675862789154, 0.04891403019428253, 0.07279133796691895, 0.11902183294296265, -0.04886537045240402, -0.14172659814357758, 0.22348059713840485, 0.18405722081661224, -0.22427348792552948, 0.002152077853679657, 0.057716622948646545, 0.36924514174461365, 0.2944784164428711, -0.017367098480463028, 0.0004042296204715967, -0.08937057107686996, 0.16404490172863007, -0.28742578625679016, 0.0046676285564899445, 0.16286711394786835, 0.0827731341123581, -0.014529962092638016, 0.05569705739617348, -0.14406821131706238, 0.04237982630729675, 0.166976198554039, -0.22618506848812103, 0.08206544816493988, 0.0968935489654541, -0.11009819805622101, 0.0010507553815841675, -0.050921693444252014, 0.30595529079437256, 0.10735873878002167, -0.12059935927391052, -0.14027148485183716, 0.22905071079730988, -0.19723133742809296, -0.14202168583869934, 0.06792805343866348, -0.08119897544384003, -0.1755218654870987, -0.19012139737606049, -0.05135847255587578, 0.3093351423740387, 0.20913375914096832, -0.15403924882411957, 0.1252109408378601, -0.016602257266640663, 0.019934814423322678, 0.06279323995113373, 0.22995832562446594, -0.03557862341403961, 0.06261790543794632, -0.09324832260608673, -0.030648820102214813, 0.23925597965717316, -0.0020734407007694244, -0.024120964109897614, 0.2554570734500885, -0.01397278718650341, -0.05512580648064613, 0.09204710274934769, -0.075127013027668, -0.18253137171268463, -0.05334950238466263, -0.16917599737644196, -0.1853434443473816, -0.06318915635347366, -0.0859842374920845, -0.006389595568180084, 0.1776416301727295, -0.24639122188091278, 0.1023213192820549, -0.11726628243923187, -0.07936449348926544, -0.08221438527107239, -0.09532385319471359, -0.0036383531987667084, 0.022096291184425354, 0.10818790644407272, -0.28251323103904724, 0.16297805309295654, 0.15231698751449585, 0.0848478227853775, 0.1466565877199173, 0.11471056193113327, -0.015304727479815483, 0.05036129057407379, -0.032041750848293304, -0.12073028087615967, -0.059186901897192, -0.028728675097227097, -0.0776568278670311, 0.1321336030960083, -0.012934142723679543]]},
"000041": {"url": "http://i.imgur.com/DlF4sIE.jpg", "embedding": [[-0.18416233360767365, 0.18683771789073944, 0.05169786512851715, -0.055502891540527344, -0.09354718029499054, 0.001363561488687992, -0.025051763281226158, -0.09123221039772034, 0.1559399962425232, -0.03429520130157471, 0.22506415843963623, -0.06901481747627258, -0.2212834656238556, 0.09588755667209625, -0.1625295728445053, 0.14716506004333496, -0.2299269139766693, -0.11487527191638947, -0.1917424201965332, -0.09469325840473175, 0.003425203263759613, 0.08755060285329819, -0.03376463055610657, 0.06758907437324524, -0.17796441912651062, -0.21864622831344604, -0.035609789192676544, -0.10287639498710632, 0.0799722969532013, -0.14275389909744263, -0.01354670338332653, -0.021373046562075615, -0.130335733294487, -0.038217343389987946, 0.023097697645425797, 0.06296245008707047, -0.06993327289819717, -0.07617753744125366, 0.21748094260692596, 0.028691833838820457, -0.1870528608560562, 0.13979272544384003, 0.030900821089744568, 0.4073755145072937, 0.15527726709842682, 0.008956095203757286, -0.016184458509087563, -0.10194707661867142, 0.08465569466352463, -0.26251474022865295, 0.10859765112400055, 0.19192932546138763, 0.08898898214101791, 0.06473876535892487, 0.1421380639076233, -0.1751508116722107, -0.003865904174745083, 0.17359019815921783, -0.0964060053229332, 0.09822903573513031, 0.13621613383293152, 0.03314758092164993, 0.06359079480171204, -0.10800531506538391, 0.11310762912034988, 0.09311537444591522, -0.10560066998004913, -0.0739511176943779, 0.12300164997577667, -0.1127568781375885, -0.038792453706264496, 0.05953981354832649, -0.06358306109905243, -0.1850973218679428, -0.24837765097618103, 0.043775077909231186, 0.41627559065818787, 0.17570537328720093, -0.17528055608272552, -0.003937710076570511, -0.03538648039102554, -0.025632638484239578, 0.0815153568983078, -0.0007992889732122421, -0.2112056314945221, 0.005246762186288834, -0.08681033551692963, 0.05393056198954582, 0.21517789363861084, 0.06541183590888977, -0.029171058908104897, 0.22693802416324615, 0.04305866360664368, -0.16127514839172363, 0.07989435642957687, 0.029705055058002472, -0.13437125086784363, -0.06125909090042114, -0.10209488868713379, 0.0034127309918403625, 0.05875782296061516, -0.17187324166297913, -0.04036416485905647, 0.10903884470462799, -0.22731521725654602, 0.14796409010887146, 0.013931570574641228, -0.0152264554053545, -0.042062096297740936, 0.0911315530538559, -0.11563347280025482, 0.04375261068344116, 0.2650417983531952, -0.2288668155670166, 0.1877766251564026, 0.18725238740444183, 0.040710654109716415, 0.08595561236143112, 0.11705759167671204, 0.009950053878128529, -0.04433205723762512, 0.06913898140192032, -0.10197298228740692, -0.12785668671131134, 0.044725097715854645, -0.05774810165166855, 0.1035982146859169, 0.08018101006746292]], "landmarks": [{"right_eye": [[0.23034912150646641, -1.0027749797991725], [0.3780062813636233, -1.1304340376803623], [0.6228609861553713, -1.1092733344854357], [0.8700408933850374, -1.0271896053973124], [0.6286739922501665, -0.9569657697524427], [0.4154434016239762, -0.9488275612197294]], "left_eye": [[-0.9060276672693548, -1.2034508382704767], [-0.8485924450330347, -1.2971605795481906], [-0.6646607661344839, -1.2736746739153464], [-0.5370017082532943, -1.1260175140581896], [-0.6893092729862874, -1.1202045079633944], [-0.8416168377192804, -1.114391501868599]], "transform": {"center": [137.19444444444446, 163.58333333333334], "scale": 32.804426549393725, "angle": 0.03814771802124735}, "bottom_lip": [[0.8098127062034721, 0.5919209856482506], [0.3680038278509605, 1.0053596722384184], [-0.021020233141067303, 1.2032425657644774], [-0.26471233671385624, 1.2125433755161499], [-0.4205077051037265, 1.1269718427711495], [-0.5504919654228343, 0.9183916570207951], [-0.6546651176711795, 0.5868028182650875], [-0.5914168893400642, 0.6454006417203666], [-0.4286459136364398, 0.9137412521449589], [-0.27285054524656954, 0.9993127848899596], [-0.059619954620379216, 0.9911745763572463], [0.6891292556360368, 0.6270329034706855]], "nose_tip": [[-0.8548732136351569, 0.13685573137986248], [-0.6967526428073686, 0.2833502900180604], [-0.48003424852430115, 0.36659662032514295], [-0.20936843566179075, 0.26474867051471573], [0.06245997841967875, 0.19336223365088703]], "left_eyebrow": [[-1.0746116490677744, -1.6240990134280622], [-1.049963142215971, -1.7775691793800144], [-0.896492976264019, -1.752920672528211], [-0.7395350066551898, -1.6368876268366117], [-0.6118759487740001, -1.489230466979455]], "top_lip": [[-0.6546651176711795, 0.5868028182650875], [-0.5632805788313837, 0.5833150146082103], [-0.4402719258260302, 0.6091261226789728], [-0.3161006716017177, 0.6653987436963339], [-0.10403268219448636, 0.6267990222170219], [0.32359110027685334, 0.640984118098194], [0.8098127062034721, 0.5919209856482506], [0.6891292556360368, 0.6270329034706855], [-0.07008336559101061, 0.7170209598378587], [-0.31377546916379956, 0.7263217695895311], [-0.4367841221691531, 0.7005106615187687], [-0.5914168893400642, 0.6454006417203666]], "right_eyebrow": [[-0.27447410392349714, -1.441096054494807], [0.11687515950644872, -1.5780559221276689], [0.5410111383209112, -1.6552553650862927], [0.9428238127214886, -1.5180616161997675], [1.2872012648857458, -1.2871581260355278]], "nose_bridge": [[-0.4432919669755803, -1.0685822918218693], [-0.5207252911878677, -0.6995563328058088], [-0.6274575271277946, -0.2989062596241905], [-0.7037282501211228, 0.10058121233846865]], "chin": [[-0.8369664328434442, -0.9925454500822045], [-0.882775642890174, -0.5942205793385044], [-0.898123339990305, -0.1970583098137633], [-0.7904623840850825, 0.22591506778174025], [-0.6535025164522206, 0.6172643312116861], [-0.4849185346538008, 1.0379125063692716], [-0.37842017996753746, 1.4304243710181765], [-0.270759224062315, 1.85339774861368], [0.04199411393638453, 2.0550023270502797], [0.5305409223009215, 2.0668622204935336], [1.101171459753582, 1.8315422067071216], [1.6401778830406846, 1.56692328119307], [2.113610875558754, 1.1827835063305419], [2.5226330385267492, 0.7095843950661359], [2.6528511800995203, 0.12500264298596697], [2.62843655450138, -0.514689128892604], [2.6040219289032405, -1.154380900771175]]}]},
"000042": {"embedding": [[-0.09611489623785019, 0.06550261378288269, 0.0904214084148407, -0.1648351103067398, -0.0811580941081047, -0.00382057623937726, 0.009609912522137165, -0.14744533598423004, 0.23119157552719116, -0.22189968824386597, 0.1610739529132843, -0.10519722104072571, -0.26269420981407166, -0.0225900337100029, 0.017018858343362808, 0.20768550038337708, -0.24697692692279816, -0.22562254965305328, -0.1616915464401245, -0.07759556919336319, 0.0036324821412563324, 0.06788357347249985, 0.038949280977249146, 0.1293095052242279, -0.21150796115398407, -0.23631280660629272, -0.023739205673336983, -0.11864297091960907, -0.037487275898456573, -0.11746622622013092, 0.1483946442604065, 0.07891147583723068, -0.1854572296142578, 0.06135399639606476, -0.053676169365644455, 0.08413588255643845, -0.12922964990139008, -0.2794520854949951, 0.15687954425811768, -0.036522116512060165, -0.2119569629430771, -0.05154874920845032, 0.020165175199508667, 0.2152121663093567, 0.15366119146347046, -0.09593624621629715, 0.0251472145318985, -0.06864383816719055, 0.11495061218738556, -0.4704973101615906, -3.166496753692627e-05, 0.10626967251300812, -0.06536442041397095, 0.1019415408372879, 0.11756874620914459, -0.21868576109409332, 0.10916359722614288, 0.15762709081172943, -0.20623964071273804, 0.13651372492313385, 0.07195988297462463, -0.11583328992128372, 0.03880003094673157, -0.030009128153324127, 0.2151399850845337, 0.15014274418354034, -0.1579376757144928, -0.06013495847582817, 0.09805561602115631, -0.1376180499792099, -0.02745433896780014, 0.11327247321605682, -0.08837880939245224, -0.2660699486732483, -0.19087059795856476, 0.01471738051623106, 0.34404999017715454, 0.17531637847423553, -0.12100247293710709, 0.014575030654668808, -0.039244867861270905, 0.043363433331251144, -0.008142948150634766, 0.14923661947250366, -0.03218827769160271, -0.08067380636930466, -0.12491928786039352, 0.09855037927627563, 0.227146178483963, -0.051505208015441895, -0.014125863090157509, 0.3976230323314667, -0.001184716820716858, -0.16741010546684265, -0.013719847425818443, 0.0007237941026687622, -0.1128300353884697, 0.015891656279563904, -0.05911631882190704, 0.0380665622651577, 0.10662558674812317, -0.04414372146129608, -0.06077660247683525, 0.03559019789099693, -0.10678954422473907, 0.19743183255195618, -0.04943238943815231, -0.06898483633995056, -0.017267638817429543, -0.1029331162571907, -0.11887369304895401, 0.02584005706012249, 0.1874372959136963, -0.20780031383037567, 0.17563195526599884, 0.16649100184440613, 0.1132502481341362, 0.21660664677619934, 0.051128607243299484, 0.08936982601881027, 0.03151994198560715, -0.021821606904268265, -0.09705182909965515, -0.05134443938732147, 0.09799101948738098, 0.013032647781074047, 0.018805500119924545, 0.0387515053153038]], "landmarks": [{"nose_tip": [[-0.24129935381036965, 0.15382305340569088], [-0.0909975799117174, 0.2121803366621186], [0.08954697217732388, 0.3001723200734066], [0.26826729015977907, 0.20853186844894644], [0.3874141688147492, 0.14743823403263961]], "right_eye": [[0.5258584210205919, -0.9618153104432964], [0.7333013221046144, -1.1735147577760197], [1.002749974658237, -1.176251108935899], [1.213537304937667, -1.0586244253697505], [1.0351210259729764, -0.9370452345726654], [0.7659764124371183, -0.9043701442401616]], "nose_bridge": [[0.0755611773601639, -1.07700968186733], [0.10884434572819643, -0.7479875899862225], [0.11249281394136859, -0.388722719914726], [0.14608002132716547, -0.029761888860993853]], "transform": {"angle": 0.010155022382572378, "center": [123.11111111111111, 165.94444444444446], "scale": 33.39981795618313}, "left_eye": [[-1.2111965290271698, -1.0040585257582137], [-0.9732068107349939, -1.156184533763452], [-0.7034541191636072, -1.1289821457507063], [-0.49205871084864816, -0.9514779838393085], [-0.730960546194117, -0.8891681933519443], [-1.0004091987477395, -0.8864318421920652]], "bottom_lip": [[0.7808743243075713, 0.562628075218449], [0.5144660619315924, 0.8647518181045752], [0.2761723046216521, 0.9869390869371888], [0.06720920844880786, 1.0489448384067888], [-0.17260474394995415, 1.0214384113762789], [-0.4732082917472586, 0.9047238448634235], [-0.8055748128237739, 0.6086808823325841], [-0.6552730389251216, 0.6670381655890117], [-0.14540235593720857, 0.751685719804892], [0.06447285728892874, 0.7794961858531664], [0.27343595346177296, 0.7174904343835664], [0.6317887064799765, 0.6240257486525203]], "left_eyebrow": [[-1.604960723537756, -1.4491871061166477], [-1.3070935269003308, -1.6019211921574148], [-0.9481326958465988, -1.6355083995432114], [-0.6178944478944339, -1.5490366112207452], [-0.2571093827341157, -1.402991383570794]], "chin": [[-2.1396014823963, -1.0245720553801436], [-2.1044940799216816, -0.5159175284632879], [-2.0092051600840493, 0.02206765959066386], [-1.9142202792641811, 0.5301141084719908], [-1.6997844807715783, 1.0070056621096357], [-1.3964445818143951, 1.3931688811761136], [-1.003896543374866, 1.7185425048440488], [-0.5517750656078519, 2.0133693113038307], [-0.07184312179256352, 2.0983209045374753], [0.4059605488983744, 1.9737013235627467], [0.7921237679648522, 1.6703614246055631], [1.1477401698231764, 1.3074480863208946], [1.4428710153007227, 0.8852653477265052], [1.588004125897381, 0.43466406504831284], [1.7025904192858858, -0.07551065695736463], [1.7872379735017663, -0.5853813399452777], [1.8419467885450216, -1.0949479839154266]], "right_eyebrow": [[0.43178565725401696, -1.380045541806749], [0.7296528538914422, -1.532779627847516], [1.0281281285643964, -1.6256362355430338], [1.3574542594632681, -1.6289806647384417], [1.5984843679330876, -1.4817192810174329]], "top_lip": [[-0.8055748128237739, 0.6086808823325841], [-0.44661398177004175, 0.5750936749467872], [-0.147530629061559, 0.5421145455965191], [0.062344584164578304, 0.5699250116447934], [0.2716117193551869, 0.5378579993478182], [0.5111216327361846, 0.5354256872057035], [0.7808743243075713, 0.562628075218449], [0.6317887064799765, 0.6240257486525203], [0.27343595346177296, 0.7174904343835664], [0.06416881827116439, 0.7495574466805416], [-0.14540235593720857, 0.751685719804892], [-0.6552730389251216, 0.6670381655890117]]}], "url": "http://i.imgur.com/0ZzIM8G.jpg"},
"000043": {"url": "http://i.imgur.com/H17JhKv.jpg", "landmarks": [{"left_eyebrow": [[-1.5881519205072294, -1.4909235660708813], [-1.3145630708240423, -1.6401556829971466], [-0.9813751675631023, -1.6678448629490807], [-0.6488907132478098, -1.60472856464309], [-0.3473782006308063, -1.451041271061057]], "right_eyebrow": [[0.3487971326799504, -1.4456481624777593], [0.682688484886538, -1.564142820687618], [0.985842378376719, -1.6223349763740762], [1.3187957986557766, -1.6197556635733685], [1.589805335538256, -1.4360343602205765]], "left_eye": [[-1.168144749680367, -1.0033449202822606], [-0.9550928855024634, -1.1530460031722911], [-0.6826764507286891, -1.1509356563353486], [-0.4421698895807338, -0.9371803432117972], [-0.7150552903182732, -0.8787537045434567], [-0.9874717250920475, -0.8808640513803992]], "nose_bridge": [[0.013029916618302734, -1.0850055622467678], [0.04071909657023674, -0.7518176589858275], [0.03813978376952916, -0.41886423870677], [0.03556047096882157, -0.08591081842771241]], "bottom_lip": [[0.8779196424413712, 0.5865615456231129], [0.6022204459212416, 1.0082100973231527], [0.267860127750889, 1.1872417410382947], [-0.005025272986650378, 1.2456683797066355], [-0.27697274179665976, 1.1830210473644096], [-0.6087537471663047, 1.029099270800494], [-0.8776529372118416, 0.5729615326739275], [-0.7870819419357993, 0.6039334743722166], [-0.24506286817084058, 0.9713760810778009], [-0.003149409131590314, 1.0035204376855025], [0.26973599160594913, 0.945093799017162], [0.7566111884489222, 0.6158921064482245]], "transform": {"angle": -0.0077466127348326305, "scale": 33.03666301845666, "center": [124.84722222222223, 165.84722222222223]}, "nose_tip": [[-0.298799847201531, 0.09312082528742958], [-0.14792634940208804, 0.15483022570212532], [0.032981158168113985, 0.24704260185134516], [0.1850270708769695, 0.1574095385028329], [0.36710699335658414, 0.09827945088884477]], "top_lip": [[-0.8776529372118416, 0.5729615326739275], [-0.5737955947760129, 0.42396389872954454], [-0.24084217449695544, 0.42654321153025215], [0.03133977729493643, 0.45892205111983636], [0.24345370954531012, 0.43029493924037227], [0.5764071298243676, 0.4328742520410799], [0.8779196424413712, 0.5865615456231129], [0.7566111884489222, 0.6158921064482245], [0.2727842703704217, 0.5516033932328213], [0.030401845367406394, 0.5799960221304027], [-0.24178010642448547, 0.5476171825408186], [-0.7870819419357993, 0.6039334743722166]], "chin": [[-1.9548910782671662, -1.0397099705638475], [-1.8983403034538857, -0.5246766278051752], [-1.8115210358879634, -0.009408802064620598], [-1.7247017683220414, 0.505859023675934], [-1.5468425395163117, 0.9915618056094946], [-1.2472058907543684, 1.3873970412126606], [-0.8867977735052595, 1.7534327500269498], [-0.46514922180521956, 2.0291319465470794], [-0.011825279461243107, 2.1234546695332415], [0.44314004375591093, 2.005897943250913], [0.8692437721117184, 1.706495777470852], [1.205010988173366, 1.3458531772398605], [1.480944667675378, 0.8939361327871791], [1.6358043761668237, 0.44108115640696766], [1.7303615821348686, -0.042511278689650364], [1.825153271084796, -0.55637220653891], [1.9199449600347234, -1.0702331343881697]], "right_eye": [[0.46588489299851416, -0.930145853755322], [0.7096742158928245, -1.1401494391687532], [0.9820906506665988, -1.1380390923318107], [1.1927976850256776, -0.985055247695425], [0.9802147868115388, -0.8958911503106778], [0.7077983520377645, -0.8980014971476203]]}], "embedding": [[-0.13478921353816986, 0.06466294080018997, 0.023594200611114502, -0.04790177568793297, -0.14793497323989868, 0.013445102609694004, -0.023541128262877464, -0.13676291704177856, 0.2028353363275528, -0.17954669892787933, 0.11668910831212997, -0.04376756772398949, -0.2564381957054138, 0.2249859720468521, -0.12948200106620789, 0.12044721841812134, -0.16108539700508118, -0.21712803840637207, -0.013008205220103264, -0.1213919147849083, 0.030374296009540558, 0.03343974053859711, -0.051352307200431824, 0.059022434055805206, -0.1366974413394928, -0.29698193073272705, -0.0977686271071434, -0.005745332688093185, -0.035206738859415054, -0.05120573192834854, 0.15052776038646698, 0.07515046000480652, -0.19699862599372864, 0.11836972832679749, 0.04890415072441101, 0.09358977526426315, 0.01573309302330017, -0.09191805124282837, 0.2631627321243286, 0.027642827481031418, -0.2293194830417633, -0.06744862347841263, 0.09348517656326294, 0.3067663908004761, 0.13309746980667114, -0.023373138159513474, -0.03421550989151001, -0.0686575248837471, 0.10160808265209198, -0.33942797780036926, 0.059206243604421616, 0.1566339135169983, 0.062268249690532684, 0.08571425080299377, 0.0820578783750534, -0.17344564199447632, 0.010959547944366932, 0.07193462550640106, -0.10220737010240555, 0.08490224182605743, 0.08199324458837509, -0.058675993233919144, 0.024950802326202393, -0.09708072990179062, 0.3088284432888031, 0.07855485379695892, -0.16468898952007294, -0.13673584163188934, 0.20820201933383942, -0.19655320048332214, -0.07414723932743073, 0.1491728127002716, -0.0537509061396122, -0.2356850951910019, -0.21444682776927948, 0.05529318004846573, 0.44485044479370117, 0.18514473736286163, -0.14654310047626495, 0.055882178246974945, -0.05731813609600067, -0.01060782466083765, 0.05789481848478317, 0.13597500324249268, -0.0017011463642120361, 0.028559017926454544, -0.07407210022211075, 0.030843224376440048, 0.34717217087745667, 0.008181682787835598, -0.14106905460357666, 0.3033074736595154, -0.02195645496249199, -0.015648100525140762, 0.015189731493592262, 0.130944162607193, -0.06425938755273819, -0.06226413697004318, -0.15730682015419006, -0.03884560614824295, 0.04542161524295807, 0.012185553088784218, -0.05427571386098862, 0.16302889585494995, -0.2103816717863083, 0.1717785894870758, -0.09471546113491058, -0.04472467303276062, -0.06026936322450638, 0.04256211221218109, -0.1315315067768097, 0.00786466896533966, 0.19192761182785034, -0.37304437160491943, 0.16087356209754944, 0.11658069491386414, -0.017416134476661682, 0.1611708253622055, 0.019852735102176666, 0.03426652029156685, 0.07717527449131012, -0.07551322132349014, -0.13827936351299286, -0.14153727889060974, 0.00980208907276392, -0.03438364341855049, -0.0017802724614739418, 0.0567304790019989]]},
"000044": {"landmarks": [{"nose_bridge": [[-0.033170114618274675, -1.0881780868978859], [-0.07120932752804277, -0.7034656131437265], [-0.07714792734843373, -0.3182582560712009], [-0.08308652716882471, 0.06694910100132462]], "bottom_lip": [[0.6754509873354443, 0.8492410147871575], [0.44629274584451123, 1.1346823493629903], [0.18750830785603056, 1.2591257351735716], [-0.03769086708797521, 1.2877621650343871], [-0.22979966230587204, 1.2526922520348147], [-0.4841301504290595, 1.0882301200410016], [-0.7038856088710401, 0.763759805918669], [-0.6080786529212747, 0.7973450689631438], [-0.22485082912221288, 0.9316861211410434], [-0.03274203390431606, 0.9667560341406158], [0.1603565279503126, 0.9376247209614343], [0.5470485349779358, 0.8472614815136938]], "nose_tip": [[-0.40656707465442554, 0.22250333326455107], [-0.24705377584427174, 0.2891789760351349], [-0.05543986394474082, 0.3563495021240846], [0.13815358122825377, 0.2951175758555259], [0.33174702640124837, 0.23388564958696711]], "transform": {"scale": 31.148351657138942, "center": [125.55555555555556, 163.875], "angle": -0.015415410162291972}, "top_lip": [[-0.7038856088710401, 0.763759805918669], [-0.44658582083765724, 0.7356182593762192], [-0.22138664589365148, 0.7069818295154034], [-0.02977273399412058, 0.7741523556043532], [0.163820711178874, 0.7129204293357944], [0.4201307325755251, 0.7489801089720989], [0.6754509873354443, 0.8492410147871575], [0.5470485349779358, 0.8472614815136938], [0.19295202435805564, 0.9060189911904231], [-0.03224715058595015, 0.9346554210512389], [-0.22435594580384696, 0.8995855080516663], [-0.6080786529212747, 0.7973450689631438]], "right_eye": [[0.47895504485666157, -0.9839581145359], [0.706628636392497, -1.1730976098436012], [0.963433541107514, -1.1691385432966739], [1.1866531827780562, -1.0693725207999811], [0.9920699709683296, -0.9439393683526682], [0.7352650662533127, -0.9478984348995955]], "left_eyebrow": [[-1.5354654466802429, -1.5287455730229866], [-1.3072969718260412, -1.749985681420065], [-1.0174016873849152, -1.809732957733526], [-0.697385323127876, -1.7405828983711127], [-0.4109542219153114, -1.5756258830589336]], "chin": [[-1.6994326953556897, -1.3065156979891763], [-1.675745098678533, -0.7603103921513993], [-1.6194620055936335, -0.2457108160846334], [-1.5310782994193568, 0.26938364330049835], [-1.3133023742508396, 0.7222564097803394], [-1.0308303395852025, 1.1440183298075355], [-0.7152679251934562, 1.502073906974343], [-0.3666151310756011, 1.796423141280762], [0.0492081891312038, 1.8991584636876502], [0.4675059259298382, 1.841390720647653], [0.8576621161860228, 1.5263231895742726], [1.1846068469001851, 1.146064665685406], [1.4799458478433363, 0.7332106453887969], [1.6799727761550876, 0.2546707489583355], [1.7515972521093306, -0.22584868074558956], [1.8242114947003052, -0.7705693366282688], [1.8326245111125257, -1.3162797591476798]], "left_eye": [[-1.1561966894281082, -1.13759961613007], [-0.9621083609367476, -1.2309321554880062], [-0.7057983395400965, -1.1948724758517015], [-0.5161639609140293, -0.9992994974052434], [-0.7413631358580351, -0.9706630675444275], [-0.9976731572546863, -1.006722747180732]], "right_eyebrow": [[0.32735987914036235, -1.5642435667365175], [0.6503455433075973, -1.687697185910367], [1.0044420539274774, -1.7464546955870965], [1.324458418184517, -1.677304636224683], [1.5777991396709725, -1.4486412780521158]]}], "embedding": [[0.036550819873809814, 0.08096906542778015, 0.062242574989795685, -0.060595784336328506, -0.10328355431556702, -0.03403573855757713, -0.004550294950604439, -0.16323970258235931, 0.20055769383907318, -0.15919636189937592, 0.28884726762771606, -0.06407755613327026, -0.17672066390514374, -0.0393909253180027, -0.08571470528841019, 0.20632408559322357, -0.16783159971237183, -0.19388709962368011, 0.0399593710899353, -0.04671035334467888, -0.006754901260137558, -0.008451445028185844, 0.0009446442127227783, 0.15032736957073212, -0.09465835243463516, -0.3599175810813904, -0.07969982177019119, -0.12113057076931, 0.07388961315155029, -0.10050421953201294, 0.009133760817348957, 0.17270496487617493, -0.1865634322166443, 0.05706530809402466, 0.02490774542093277, 0.002090715803205967, 0.010549399070441723, -0.054840948432683945, 0.1811971366405487, 0.06276682019233704, -0.24434007704257965, -0.04375307261943817, 0.056272320449352264, 0.2693975865840912, 0.14941535890102386, -0.0011439453810453415, 0.03865322843194008, -0.07934018969535828, 0.017794393002986908, -0.1305149495601654, 0.0009761834517121315, 0.12435802817344666, 0.12487252056598663, -0.01606931909918785, 0.020923437550663948, -0.20771637558937073, -0.057658884674310684, 0.025332367047667503, -0.167979434132576, 0.07298476994037628, 0.013131201267242432, 0.006485404446721077, -0.04311782494187355, -0.06811027973890305, 0.2542876899242401, 0.060062553733587265, -0.1453079730272293, -0.08439691364765167, 0.21842694282531738, -0.2088354080915451, -0.047249797731637955, 0.0917215570807457, -0.13289734721183777, -0.17825348675251007, -0.1990843266248703, -0.08575782179832458, 0.43664079904556274, 0.11660879850387573, -0.2091328501701355, 0.03192763775587082, -0.060873016715049744, -0.029208073392510414, 0.06082358583807945, 0.15459229052066803, -0.016489248722791672, 0.00961286574602127, -0.051455289125442505, -0.024325676262378693, 0.18472571671009064, 3.283657133579254e-05, -0.043479688465595245, 0.22938460111618042, -0.1003154069185257, 0.00450746389105916, -0.03731399402022362, -0.010460931807756424, -0.06184879690408707, 0.026036236435174942, -0.11751905083656311, -0.10684359073638916, -0.12246142327785492, -0.029565587639808655, -0.07140672206878662, 0.1159273236989975, -0.24409589171409607, 0.11790129542350769, 0.05358347296714783, -0.011063605546951294, 0.027716651558876038, 0.17853975296020508, -0.10241790115833282, -0.10812146961688995, 0.1626228243112564, -0.27980729937553406, 0.16265706717967987, 0.18765921890735626, 0.05116468667984009, 0.11106783896684647, 0.0336286835372448, 0.07989774644374847, 0.02365449070930481, -0.14545874297618866, -0.1496061384677887, -0.05480565130710602, 0.022824376821517944, -0.16491076350212097, 0.03642014041543007, -0.03629275783896446]], "url": "http://i.imgur.com/edJtHJ9.jpg"},
"000045": {"url": "http://i.imgur.com/hBHDWAa.jpg", "embedding": [[-0.09245225042104721, 0.07195089757442474, 0.08522453159093857, -0.08135883510112762, -0.06842730194330215, 0.061233729124069214, -0.1277243047952652, -0.14809030294418335, 0.0968487486243248, -0.052012957632541656, 0.17871035635471344, -0.09177732467651367, -0.2929074764251709, 0.12052825838327408, -0.10531638562679291, 0.141799196600914, -0.164107546210289, -0.13423967361450195, -0.01587500236928463, -0.028771957382559776, 0.02448594756424427, -0.001218651421368122, -0.040961164981126785, 0.08358128368854523, -0.12755869328975677, -0.2508073151111603, -0.049905166029930115, -0.024549275636672974, -0.028899308294057846, -0.15296295285224915, -0.11194244027137756, -0.07856859266757965, -0.1666945517063141, 0.06819041818380356, 0.08613838255405426, 0.16246452927589417, -0.07133799046278, -0.2026732861995697, 0.11046867817640305, 0.0004992298781871796, -0.17445982992649078, -0.07766073942184448, 0.10264653712511063, 0.2276771366596222, 0.23832747340202332, 0.011841252446174622, -0.05587415769696236, -0.05006128549575806, 0.07300341129302979, -0.3421909511089325, 0.07469867914915085, 0.12414512038230896, 0.07973361015319824, 0.09282487630844116, 0.08228498697280884, -0.22530482709407806, -0.026544930413365364, 0.14890047907829285, -0.12006809562444687, 0.060209665447473526, 0.015312694013118744, -0.08363305777311325, -0.008266756311058998, -0.10328098386526108, 0.17445676028728485, 0.16804780066013336, -0.13919326663017273, -0.15683703124523163, 0.17631976306438446, -0.17217665910720825, -0.062320586293935776, 0.03170601278543472, -0.05162937194108963, -0.25837284326553345, -0.19037726521492004, -0.022559838369488716, 0.31479600071907043, 0.21756911277770996, -0.23356153070926666, 0.04613855108618736, -0.011713200248777866, -0.0031302757561206818, 0.022730840370059013, 0.09816455841064453, 0.050407394766807556, 0.07714742422103882, -0.1056816428899765, -0.022657491266727448, 0.22449618577957153, -0.06044694036245346, 0.028614919632673264, 0.25577512383461, -0.07415899634361267, -0.08504582196474075, 0.07113510370254517, 0.09925965219736099, -0.11791501939296722, -0.00226442888379097, -0.15857234597206116, -0.13057048618793488, 0.01988675817847252, -0.04608762264251709, 0.020849842578172684, 0.15341563522815704, -0.24608704447746277, 0.1318114548921585, -0.014192832633852959, -0.060626521706581116, 0.03773896396160126, -0.048817846924066544, -0.027653992176055908, -0.04864396154880524, 0.194241002202034, -0.36442166566848755, 0.10911504924297333, 0.20915013551712036, 0.05660922825336456, 0.14804767072200775, -0.018220877274870872, 0.06542838364839554, 0.1142488345503807, -0.033108845353126526, -0.1319011002779007, -0.10309722274541855, -0.08861289173364639, -0.005246999207884073, -0.06956594437360764, 0.053437985479831696]], "landmarks": [{"top_lip": [[-0.8478088893835176, 0.5707017489428664], [-0.602028570854576, 0.4784809932182888], [-0.2947755127139943, 0.5091474851814027], [-0.04897190157081734, 0.5398256234516343], [0.1968142401116832, 0.4783295912257591], [0.5655109220961105, 0.47825971338305306], [0.903500350042512, 0.5703698291900128], [0.7806072792012617, 0.6011178453029503], [0.22757390253173845, 0.6626721090644139], [-0.048942785803023164, 0.6934492409451457], [-0.29474639694620014, 0.6627711026749141], [-0.755628895733852, 0.6014090029808921]], "nose_bridge": [[-0.04928052870943561, -1.0885847219795863], [-0.07993537436543187, -0.7198822168416001], [-0.07986549652272584, -0.3511855348571728], [-0.11052616533228092, -0.013207753217888947]], "right_eyebrow": [[0.31935209858584446, -1.4266265583080173], [0.626576040958632, -1.5495836838384147], [0.9645363531372392, -1.6110971855249665], [1.302508311622964, -1.6111612402141136], [1.5790599388790787, -1.4575900311026315]], "nose_tip": [[-0.4177501077050683, 0.1097493723125085], [-0.26410902075088044, 0.20189442704082114], [-0.0797432102979903, 0.29403365861557496], [0.10458766123354683, 0.20182454919811513], [0.2889243559186428, 0.14034016327935755]], "chin": [[-1.7084155976393585, -1.088270271687409], [-1.6775977036837146, -0.5966805188617316], [-1.6775045332267733, -0.10508494288249516], [-1.6159619157724274, 0.3864989867896235], [-1.4315262274768314, 0.8473349003488047], [-1.1549221918386872, 1.277428620948607], [-0.8168803555102561, 1.646061248243887], [-0.41739489533797935, 1.9839575057333474], [0.043499249756790086, 2.1067690524247737], [0.47363373243150425, 2.0452380812775455], [0.93444635337645, 1.7379034989871402], [1.303073157518171, 1.369136939160007], [1.6102388683553703, 0.9389325786425867], [1.7637751385454992, 0.4780326103942585], [1.7944008684337012, -0.04429351223723901], [1.8250265983219034, -0.5666196348687366], [1.8556523282101054, -1.0889457575002341]], "left_eye": [[-1.1553705746627174, -1.0883750884514682], [-0.9403208027860369, -1.2113147445211891], [-0.6945230147964186, -1.2113613297496597], [-0.479409188230591, -0.9963290273336557], [-0.725206976220209, -0.996282442105185], [-0.9710047642098273, -0.9962358568767143]], "right_eye": [[0.47305724022917955, -0.9965095450939796], [0.6880953657987424, -1.180898648161105], [0.9338873306348018, -1.211669956888278], [1.179714234392214, -1.0580929246232373], [0.9646528162084159, -0.996602715550921], [0.7188550282187978, -0.9965561303224503]], "left_eyebrow": [[-1.5548676811421118, -1.487720792938333], [-1.309093185766729, -1.6106662721616125], [-1.0018459507797064, -1.6107245036972009], [-0.6945870694855658, -1.5493332882353847], [-0.41804126538301006, -1.4264868026226052]], "bottom_lip": [[0.903500350042512, 0.5703698291900128], [0.6270768321646918, 1.0927425370499808], [0.2584150891016174, 1.2771607558849005], [-0.018101599233144187, 1.3079378877656325], [-0.29462993387502345, 1.2772655726489597], [-0.6019237540905169, 1.0315260161949298], [-0.8478088893835176, 0.5707017489428664], [-0.755628895733852, 0.6014090029808921], [-0.29468816541061177, 0.9700183376619369], [-0.018154007615173707, 1.031415376277312], [0.2583626807195879, 1.00063824439658], [0.7806072792012617, 0.6011178453029503]], "transform": {"scale": 32.5470783189331, "angle": 0.00018952663607723068, "center": [125.59722222222223, 165.43055555555554]}}]},
"000047": {"landmarks": [{"left_eyebrow": [[-1.5760577257254105, -1.507838843482722], [-1.3584052840403582, -1.6637119854244415], [-1.1094780863800215, -1.6951407838411738], [-0.8293531539651234, -1.6643666658005931], [-0.5491126897191398, -1.5402304071585005]], "chin": [[-1.6998473888742465, -0.9475119574322023], [-1.6681490161849812, -0.48073976503500393], [-1.6364506434957165, -0.01396757263780556], [-1.6047522708064512, 0.45280461975939285], [-1.4486095545921982, 0.8883020561813063], [-1.1991817189971574, 1.2614425337044597], [-0.8564302534109662, 1.6033467658626903], [-0.45151438197782406, 1.882932549732522], [0.015450363471183517, 2.006837744712444], [0.48218404525801994, 1.944018658489341], [0.9486866633826854, 1.6944752910632148], [1.3217116090747532, 1.3516853148666614], [1.601297392944585, 0.9467694434335195], [1.7874440149921815, 0.4797276767637882], [1.8491077829044285, 0.012839952535504282], [1.9107330402063134, -0.485168485226617], [1.9411990733639992, -1.0142591259122138]], "left_eye": [[-1.2020315041639344, -1.041490267799504], [-0.9843020412581587, -1.1351219826735488], [-0.7664570465212973, -1.135391556946082], [-0.5484194987326265, -0.9800575635494281], [-0.7973466963929634, -0.948628765132696], [-1.0151916911298249, -0.9483591908601631]], "bottom_lip": [[0.822894448495033, 0.6365250733541923], [0.5121494404810019, 1.0103587418638589], [0.2010963475840757, 1.135226702102827], [-0.016710136542423853, 1.1666169899091974], [-0.2657528660338463, 1.1046836477244173], [-0.5460318408901916, 0.9494266755484874], [-0.8577011035529074, 0.5763632192460577], [-0.702020514662997, 0.638412093261923], [-0.23490172677254195, 0.8868001423771941], [-0.017018221425318676, 0.9176512816384985], [0.16970605977770542, 0.9174202179763274], [0.6984886155804074, 0.6989205428633145]], "nose_tip": [[-0.36034734616693764, 0.10893634647270786], [-0.2046667572770272, 0.17098522048857331], [-0.04898616838711678, 0.23303409450443874], [0.1376610915951836, 0.17056160377459292], [0.2932261486540085, 0.13924833718894628]], "nose_bridge": [[-0.05064212463267645, -1.1051565874505673], [-0.050218507918696066, -0.7628287385783564], [-0.04979489120471569, -0.4205008897061455], [-0.08049198802457265, -0.07813453022357289]], "transform": {"angle": 0.001237458474814035, "scale": 32.13291473092565, "center": [125.58333333333333, 165.51388888888889]}, "right_eyebrow": [[0.4156294298298178, -1.541424236079718], [0.6955618091929066, -1.6662536857083239], [1.0066919233105562, -1.728880218879617], [1.3490967934034908, -1.6670624085259227], [1.5982935653363606, -1.4806462122057935]], "top_lip": [[-0.8577011035529074, 0.5763632192460577], [-0.5153732546806966, 0.5759396025320773], [-0.23528683287616048, 0.5755930070388207], [-0.017403327528937203, 0.6064441463001249], [0.16928244306372503, 0.5750923691041165], [0.4805280890124603, 0.6058279765343353], [0.822894448495033, 0.6365250733541923], [0.6984886155804074, 0.6989205428633145], [0.16943648550517243, 0.699575223239466], [-0.017249285087489793, 0.7309270004354744], [-0.23513279043471308, 0.7000758611741701], [-0.702020514662997, 0.638412093261923]], "right_eye": [[0.5408439855620424, -0.9502847213782557], [0.7585349378574564, -1.0750371497861382], [1.0074621355177933, -1.1064659482028703], [1.1943404591622648, -0.9822141577296919], [1.0076931991799642, -0.919741666999846], [0.7587274909092657, -0.9194335821169513]]}], "url": "http://i.imgur.com/yZcVZ52.jpg", "embedding": [[-0.01732226088643074, 0.10529457032680511, 0.12181215733289719, -0.03496082127094269, -0.11546632647514343, 0.004366197623312473, -0.061760783195495605, -0.10978486388921738, 0.09444178640842438, -0.050113558769226074, 0.20655477046966553, -0.11464081704616547, -0.3383495807647705, 0.008399467915296555, -0.10246587544679642, 0.1553977131843567, -0.15298476815223694, -0.2138691246509552, -0.0651727169752121, 0.01261301152408123, 0.023500874638557434, 0.029151853173971176, -0.0034671053290367126, 0.07245389372110367, -0.2220425307750702, -0.2881627380847931, 0.004607414826750755, -0.10198953002691269, -0.09650007635354996, -0.14268188178539276, -0.026330726221203804, 0.09221459925174713, -0.1513749212026596, 0.05086110159754753, 0.028465505689382553, 0.14125721156597137, -0.06480075418949127, -0.0850277692079544, 0.1808375120162964, 0.09063372015953064, -0.3162316381931305, -0.010354293510317802, -0.01564822345972061, 0.34529367089271545, 0.2900097072124481, -0.040683820843696594, -0.012157848104834557, -0.04351229593157768, 0.13986974954605103, -0.37273740768432617, 0.01421581394970417, 0.1782587170600891, 0.07986524701118469, 0.06906434148550034, 0.03718717396259308, -0.1443593055009842, -0.0038046985864639282, 0.1431443691253662, -0.24304094910621643, 0.03412821516394615, 0.03245263546705246, -0.20706744492053986, -0.020911511033773422, -0.09712012857198715, 0.23530152440071106, 0.08726333826780319, -0.1920015513896942, -0.08470948040485382, 0.14966008067131042, -0.16487111151218414, -0.09153524786233902, 0.14504969120025635, -0.10536084324121475, -0.187273770570755, -0.3089582324028015, 0.020178724080324173, 0.420951247215271, 0.09356892853975296, -0.2045443058013916, 0.07354237139225006, -0.016432108357548714, 0.029059141874313354, -0.02210700884461403, 0.19207440316677094, -0.013702915981411934, 0.1285252571105957, -0.11173655092716217, 0.03424873948097229, 0.15747782588005066, -0.10121212154626846, -0.021999267861247063, 0.2933380603790283, -0.07987745106220245, -0.013243583030998707, 0.10874922573566437, 0.09951136261224747, -0.09538673609495163, -0.033484138548374176, -0.1032765805721283, -0.09067272394895554, 0.10089880228042603, -0.08526846766471863, 0.0305008701980114, 0.06019328162074089, -0.15757469832897186, 0.15784606337547302, -0.05673780292272568, 0.02319408394396305, 0.042345985770225525, -0.12029971182346344, 0.007540538907051086, -0.026004236191511154, 0.20615608990192413, -0.3794389069080353, 0.13549566268920898, 0.1213904619216919, 0.0030001364648342133, 0.10092540085315704, 0.040825989097356796, 0.010142271406948566, -0.03242404758930206, -0.04218653589487076, -0.12522244453430176, -0.07297676801681519, 0.06181460991501808, -0.00045338133350014687, 0.07397286593914032, -0.003401470370590687]]},
"000048": {"embedding": [[-0.11050457507371902, 0.06187581270933151, 0.0633741021156311, -0.0911935418844223, -0.11513294279575348, -0.005531934089958668, -0.01324678398668766, -0.06955587863922119, 0.09639869630336761, -0.1473308801651001, 0.12365651875734329, 0.044088214635849, -0.22016870975494385, 0.00912037119269371, 0.03480805084109306, 0.08227081596851349, -0.1639806032180786, -0.1818273514509201, -0.18562188744544983, -0.10744582116603851, 0.04696070775389671, 0.11983076483011246, -0.03897716850042343, 0.03041113168001175, -0.04326115548610687, -0.2793594002723694, -0.006850197911262512, 0.008433111011981964, 0.14954735338687897, -0.004446722567081451, 0.006950540468096733, -0.002248460426926613, -0.23214305937290192, 0.014947785064578056, 0.03290905803442001, 0.062131475657224655, -0.05581434816122055, -0.07189400494098663, 0.20789478719234467, 0.06940314173698425, -0.1942104548215866, 0.020719267427921295, -0.02981487661600113, 0.2806713581085205, 0.25151678919792175, 0.010195491835474968, 0.0065557449124753475, -0.05907963961362839, 0.17702199518680573, -0.30024924874305725, 0.11920260637998581, 0.19630247354507446, 0.06853507459163666, 0.06982602924108505, 0.12882070243358612, -0.19465520977973938, 0.00016679847612977028, 0.13896533846855164, -0.1109757199883461, 0.0864071324467659, 0.02995472028851509, -0.13262198865413666, -0.0007997527718544006, -0.12831419706344604, 0.16468408703804016, -0.011156611144542694, -0.10304917395114899, -0.1559966802597046, 0.1416909098625183, -0.12101399898529053, -0.11500032246112823, 0.03795299306511879, -0.10894215106964111, -0.10481399297714233, -0.2948606014251709, 0.0847952663898468, 0.39382871985435486, 0.1965419203042984, -0.1872328519821167, 0.12318563461303711, -0.02929157391190529, -0.012079311534762383, 0.12837141752243042, 0.11015123128890991, -0.0700068548321724, 0.021756120026111603, -0.06770473718643188, 0.06344752758741379, 0.18648922443389893, 0.012970133684575558, -0.09749700129032135, 0.25109368562698364, -0.0006814002990722656, 0.0026212120428681374, 0.0644250363111496, 0.008661065250635147, -0.06838500499725342, -0.06128595769405365, -0.15157930552959442, -0.05627865716814995, 0.07746555656194687, -0.06719867140054703, 0.014303114265203476, 0.0985475704073906, -0.1573461890220642, 0.19651395082473755, -0.03212457895278931, 0.05749242752790451, -0.03214046359062195, -0.05098506063222885, -0.12428000569343567, 0.04066995158791542, 0.09951477497816086, -0.24421337246894836, 0.25123563408851624, 0.16936227679252625, 0.05496075749397278, 0.1618196964263916, 0.11956964433193207, -0.0039058253169059753, 0.042452696710824966, 0.003254581242799759, -0.1420285552740097, -0.1286325752735138, 0.08643060177564621, 0.06135572865605354, 0.09668879956007004, 0.10119529813528061]], "landmarks": [{"chin": [[-1.413864697639591, -0.47542532326683135], [-1.439517614192486, -0.048240983056798976], [-1.3797711765015306, 0.378380650180889], [-1.3202123078013568, 0.7765358320039604], [-1.2889323215250181, 1.2033450342324299], [-1.1728156879771736, 1.5441921752447045], [-0.9430208177616439, 1.855822588879237], [-0.6291395762377341, 1.967625135639108], [-0.1165558817838515, 1.9927153452196584], [0.4808644599415368, 1.9318434935840143], [1.0498183502523084, 1.8711592109391517], [1.5326226103561043, 1.6971718296081666], [1.9006232198475257, 1.3816024671672236], [2.0972624138789024, 0.9817591644271193], [2.1794730952794676, 0.4972667834062906], [2.2330297562746346, -0.015504480038373462], [2.258495103836748, -0.47115527166302257]], "nose_bridge": [[-0.16621762915677288, -1.2238060956412504], [-0.22164998005975467, -0.9956993463427536], [-0.277269899953518, -0.7960590484588737], [-0.3325146818657183, -0.5394858477457601]], "left_eyebrow": [[-1.3331545681652774, -1.187649315604594], [-1.221164452414625, -1.473064105713887], [-0.9947458240331613, -1.6738298175424557], [-0.6819899964539402, -1.7328259792702851], [-0.42504165775926384, -1.6206482945288514]], "right_eyebrow": [[0.1439122325515078, -1.681332577173714], [0.512663118006055, -1.88303613395619], [0.9679387716491413, -1.9145036892233103], [1.3674069364076828, -1.7747973980211669], [1.654509847434009, -1.4066092195389641]], "nose_tip": [[-0.4714706971047357, -0.02615187732875178], [-0.3576048914462688, -0.026902153291877607], [-0.1868061829585684, -0.02802756723656635], [-0.01638261245243097, -0.08608588401048854], [0.18269497845910468, -0.11586531836057547]], "top_lip": [[-0.6649212182928277, 0.857621099459837], [-0.49637333769450476, 0.5148982685397475], [-0.29823359173687636, 0.34278657711657695], [-0.15590133466379275, 0.34184873216266964], [0.014522235842344697, 0.28379041538874744], [0.27147057453702106, 0.39596810013018124], [0.586289661014838, 0.6501029039631357], [0.4722362863655898, 0.6223867285116448], [0.016022787768596353, 0.5115220267056813], [-0.1261219003137058, 0.5409263230742053], [-0.2967330398106247, 0.5705181884335108], [-0.5516181196067051, 0.771471469252861]], "right_eye": [[0.46116971590948386, -1.057133904950742], [0.6881510512632918, -1.1725002625354606], [0.9158826625802257, -1.1740008144617122], [1.1158980984456683, -1.0614479917387156], [0.9170080765249143, -1.003202105974012], [0.689088896217199, -1.030168005462377]], "left_eye": [[-1.0745181085535678, -0.8192735681316096], [-0.9331236964343914, -0.9625436701586004], [-0.7340461055228558, -0.9923231045086874], [-0.505939356224359, -0.9368907536057056], [-0.7046418091543317, -0.8501784164263851], [-0.9037194000658675, -0.8203989820762982]], "bottom_lip": [[0.586289661014838, 0.6501029039631357], [0.33046673626485057, 0.7087239277094024], [0.07464381151486292, 0.7673449514556689], [-0.09596732798205598, 0.7969368168149743], [-0.2665784674789749, 0.8265286821742799], [-0.43700203798511233, 0.8845869989482021], [-0.6649212182928277, 0.857621099459837], [-0.5516181196067051, 0.771471469252861], [-0.26807901940522655, 0.598797070857346], [-0.09746787990830764, 0.5692052054980405], [0.04467680817399454, 0.5398009091295165], [0.4722362863655898, 0.6223867285116448]], "transform": {"scale": 35.1283086838472, "angle": 0.006589029085035656, "center": [126.55555555555556, 170.02777777777777]}}], "url": "http://i.imgur.com/yUMfayP.jpg"},
"000050": {"landmarks": [{"top_lip": [[-0.9101102328327189, 0.5485291421087267], [-0.52479437787436, 0.46050086081793856], [-0.1692983582115941, 0.4612815287793877], [0.06763393256679577, 0.491426642392251], [0.3046963346720939, 0.4623224193946533], [0.6009430177243988, 0.4629729760291943], [0.8674349211445651, 0.522807813610742], [0.7488711922601892, 0.5521722592621563], [0.30443611201827747, 0.5808210926155752], [0.06737370991297938, 0.609925315613173], [-0.199183249170641, 0.5797151463368556], [-0.8212362279170273, 0.5487243090990891]], "right_eyebrow": [[0.33854962110184084, -1.463215964781875], [0.7239305317236537, -1.5808689143778936], [1.0794916070498737, -1.609712914721675], [1.4347274040588234, -1.490433573539304], [1.5820700776235266, -1.1346122755592674]], "transform": {"angle": -0.0021959928195417204, "center": [123.68055555555556, 166.41666666666666], "scale": 33.75557081367148}, "nose_bridge": [[0.1007065510350935, -1.0786157221215114], [0.1296156070423289, -0.7526793151005219], [0.15845960738611023, -0.39711823977430166], [0.15767893942466105, -0.041622220111535706]], "bottom_lip": [[0.8674349211445651, 0.522807813610742], [0.6000322384360415, 0.8777183323024212], [0.3330198897082424, 1.0548808411627175], [0.0663328192977138, 1.083920008496861], [-0.22984880809113709, 1.0536447835570897], [-0.555394881131402, 0.9048058297329419], [-0.9101102328327189, 0.5485291421087267], [-0.8212362279170273, 0.5487243090990891], [-0.19983380580518198, 0.8759618293891607], [0.0667882089418925, 0.8765473303602476], [0.3038506110471906, 0.8474431073626498], [0.7488711922601892, 0.5521722592621563]], "right_eye": [[0.5153217959814124, -1.018455606222693], [0.7229546967718422, -1.1364988897994361], [0.9599520432136861, -1.1359784444918035], [1.1375048860547068, -1.0467141055953872], [0.9596267648964156, -0.9878551029656509], [0.7522540867598022, -0.9883104926098296]], "nose_tip": [[-0.34613558875461975, 0.04614583852543611], [-0.10933340930313803, 0.1355402887487604], [0.12746877014834365, 0.22493473897208469], [0.33503661527531947, 0.13651612370057187], [0.5129147364336107, 0.07765712107083546]], "chin": [[-2.062024346573641, -1.0241154489431996], [-2.0335706802105844, -0.4908063637855965], [-1.9754923455422972, 0.04256777703546069], [-1.9173489552105558, 0.5463172495512874], [-1.6814575550474316, 1.0504570560478388], [-1.3565620386417074, 1.4955426929242912], [-0.9426624059933838, 1.881574160180645], [-0.4693182697442368, 2.1788617338482155], [0.03417098011777347, 2.2392170167373964], [0.4788012273500474, 2.121694178468286], [0.8351429706377166, 1.7373541584617382], [1.1026757646731484, 1.3231943031595983], [1.3406489460668038, 0.8793447238887737], [1.548997459155229, 0.43543008895449486], [1.6092876863809553, -0.038434492602284875], [1.6398881896379973, -0.48273946151728825], [1.6704886928950393, -0.9270444304322917]], "left_eyebrow": [[-1.6469537119831437, -1.1713280111809945], [-1.4092407532433047, -1.4966789172308974], [-0.994170118652807, -1.6438914794686923], [-0.5794898180430342, -1.6133560318751046], [-0.1650046844236236, -1.4939465793658253]], "left_eye": [[-1.1435945734480415, -1.0517233916813529], [-0.9360267283210658, -1.1401420069528658], [-0.6990293818792218, -1.139621561645233], [-0.4919169263964247, -1.0206674987801323], [-0.6993546601964923, -0.9914982201190805], [-0.9363520066383363, -0.9920186654267132]]}], "url": "http://i.imgur.com/sXgzssE.jpg", "embedding": [[-0.18783821165561676, 0.17763441801071167, 0.017937026917934418, -0.1245763748884201, -0.1820494830608368, -0.02325594052672386, -0.06824919581413269, -0.05155541002750397, 0.08012249320745468, 0.010276208631694317, 0.18196982145309448, -0.044179897755384445, -0.15710660815238953, 0.0297908503562212, -0.10067357122898102, 0.13260401785373688, -0.20352551341056824, -0.15011446177959442, -0.17460554838180542, -0.038914065808057785, 0.0050556957721710205, 0.03741423785686493, 0.012164991348981857, 0.11278503388166428, -0.10189385712146759, -0.2526600956916809, -0.019338859245181084, -0.09209546446800232, 0.07075569778680801, -0.12249213457107544, 0.04470356926321983, -0.0359160378575325, -0.21249321103096008, -0.06672624498605728, 0.012267205864191055, 0.0968363806605339, -0.004122771322727203, -0.0633406788110733, 0.25344809889793396, 0.043539099395275116, -0.2269081473350525, 0.14751072227954865, 0.0242343507707119, 0.3982502520084381, 0.18671146035194397, -0.00855346955358982, -0.019838081672787666, 0.00454842671751976, 0.1304732859134674, -0.23369690775871277, 0.15990105271339417, 0.1503324955701828, 0.1831241250038147, -0.03103448823094368, 0.13397915661334991, -0.13388845324516296, 0.04486736282706261, 0.19041213393211365, -0.16422106325626373, 0.07331712543964386, 0.081000417470932, 0.0015813373029232025, 0.07795051485300064, -0.1319771111011505, 0.13576963543891907, 0.12755520641803741, -0.04566395655274391, -0.10306520015001297, 0.12801305949687958, -0.07595475018024445, -0.04900414124131203, 0.03203106299042702, -0.08502420783042908, -0.10959429293870926, -0.3027230501174927, 0.030269484966993332, 0.3763536810874939, 0.1681136041879654, -0.2657797038555145, -0.00975717045366764, -0.020998653024435043, -0.017736345529556274, 0.06263034045696259, -0.004272108897566795, -0.17470991611480713, 0.016281671822071075, -0.12140850722789764, 0.01992291584610939, 0.18717673420906067, 0.04342179000377655, -0.05866405367851257, 0.2181696891784668, 0.06851263344287872, -0.13931772112846375, 0.10651670396327972, -0.01312151551246643, -0.0986027717590332, -0.05385939031839371, -0.14178822934627533, 0.025119896978139877, -0.0035399398766458035, -0.16885946691036224, -0.044755902141332626, 0.08923300355672836, -0.23971152305603027, 0.057693324983119965, 0.013261618092656136, -0.025408176705241203, -0.11713224649429321, 0.12320666015148163, -0.1322854608297348, -0.03047943487763405, 0.20981743931770325, -0.2000383883714676, 0.20903480052947998, 0.19105759263038635, -0.020718557760119438, 0.09377580136060715, 0.13807745277881622, 0.013951729983091354, -0.011441564187407494, 0.060048531740903854, -0.036200493574142456, -0.13684043288230896, 0.06336086988449097, -0.015353485010564327, 0.13537700474262238, 0.14345785975456238]]},
"000051": {"embedding": [[-0.08015099912881851, 0.12178363651037216, -0.0345768965780735, -0.05449463799595833, -0.07341118156909943, -0.1603495329618454, -0.002347029745578766, -0.06552419066429138, 0.1881236433982849, -0.1243305653333664, 0.19982385635375977, -0.0193827822804451, -0.14295099675655365, -0.10185277462005615, -0.03933537006378174, 0.11112367361783981, -0.23536957800388336, -0.14517389237880707, -0.07652006298303604, -0.08052785694599152, 0.07516302913427353, 0.020853061228990555, -0.04689672589302063, -0.020229309797286987, -0.13303720951080322, -0.3290904760360718, -0.13692067563533783, -0.1125623881816864, 0.08050940930843353, -0.037693098187446594, 0.09670465439558029, 0.002786052878946066, -0.22092178463935852, -0.08427076041698456, 0.04727393761277199, -0.023306164890527725, -0.045662786811590195, -0.060207266360521317, 0.1856660395860672, 0.06409016996622086, -0.1670185625553131, 0.013908753171563148, 0.07029157131910324, 0.2955232262611389, 0.12868967652320862, 0.005791019648313522, 0.03209688514471054, -0.10018539428710938, 0.10984398424625397, -0.18998369574546814, 0.0396847277879715, 0.17453961074352264, 0.16146808862686157, 0.07683068513870239, 0.1442624181509018, -0.06184585019946098, 0.08086562156677246, 0.10972853749990463, -0.258766770362854, 0.06418737769126892, 0.10029155015945435, -0.0757865309715271, -0.0709424763917923, -0.03251511603593826, 0.14030686020851135, 0.086477130651474, -0.056645240634679794, -0.13235877454280853, 0.24294491112232208, -0.16321860253810883, -0.07392430305480957, 0.0203314870595932, -0.03500505909323692, -0.1808982789516449, -0.29834505915641785, -0.004997839219868183, 0.3946496844291687, 0.2308410108089447, -0.0740547850728035, 0.07999168336391449, -0.10297621786594391, -0.0428827628493309, 0.05509524419903755, 0.04989355057477951, -0.1056678295135498, -0.030556172132492065, -0.06980644166469574, 0.11635952442884445, 0.149620920419693, -0.020436471328139305, -0.03733403608202934, 0.14050258696079254, -0.028776682913303375, -0.014371075667440891, -0.04101985692977905, -0.05364494025707245, -0.142959862947464, 0.003012346103787422, -0.03938332200050354, -0.0165596641600132, 0.07976140081882477, -0.08938154578208923, 0.004738215357065201, 0.13259157538414001, -0.16936448216438293, 0.1021847352385521, 0.023570509627461433, -0.07664364576339722, -0.05599138140678406, 0.0579352006316185, -0.03092704527080059, 0.013240698724985123, 0.038412630558013916, -0.2119998186826706, 0.29885929822921753, 0.15316839516162872, -0.031159767881035805, 0.15218207240104675, 0.03369343280792236, -0.008330787532031536, -0.02326987311244011, -0.13384723663330078, -0.16643409430980682, -0.14610448479652405, -0.06337318569421768, 0.0437481589615345, 0.07324021309614182, 0.00726955384016037]], "url": "http://i.imgur.com/7jboVfu.jpg", "landmarks": [{"left_eyebrow": [[-1.594482831249576, -1.3468902777303138], [-1.4316830453290004, -1.5814506035545945], [-1.094783192824529, -1.6561234279132033], [-0.765164051457316, -1.57964560417085], [-0.4701434663926505, -1.4139335337953713]], "bottom_lip": [[0.821424824669486, 0.7086978228404887], [0.4470141314075637, 0.9330651530726077], [0.11302656335799569, 0.9472777181908317], [-0.09858434398335109, 0.93708472259867], [-0.3389692387174386, 0.8952054551588642], [-0.5476678616038819, 0.8245522003263177], [-0.7778597607458078, 0.571062025545165], [-0.6598515267199415, 0.6373468536953566], [-0.33023238535272853, 0.7138246774377098], [-0.12007762023883342, 0.7542478026500639], [0.09153328710251335, 0.7644407982422255], [0.6990481639612647, 0.7331033835508745]], "right_eyebrow": [[0.22660565709922637, -1.410672392184175], [0.5981040659062452, -1.5745794631759096], [0.9940080354236496, -1.6161098734594224], [1.4157737078788917, -1.5654937526549066], [1.7395682803362977, -1.3680954104317837]], "top_lip": [[-0.7778597607458078, 0.571062025545165], [-0.5087008786189796, 0.644627564832615], [-0.2970899712776328, 0.6548205604247767], [-0.08693520616373769, 0.6952436856371309], [0.09590171378486836, 0.6737504093816484], [0.42697699737953304, 0.7199981035038093], [0.821424824669486, 0.7086978228404887], [0.6990481639612647, 0.7331033835508745], [0.12030727449525405, 0.7961270700898698], [-0.09130363284609272, 0.7859340744977081], [-0.30145839795998786, 0.7455109492853538], [-0.6598515267199415, 0.6373468536953566]], "right_eye": [[0.5660689369023084, -0.9095166115316766], [0.8151906850011059, -1.0490181218130252], [1.0584878641900968, -1.0675991136136043], [1.295960474469281, -0.9652595869334135], [1.0785249982181273, -0.8545320640448059], [0.8366839612565883, -0.8661812018644193]], "nose_tip": [[-0.5458628622201376, 0.1580332064546333], [-0.40053678302898227, 0.28623443607266125], [-0.16306417274979812, 0.3885739627528519], [0.08460143312154776, 0.2793025820916957], [0.3293547545379903, 0.23049146067092427]], "left_eye": [[-1.217508710689043, -0.9954290029513255], [-1.0317595062855336, -1.0773825384471927], [-0.7596883397038022, -1.0642772584001274], [-0.5553581434997138, -0.9029336147070038], [-0.8001114649161563, -0.8541224932862325], [-1.0419525018776954, -0.8657716311058459]], "nose_bridge": [[-0.09462548805956937, -1.0322421293961908], [-0.14378546663663355, -0.6407065865611413], [-0.19148930298624606, -0.2794011733462842], [-0.24064928156331022, 0.11213436948876525]], "transform": {"angle": -0.04813137174581458, "scale": 33.04127113162911, "center": [127.76388888888889, 163.91666666666666]}, "chin": [[-1.8206551608654393, -1.0547819771205516], [-1.784949319491733, -0.5379574891223774], [-1.716101064042931, -0.08013711813713643], [-1.647252808594129, 0.37768325284810456], [-1.5164881516774902, 0.8081857786680565], [-1.2604345495977272, 1.1538224845372378], [-0.8488618727346471, 1.4160495126831005], [-0.4358330536441153, 1.648046411208771], [0.04493673582405973, 1.7318049460883824], [0.5617612238222338, 1.6960991047146763], [1.0844102807302145, 1.5394727448602001], [1.4919633880672325, 1.2561012976151482], [1.8434246628462205, 0.8791271770546154], [2.048103716206602, 0.404181956496247], [2.1635485229338576, -0.10536182036466872], [2.2502193422683727, -0.6465918690732286], [2.3066600319826946, -1.18927806000924]]}]},
"000052": {"embedding": [[-0.07129108905792236, 0.09763678163290024, 0.11580368876457214, -0.015694517642259598, -0.11281588673591614, -0.033157527446746826, -0.06371784210205078, 0.007641907781362534, 0.04007149860262871, 0.002594449557363987, 0.15916723012924194, 0.015318477526307106, -0.19099444150924683, -0.05763518810272217, -0.057220082730054855, 0.07329066097736359, -0.12706725299358368, -0.041258905082941055, -0.1462375670671463, -0.003921331837773323, -0.02711254358291626, 0.10037166625261307, 0.025488942861557007, -0.04359796270728111, -0.10644226521253586, -0.267548143863678, -0.06273865699768066, -0.07752931118011475, 0.042525261640548706, -0.09686224162578583, 0.08184649795293808, 0.07958710938692093, -0.19335812330245972, -0.09080204367637634, 0.03493185341358185, 0.023055827245116234, -0.07701975852251053, -0.039704881608486176, 0.1797606199979782, 0.09788660705089569, -0.17699547111988068, 0.028642170131206512, -0.037123121321201324, 0.3678699731826782, 0.2792380750179291, 0.0009373482316732407, -0.06072719022631645, -0.000834430567920208, 0.09041090309619904, -0.3329578638076782, 0.11320503056049347, 0.1388988196849823, 0.0850566104054451, 0.06250127404928207, 0.1553208827972412, -0.08486217260360718, 0.10371419042348862, 0.15052837133407593, -0.22123342752456665, 0.06406417489051819, -0.002502378076314926, -0.11279647052288055, 0.025371741503477097, -0.06002482771873474, 0.1563384234905243, 0.061882320791482925, -0.07434942573308945, -0.11407545953989029, 0.12970441579818726, -0.1080096885561943, -0.013245017267763615, 0.1454515904188156, -0.08812664449214935, -0.11905080080032349, -0.34504929184913635, 0.041415199637413025, 0.37730294466018677, 0.17271780967712402, -0.2193625122308731, -0.004010036587715149, -0.07302121818065643, -0.03477134928107262, 0.11098891496658325, 0.054929204285144806, -0.028608113527297974, -0.10231272131204605, -0.01805388554930687, -0.006380915641784668, 0.14002762734889984, -0.007725473493337631, -0.15219725668430328, 0.21421703696250916, -0.016120770946145058, -0.08963500708341599, 0.06644292920827866, -0.06772409379482269, -0.021047193557024002, -0.06335638463497162, -0.10626000165939331, -0.02410011552274227, 0.06038332358002663, -0.14151765406131744, -0.04158340394496918, 0.12700329720973969, -0.16425631940364838, 0.12304772436618805, 0.039408717304468155, 0.005336537957191467, 0.05005832388997078, -0.08929943293333054, -0.14608576893806458, 0.041200339794158936, 0.21876263618469238, -0.3115861415863037, 0.31085821986198425, 0.138798788189888, -0.03543497622013092, 0.07296324521303177, 0.07837647199630737, -0.006198979914188385, -0.044153835624456406, -0.021907318383455276, -0.06300602108240128, -0.10683352500200272, 0.05940945819020271, -0.03210742026567459, 0.07621318101882935, 0.003619515337049961]], "landmarks": [{"top_lip": [[-0.635027410484762, 0.725141473713899], [-0.4401061293477527, 0.6677005659257258], [-0.24631477609936778, 0.6423698956975127], [-0.08802344407681642, 0.7122400102605553], [0.10576790917156845, 0.686909340032342], [0.36151988176262445, 0.728059000701298], [0.6814923294736007, 0.7714685171475029], [0.5519214513451359, 0.799059043152965], [0.13335843517703058, 0.8164802181608067], [-0.09141322774268987, 0.8085707229404354], [-0.2519644155424902, 0.802921083497313], [-0.5398266256935064, 0.7606414949397325]], "nose_bridge": [[-0.08783802954514094, -1.1203033864344174], [-0.09913730843138578, -0.7992010108348169], [-0.14367675276621517, -0.44711832556388065], [-0.1561059595410845, -0.09390571240431991]], "right_eyebrow": [[0.21584317104661793, -1.5275671237162778], [0.5747054236493011, -1.6756891047412088], [0.9611582022574464, -1.6942402076376752], [1.3430912693110937, -1.5843503602943012], [1.5909337466817781, -1.3184290367056248]], "chin": [[-1.7288499287689778, -1.081598996074386], [-1.7148185374270093, -0.5667052672264005], [-1.6675469806364565, -0.08279184804975054], [-1.5239447111660236, 0.40451135479277284], [-1.3138621107984214, 0.8298539382926251], [-1.0384291074222745, 1.225346140009766], [-0.7286260107089187, 1.5577477944956117], [-0.41769298610693845, 1.8580392114214972], [0.02846055606662902, 1.97018891454212], [0.48026373768331887, 1.9217874298629427], [0.9067362490717956, 1.6795945919353805], [1.3664489259088568, 1.4064214443364826], [1.734350601620536, 1.0014175628318713], [1.9439609453096636, 0.5265435667642171], [2.0583705042075353, 0.016169549470729586], [2.141799753434072, -0.5274446332713426], [2.161008527540688, -1.0733186717906635]], "left_eyebrow": [[-1.560389245748806, -1.300721019550984], [-1.3896687069513853, -1.584063518147502], [-1.0961568573572469, -1.7023351173897219], [-0.7440741720863105, -1.6577956730548926], [-0.45960174560116795, -1.519185371817432]], "right_eye": [[0.4878863907568912, -1.0357442093192564], [0.6861974555597741, -1.18951582978731], [0.9109691184794945, -1.1816063345669388], [1.1323509977333412, -1.077366126666687], [0.9684100262676677, -0.9866850534299292], [0.7103981978993628, -0.9636142389789651]], "left_eye": [[-1.1486057969124475, -1.1254807691990654], [-0.9525545878868137, -1.2150319145471986], [-0.7277829249670933, -1.207122419326827], [-0.5407711390504554, -1.03979166419528], [-0.7356924201874647, -0.9823507564071069], [-0.9925743206671452, -0.9913901795161028]], "transform": {"center": [126.95833333333333, 166.75], "scale": 31.12345210341124, "angle": -0.035174509327341334}, "nose_tip": [[-0.4530075928010965, 0.12069659951778017], [-0.2947162607785451, 0.1905667140808227], [-0.10318476330740922, 0.2294565189725297], [0.09173651782960014, 0.17201561118435646], [0.25341763351802493, 0.14555501306751883]], "bottom_lip": [[0.6814923294736007, 0.7714685171475029], [0.3868505519908376, 0.921850353949683], [0.12770879573390814, 0.9770314059606071], [-0.09819279507443678, 1.0012321483001958], [-0.25761405498561263, 0.9634722712971133], [-0.44801562456812405, 0.8924722288454463], [-0.635027410484762, 0.725141473713899], [-0.5398266256935064, 0.7606414949397325], [-0.25083448765386573, 0.7708108459373529], [-0.09141322774268987, 0.8085707229404354], [0.10237812550569499, 0.7832400527122223], [0.5519214513451359, 0.799059043152965]]}], "url": "http://i.imgur.com/vsXak0b.jpg"},
"000054": {"url": "http://i.imgur.com/4yW3KzA.jpg", "landmarks": [{"top_lip": [[-0.9040406865019297, 0.5477814233375404], [-0.5709924963475584, 0.4558584357363146], [-0.2679694921551151, 0.4549347208785939], [-0.02545871731538848, 0.4844980494116615], [0.24707724348626622, 0.4230621052012242], [0.6107972200029701, 0.45225594779120365], [0.9745171965196741, 0.481449790381183], [0.853492737814241, 0.5424238771627601], [0.2476314724008987, 0.6048759077166901], [-0.024996859886528104, 0.6360095515078832], [-0.2675076347262548, 0.6064462229748153], [-0.7523444414341638, 0.6079241667471685]], "bottom_lip": [[0.9745171965196741, 0.481449790381183], [0.6425774641945676, 0.9370003830133407], [0.24938653063056812, 1.180619615682332], [-0.023241801656858668, 1.2117532594735252], [-0.2656602050108132, 1.2124922313597017], [-0.5996321100229053, 1.0013922147684844], [-0.9040406865019297, 0.5477814233375404], [-0.7523444414341638, 0.6079241667471685], [-0.2664915483827619, 0.9397715275865028], [-0.023980773543035273, 0.9693348561195706], [0.24855518725861944, 0.9078989119091334], [0.853492737814241, 0.5424238771627601]], "right_eye": [[0.5155488589139496, -0.9716750574559632], [0.7272031044197995, -1.1238331599525895], [0.9393192073545097, -1.124479760352994], [1.1517124247465362, -1.0342194594956653], [0.9700833652026144, -0.9730606297425444], [0.727757333334432, -0.9420193574371233]], "nose_bridge": [[-0.06047196350900865, -1.0608269004840267], [-0.059363505679743744, -0.6971992954530949], [-0.08864971975549524, -0.36378161935563524], [-0.0876336334120024, -0.03045631474394773]], "left_eye": [[-1.1814723360495043, -0.9968045546719712], [-0.9697257190578824, -1.1186603567493532], [-0.7272149442181558, -1.0890970282162853], [-0.5449392842738294, -0.9381397550346962], [-0.7569630157227676, -0.9071908542150473], [-0.9994737905624942, -0.936754182748115]], "transform": {"scale": 33.00064153650634, "angle": 0.0030483230111315947, "center": [125.88888888888889, 166.01388888888889]}, "left_eyebrow": [[-1.5161832129477728, -1.450322974617143], [-1.2743190385084509, -1.6328757490187855], [-0.9713884058017798, -1.6641017642957507], [-0.637878358218548, -1.604513249800755], [-0.3647881685022609, -1.4841353914957265]], "nose_tip": [[-0.4204047091090575, 0.152373574115011], [-0.26870846404129173, 0.21251631752463926], [-0.05631524664926525, 0.30277661838196773], [0.12522144140888444, 0.21131548820960228], [0.3068505009528062, 0.1501566584564812]], "right_eyebrow": [[0.24125783988262547, -1.4859828212111679], [0.5741212870654526, -1.6385104096508822], [0.9072618487055959, -1.7001310968328636], [1.2406795248030555, -1.6708448827571123], [1.544164386424359, -1.5202570955186117]], "chin": [[-1.7874259729486188, -0.9646548245372855], [-1.7556457287570209, -0.4799103893151484], [-1.7238654845654235, 0.004834045906988667], [-1.6315730110211095, 0.45909143773833727], [-1.508978237057551, 0.9132564580839138], [-1.2350567039693152, 1.3063550201621412], [-0.9006229415283629, 1.66896653884958], [-0.5057693212204659, 1.9707887137269864], [-0.05095770047448487, 2.0603100426981387], [0.40329969135686367, 1.9680175691538242], [0.8570028542735798, 1.6939112930940439], [1.2803113452852797, 1.3895950881007917], [1.612528192067702, 1.024951396726367], [1.8232587227158312, 0.569770290037298], [1.912687680201211, 0.08465636887207255], [1.9717219657815743, -0.43066748122662507], [2.0004539509426933, -0.9458989598395504]]}], "embedding": [[-0.10082656890153885, 0.13979963958263397, 0.0679706484079361, -0.15825599431991577, -0.047593437135219574, -0.003193933516740799, -0.07789216935634613, -0.09299299865961075, 0.21734386682510376, -0.16251224279403687, 0.14183638989925385, -0.014312885701656342, -0.2226039469242096, 0.010436590760946274, -0.043346814811229706, 0.21827489137649536, -0.15035615861415863, -0.24022932350635529, -0.18100380897521973, 0.027413545176386833, 0.021770358085632324, 0.03939622640609741, -0.041514284908771515, 0.09817297011613846, -0.04436063766479492, -0.341342031955719, -0.05858032405376434, -0.006322581321001053, -0.062304459512233734, -0.07191941142082214, 0.07332059741020203, 0.09733936935663223, -0.21707189083099365, 0.00011228024959564209, -0.006712757050991058, 0.12148798257112503, -0.06514107435941696, -0.16422563791275024, 0.1380717009305954, 0.07225421071052551, -0.24920709431171417, -0.08671894669532776, 0.06807515025138855, 0.2625332474708557, 0.22283439338207245, -0.011956866830587387, 0.026165569201111794, -0.04995666444301605, 0.12277743220329285, -0.3289404511451721, -0.015247470699250698, 0.2214905172586441, 0.019263338297605515, 0.1780523806810379, 0.057590555399656296, -0.16067549586296082, 0.13776452839374542, 0.11194678395986557, -0.20806942880153656, 0.07579750567674637, 0.08119425177574158, -0.10622265189886093, -0.00952860713005066, -0.0961349755525589, 0.19784781336784363, 0.14078566431999207, -0.14635151624679565, -0.18374302983283997, 0.22774559259414673, -0.1514042764902115, -0.10500812530517578, -0.006428717635571957, -0.17543728649616241, -0.21212124824523926, -0.2746233344078064, -0.03254812955856323, 0.3349789083003998, 0.21987712383270264, -0.11647222936153412, 0.05626789852976799, -0.06880690157413483, -0.04948050528764725, -0.07835212349891663, 0.17157164216041565, 0.004964282736182213, -0.016626786440610886, -0.05347110703587532, 0.02176966518163681, 0.24804504215717316, 0.05712495371699333, -0.008410625159740448, 0.3142167329788208, -0.033465735614299774, -0.08144889026880264, -0.03844869136810303, 0.06289032101631165, -0.0839952677488327, 0.0390300452709198, -0.1622130274772644, 0.008869349956512451, -0.06864556670188904, -0.05324419215321541, -0.03174581751227379, 0.1314167082309723, -0.11569994688034058, 0.21390990912914276, -0.010311277583241463, 0.09898388385772705, -0.024750124663114548, 0.061534952372312546, -0.12694798409938812, -0.08724597096443176, 0.15113931894302368, -0.10593414306640625, 0.19646932184696198, 0.20868165791034698, 0.13717405498027802, 0.07470420002937317, 0.11902866512537003, 0.16392305493354797, 0.06962279230356216, -0.04096757248044014, -0.2097378969192505, -0.10554765909910202, -0.01657409965991974, 0.011637380346655846, -0.05299903452396393, 0.12416969984769821]]},
"000055": {"embedding": [[-0.14213891327381134, 0.18722262978553772, 0.017722688615322113, 0.016781743615865707, -0.038163088262081146, -0.016915660351514816, -0.06861220300197601, -0.17342697083950043, 0.15363702178001404, 0.06410887092351913, 0.12669417262077332, 0.013291871175169945, -0.198444664478302, -0.054463256150484085, -0.04827054589986801, 0.0757390558719635, -0.17350655794143677, -0.1665952056646347, -0.15527990460395813, -0.07030379772186279, 0.00024234503507614136, 0.07414984703063965, 0.021446365863084793, 0.08398284018039703, -0.20047083497047424, -0.23990097641944885, -0.0049186646938323975, -0.11650994420051575, 0.023719357326626778, -0.1509016454219818, 0.0024044960737228394, 0.018920041620731354, -0.264364093542099, -0.08201392740011215, 0.06922870874404907, 0.08523862808942795, -0.02516917511820793, -0.023520834743976593, 0.20101967453956604, 0.04084780812263489, -0.15611198544502258, 0.0465390682220459, 0.03442646935582161, 0.32259929180145264, 0.21197395026683807, 0.053165026009082794, -0.0686245933175087, -0.11103162169456482, 0.2198907732963562, -0.28934812545776367, 0.12169785052537918, 0.14769881963729858, 0.07994431257247925, 0.05142833665013313, 0.15150773525238037, -0.26048123836517334, 0.049592602998018265, 0.1272590160369873, -0.2002725750207901, 0.10289710015058517, 0.030321283265948296, -0.08613887429237366, -0.007998714223504066, -0.061924345791339874, 0.11444991827011108, 0.1046597808599472, -0.044886525720357895, -0.11461354047060013, 0.05404909700155258, -0.08869203925132751, -0.010217289440333843, 0.14171309769153595, -0.029436318203806877, -0.18504773080348969, -0.3778919577598572, 0.03359893709421158, 0.4467373490333557, 0.12355178594589233, -0.2490191012620926, -0.018249360844492912, -0.009736270643770695, -0.009766865521669388, 0.110625259578228, -0.038760554045438766, -0.18196925520896912, -0.04203075170516968, -0.1309329718351364, 0.031116928905248642, 0.2232036590576172, 0.10191838443279266, -0.09157585352659225, 0.17498257756233215, -0.04498894885182381, -0.01289860438555479, 0.05389474332332611, 0.04617661237716675, -0.15065866708755493, -0.010691465809941292, -0.1307322382926941, -0.02894333377480507, 0.06396519392728806, -0.04693594202399254, -0.009689591825008392, 0.11407403647899628, -0.20215921103954315, 0.0999060794711113, 0.05021298676729202, -0.04167140647768974, -0.06629669666290283, -0.029593942686915398, -0.1690855771303177, 0.0642549991607666, 0.18011581897735596, -0.3269714117050171, 0.31123873591423035, 0.12163563072681427, -0.008123807609081268, 0.13016261160373688, 0.035315439105033875, -0.025172285735607147, -0.06253013014793396, 0.04723625257611275, -0.09280385076999664, -0.10867395997047424, 0.12675023078918457, -0.040657706558704376, 0.1083979383111, 0.01995426043868065]], "url": "http://i.imgur.com/5WFc4PQ.jpg", "landmarks": [{"top_lip": [[-0.6576909025600637, 0.7298407937897473], [-0.4774908206908383, 0.640138245045923], [-0.23733004278274805, 0.5805485417184606], [-0.05739495570738163, 0.6408802304687279], [0.12275212720307194, 0.581184529223722], [0.3926547578161216, 0.6716820623491231], [0.6625043894703994, 0.7921864429733424], [0.5424769994751261, 0.7919744471382553], [0.15249397990803137, 0.7312717656765855], [-0.05760695154246877, 0.7609076204640012], [-0.23759503757660697, 0.7305827792125523], [-0.5676703600636086, 0.7299997906660627]], "chin": [[-1.7949301668651685, -0.9825634740762255], [-1.7358174541666525, -0.47234106867877024], [-1.676651742509364, 0.007874489219866665], [-1.6174860308520762, 0.48809004711850357], [-1.468246777739561, 0.9384577543946374], [-1.2288809842130477, 1.32897076354945], [-0.8693818027737172, 1.6596820735417133], [-0.47982277487679675, 1.9604395349939296], [-0.02982606031206532, 2.021248214373143], [0.5104031925842083, 1.9621885006333986], [0.990936744235476, 1.7229817039832003], [1.4116155977654221, 1.3936483669190036], [1.7123730592176385, 1.0040893390220833], [1.8932621275508972, 0.5242977727936206], [1.954176804847654, 0.014287363231252424], [2.015091482144411, -0.49572304633111564], [2.0460523109011217, -1.0357933023510737]], "right_eye": [[0.5457629349189766, -1.0684500977884814], [0.7260160157469737, -1.188159494031124], [0.9660707957375204, -1.1877355023609497], [1.1759067323941617, -1.067337119654274], [0.9657528019848898, -1.0076944173680398], [0.7557048694931615, -1.0080654100794422]], "nose_tip": [[-0.38646329797771944, 0.07016713944469001], [-0.23648205944239953, 0.10043898173736726], [-0.056546972367033106, 0.16077067048763463], [0.12354711158464868, 0.131081816741447], [0.3337010419939206, 0.07143911445521281]], "nose_bridge": [[-0.05426801713984643, -1.1295237719615536], [-0.05479800672756426, -0.8294552969733704], [-0.0853878427728722, -0.4994329734451405], [-0.08591783236059003, -0.19936449845695717]], "left_eyebrow": [[-1.5843522447857223, -1.2822609563530063], [-1.4038341691638665, -1.5520045900897408], [-1.0736528487593213, -1.6114352965408876], [-0.7135706787735012, -1.610799309035626], [-0.3537005046227684, -1.4901359315350915]], "left_eye": [[-1.1646273725136682, -1.071471038438473], [-0.9843742916856711, -1.1911804346811157], [-0.7143126641963062, -1.1907034440521695], [-0.5045297264984367, -1.0402982138466754], [-0.7446905044065271, -0.980708510519213], [-0.9847452843970737, -0.9811325021893873]], "right_eyebrow": [[0.2764432928524166, -1.4890229534008839], [0.6367374586733239, -1.6084143558908959], [0.9968726276179156, -1.637785215884453], [1.356848799686192, -1.5771355333815549], [1.6264864355053825, -1.3366037627620622]], "bottom_lip": [[0.6625043894703994, 0.7921864429733424], [0.3922307661459473, 0.9117368423396697], [0.12211613969781053, 0.941266699209542], [-0.05797794425387125, 0.9709555529557296], [-0.2679728777868278, 0.9405777127455088], [-0.4779148123610126, 0.8801930250364697], [-0.6576909025600637, 0.7298407937897473], [-0.5676703600636086, 0.7299997906660627], [-0.2676018850754253, 0.7305297802537806], [-0.057553952583696985, 0.730900772965183], [0.12248713240921302, 0.7312187667178137], [0.5424769994751261, 0.7919744471382553]], "transform": {"angle": -0.0017662269807834565, "center": [125.875, 166.63888888888889], "scale": 33.32567475676715}}]},
"000056": {"landmarks": [{"nose_bridge": [[0.19578163753370859, -1.1266287077804782], [0.23187894748417034, -0.8157173191055291], [0.29911696235245344, -0.505301590933844], [0.3357099328061792, -0.16324949734107352]], "left_eye": [[-1.236195128182808, -1.072687619712511], [-0.9890521308532938, -1.2012157234099086], [-0.7394308310074591, -1.1740403025181998], [-0.5189675940663897, -1.0218064014519412], [-0.7359612074846108, -0.9560553680934504], [-1.0167232122482668, -0.9827351284818954]], "right_eye": [[0.509171328724978, -1.0070224931418335], [0.7246779606334071, -1.1661956412537884], [0.9738035999759777, -1.1701609252799008], [1.1626304714959617, -1.0485720686281996], [0.977273223498826, -0.9521759908551515], [0.7281475841562554, -0.9482107068290391]], "transform": {"center": [122.13888888888889, 166.06944444444446], "scale": 32.10824399685739, "angle": 0.015915460272553954}, "right_eyebrow": [[0.5625308495018678, -1.5685465026691454], [0.8096738468313822, -1.697074606366543], [1.0573125046641607, -1.794462005146119], [1.3385701699310806, -1.736641539839853], [1.4661069526219503, -1.5517799523459812]], "nose_tip": [[-0.15808040134958554, 0.12494741497154309], [0.029259488660606445, 0.15311415686978017], [0.21709503917406245, 0.2124216036858385], [0.372302903259905, 0.17880259625169698], [0.49587440192466226, 0.11453854440299817]], "chin": [[-2.1694249547109195, -0.995536394778947], [-2.160998726155431, -0.46614441117598454], [-2.0902910877642995, 0.06225625142044981], [-1.988938404958611, 0.5590205485957989], [-1.763518562984901, 1.0226614988402702], [-1.3843778384351406, 1.3592613268971363], [-0.974096408967559, 1.6953654944507384], [-0.5030205511741268, 1.9370562262443483], [-0.03541431690354299, 1.960762023613209], [0.367432205015078, 1.829755617399491], [0.6738826491606508, 1.5133919631886377], [0.9175560229673168, 1.1668789250664906], [1.1612293967739828, 0.8203658869443435], [1.3104893348206568, 0.4130584204963462], [1.3969722025284244, -0.024398429862944385], [1.4523143653183703, -0.46135961971897094], [1.4765158231904951, -0.8978251490717335]], "bottom_lip": [[0.5997053872466711, 0.7670063661674538], [0.44747148618041277, 0.9874696031085232], [0.2932549431010983, 1.0833700203783072], [0.13804707901525576, 1.1169890278124488], [-0.049292810994936216, 1.0888222859142118], [-0.3310461367651203, 0.9998611156901243], [-0.677063514384003, 0.7873284468012796], [-0.5208643292916324, 0.8159908492027806], [-0.02211739010322724, 0.8392009860683772], [0.1647268394037007, 0.8362270230487929], [0.2887939985717219, 0.8031036761179154], [0.4756382280786498, 0.8001297130983313]], "left_eyebrow": [[-1.55602840591651, -1.597122998282833], [-1.246603998751353, -1.7266424229867585], [-0.9351969495731398, -1.731599028019399], [-0.5921535349738412, -1.7059105886374824], [-0.27826818327930786, -1.5551636690810162]], "top_lip": [[-0.677063514384003, 0.7873284468012796], [-0.273721331962118, 0.687462745505383], [0.0055536912917457755, 0.6207203911403639], [0.16175287638411645, 0.649382793541865], [0.31696074046995903, 0.6157637861077235], [0.47365558606559366, 0.675566893427046], [0.5997053872466711, 0.7670063661674538], [0.4756382280786498, 0.8001297130983313], [0.28829833806845784, 0.7719629712000942], [0.16423117890043665, 0.8050863181309716], [0.008031993808065994, 0.7764239157294706], [-0.5208643292916324, 0.8159908492027806]]}], "url": "http://i.imgur.com/rupbujV.jpg", "embedding": [[-0.1802159696817398, 0.042935408651828766, 0.04581107199192047, 0.02294294722378254, -0.1131555512547493, 0.03491734340786934, 0.03617074340581894, -0.07744492590427399, 0.12695421278476715, -0.03472967445850372, 0.2619808614253998, 0.024764318019151688, -0.26642629504203796, -0.09857715666294098, 0.038820695132017136, 0.08885903656482697, -0.10619427263736725, -0.0942302793264389, -0.01891915686428547, -0.06754801422357559, 0.10175298154354095, 0.06098588556051254, 0.0832633301615715, 0.095578633248806, -0.20988155901432037, -0.3176613450050354, 0.0001529790461063385, -0.10994790494441986, -0.11090603470802307, -0.14657801389694214, 0.04880620911717415, 0.1203104704618454, -0.15303349494934082, 7.70464539527893e-05, 0.03650331869721413, 0.14592601358890533, -0.0072014168836176395, 0.029985956847667694, 0.23165102303028107, -0.04388847202062607, -0.2643478214740753, -0.024575065821409225, 0.11915542185306549, 0.28449565172195435, 0.1715872436761856, -0.012892968021333218, -0.0038114096969366074, -0.038973286747932434, 0.21007081866264343, -0.34341922402381897, 0.0491304025053978, 0.14034689962863922, 0.06107814237475395, -0.0031362008303403854, 0.0593578964471817, -0.149817556142807, -0.051356904208660126, 0.08145656436681747, -0.15447542071342468, 0.05827607214450836, 0.04944848269224167, -0.12029793113470078, -0.010253533720970154, -0.09059285372495651, 0.15995310246944427, 0.06320138275623322, -0.15624678134918213, -0.1342162936925888, 0.06644940376281738, -0.1746734380722046, -0.0886562168598175, 0.23726509511470795, -0.14354556798934937, -0.26039260625839233, -0.3122178018093109, 0.05735897272825241, 0.42891210317611694, 0.07564631849527359, -0.11154313385486603, 0.025520285591483116, -0.07164743542671204, -0.026477251201868057, -0.021146642044186592, 0.1426749974489212, 0.027914922684431076, 0.060958269983530045, -0.11250029504299164, 0.095283642411232, 0.24344532191753387, -0.016909945756196976, -0.02142154797911644, 0.30819079279899597, 0.03935112804174423, 0.09316860139369965, 0.021681353449821472, 0.13815200328826904, -0.06500875949859619, -0.00635157898068428, -0.14844830334186554, 0.03176598995923996, -0.021345695480704308, -0.07560312002897263, 0.05768468230962753, 0.06010071188211441, -0.25259944796562195, 0.20094238221645355, -0.06185638904571533, 0.019219012930989265, -0.02898498810827732, -0.054240524768829346, -0.0695381909608841, 0.058263517916202545, 0.1109912246465683, -0.34065526723861694, 0.16010166704654694, 0.12928321957588196, 0.06322190165519714, 0.15585526823997498, 0.017090896144509315, 0.012771249748766422, 0.0035324348136782646, -0.044971439987421036, -0.168172687292099, -0.04056185483932495, 0.05674595385789871, -0.08725279569625854, 0.022892888635396957, 0.005791123956441879]]},
"000058": {"landmarks": [{"nose_tip": [[-0.279797304450068, 0.023327731589280244], [-0.13113117078761413, 0.11492425977896902], [0.048184631486707395, 0.14698383897449338], [0.19826067573281803, 0.11880151388402502], [0.3187444843048035, 0.06032199782760316]], "bottom_lip": [[0.7302159625752416, 0.7240403779112661], [0.4589511544653171, 0.8705916456982349], [0.18839130164722093, 0.957253486845125], [0.0386677350470245, 0.9554910986155541], [-0.14100054487321123, 0.953376232740069], [-0.4094455318158222, 0.8603697939667236], [-0.7071302767866442, 0.7071214509073853], [-0.5574067101864477, 0.7088838391369562], [-0.13747576841406942, 0.6539290995396762], [0.04184003386025213, 0.6859886787352006], [0.19191607810636274, 0.6578063536447322], [0.5505476826550059, 0.7219255120357809]], "chin": [[-1.9774815448985388, -0.7753260405488496], [-1.9831211872331655, -0.296210627428221], [-1.958816116247753, 0.18325726333832182], [-1.8746216186222624, 0.663430109396693], [-1.699888025744825, 1.0847709617527281], [-1.4050231019413164, 1.4775770113723807], [-0.9889694142739942, 1.7520141182955327], [-0.4827291090006397, 1.9975639448363882], [0.025626062148199773, 2.0634454914570077], [0.47585419488653163, 1.9788985161856025], [0.8986049578262234, 1.6843860700280082], [1.2917634850917903, 1.3595764329044604], [1.535903401048989, 0.9731149809112632], [1.6606169413719445, 0.55529890501437], [1.72614601034665, 0.0768884471855697], [1.761377888355402, -0.37192977496910545], [1.7666650530441148, -0.8211004747696947]], "right_eyebrow": [[0.39661027088650536, -1.4661534262025722], [0.6974673146705549, -1.5824075030235876], [1.0279165941287298, -1.6683643888786492], [1.3566034853573334, -1.6045977081335148], [1.594046326042163, -1.4221096070459656]], "right_eye": [[0.5403417175061608, -0.9553309115323333], [0.7820142899419601, -1.1321793702852556], [1.0515167098223137, -1.129007071472028], [1.2590148371871037, -0.9468714480303929], [1.0486968886550003, -0.8894493649117137], [0.8094916597406001, -0.9222138993990664]], "transform": {"angle": -0.011770403820415908, "center": [124.33333333333333, 167.11111111111111], "scale": 33.39256311822946}, "left_eye": [[-1.2559886040502823, -1.0064242836072235], [-1.014668509260397, -1.1533280290401065], [-0.7448136117341294, -1.1801004435469182], [-0.5077232486952143, -0.9676676291393297], [-0.7775781462214821, -0.940895214632518], [-1.0171358527817964, -0.9437150357998315]], "nose_bridge": [[0.06298869261510302, -1.1106941204671565], [0.05981639380187539, -0.841191700586803], [0.08658880830868704, -0.5713368030605352], [0.08306403184954522, -0.27188966986014246]], "top_lip": [[-0.7071302767866442, 0.7071214509073853], [-0.4052158000648521, 0.5010332341262521], [-0.13465594724675595, 0.41437139297936193], [0.014715141707526297, 0.4460784945289721], [0.1947358992736762, 0.4182486470844179], [0.46282840857037305, 0.5411997991778027], [0.7302159625752416, 0.7240403779112661], [0.5505476826550059, 0.7219255120357809], [0.19156360046044857, 0.6877510669647715], [0.011895320540212844, 0.6856362010892865], [-0.1378282460599836, 0.6838738128597155], [-0.5574067101864477, 0.7088838391369562]], "left_eyebrow": [[-1.6695749481962054, -1.4904743837706507], [-1.3680129491203274, -1.6666178872317448], [-1.0076189563421134, -1.7522222954408921], [-0.6193951161193453, -1.65780594608389], [-0.26217342215435896, -1.4739079344126842]]}], "embedding": [[-0.07468327134847641, -0.007433852646499872, 0.02950534224510193, -0.11029880493879318, -0.17452570796012878, -0.07634755223989487, -0.018642717972397804, -0.15946684777736664, 0.22724834084510803, -0.13126593828201294, 0.10286952555179596, -0.0447511225938797, -0.22498668730258942, 0.07671867311000824, 0.004640307277441025, 0.14402037858963013, -0.14176885783672333, -0.11357489228248596, -0.07361099869012833, -0.08791188895702362, -0.009168889373540878, 0.020306531339883804, -0.01729009859263897, 0.19030100107192993, -0.17620056867599487, -0.18886908888816833, -0.10726487636566162, -0.09677921235561371, -0.0749686062335968, -0.06884455680847168, 0.12623167037963867, 0.10083834081888199, -0.19938179850578308, -0.07215652614831924, 0.07867211103439331, 0.17065444588661194, -0.024121323600411415, -0.14148053526878357, 0.18519441783428192, -0.020984044298529625, -0.20714232325553894, -0.0500483512878418, 0.09473748505115509, 0.22451213002204895, 0.13355393707752228, 0.013372675515711308, 0.03240831941366196, -0.09962575137615204, 0.17729805409908295, -0.2676483392715454, 0.013593443669378757, 0.08583325892686844, 0.052551597356796265, -0.03354766219854355, 0.13137981295585632, -0.16767413914203644, 0.10340213030576706, 0.18142372369766235, -0.22701327502727509, 0.0825493261218071, 0.16228142380714417, -0.09478495270013809, -0.005179106257855892, -0.09338178485631943, 0.24845968186855316, 0.009088832885026932, -0.16330291330814362, -0.027262577787041664, 0.18505850434303284, -0.1665395051240921, -0.033365648239851, 0.10824491083621979, -0.10229755938053131, -0.25890207290649414, -0.2903090715408325, 0.04139513522386551, 0.49858027696609497, 0.2046698033809662, -0.1062617227435112, 0.07339106500148773, -0.022489920258522034, -0.002022489905357361, 0.008515533059835434, 0.1709774136543274, 0.019187714904546738, -0.014202840626239777, -0.026165196672081947, 0.1016608327627182, 0.20532231032848358, 0.020602330565452576, 0.07691238820552826, 0.29833152890205383, -0.0035097822546958923, -0.0628439411520958, -0.06302119046449661, -0.017352230846881866, -0.12731802463531494, -0.004251556470990181, -0.08610710501670837, 0.0436897948384285, 0.04548696428537369, 0.005318598356097937, 0.08273882418870926, 0.10709358751773834, -0.21658261120319366, 0.09628048539161682, -0.06920874118804932, -0.10976149886846542, -0.03721294552087784, -0.014503946527838707, -0.15175604820251465, -0.04069451987743378, 0.20940688252449036, -0.3179371953010559, 0.06704680621623993, 0.12484349310398102, -0.007176749408245087, 0.12386946380138397, 0.004654577001929283, 0.10898490250110626, 0.06901541352272034, -0.04130754992365837, -0.18139809370040894, -0.05201072618365288, 0.08891768753528595, -0.11647665500640869, 0.08364738523960114, 0.01501757837831974]], "url": "http://i.imgur.com/a4eq0PO.jpg"},
"000060": {"url": "http://i.imgur.com/Ef6PdVn.jpg", "landmarks": [{"left_eye": [[-0.9069904302652265, -0.8670013490509295], [-0.7922454469820108, -1.0033708658603244], [-0.6524311924679209, -1.0277511895502593], [-0.4882366142638956, -0.9123172587261047], [-0.6280508687779857, -0.8879369350361698], [-0.7956901846867058, -0.8642455588871735]], "left_eyebrow": [[-1.119945655849122, -1.2620637889032644], [-1.1130561804397319, -1.5403144028495663], [-0.8863220040370563, -1.7017531908898353], [-0.6637215128800148, -1.6962416105623233], [-0.4723908208222984, -1.5522936708025994]], "right_eyebrow": [[-0.0522591097390895, -1.6532597032670349], [0.2864642597830459, -1.839767762538178], [0.7052180757843769, -1.8850836722133535], [1.1205271540810129, -1.7912742749153778], [1.4753634768018151, -1.5040673429368687]], "bottom_lip": [[0.6995518674300654, 0.592724686990612], [0.30380048003679166, 0.8335049739691376], [-0.06137005579809593, 0.9636739629100814], [-0.2568344331014463, 0.9866763915181387], [-0.4516098628638577, 0.9818537587315656], [-0.6443184500034521, 0.8935559417611019], [-0.776554281567213, 0.611860590110105], [-0.6652540359886921, 0.6146163802738609], [-0.4467872300772846, 0.7870783289691542], [-0.2798368617095034, 0.7912120142147883], [-0.08437248440615305, 0.7682095856067311], [0.5604265604569145, 0.589279949285917]], "top_lip": [[-0.776554281567213, 0.611860590110105], [-0.6611203507430581, 0.44766601190607974], [-0.4642780783578297, 0.3690134605087622], [-0.2980166575309875, 0.4009722071490265], [-0.10255228022763714, 0.3779697785409693], [0.25779562282067736, 0.44257621936243685], [0.6995518674300654, 0.592724686990612], [0.5604265604569145, 0.589279949285917], [-0.10599701793233218, 0.5170950855141203], [-0.30077244769474354, 0.5122724527275473], [-0.44058670220883356, 0.5366527764174823], [-0.6652540359886921, 0.6146163802738609]], "right_eye": [[0.43274620192265684, -1.0008822354536382], [0.6031413079951331, -1.1358738571811553], [0.8264307466931136, -1.1581873382482732], [1.046964395227338, -1.0692005737368706], [0.8501221228421098, -0.990548022339553], [0.6268326841441292, -0.968234541272435]], "nose_tip": [[-0.7050583653363554, -0.026737926884511598], [-0.5401748395913911, 0.060870942545013046], [-0.3467773049108578, 0.1213436981208465], [-0.09428490973636904, 0.04406904180540699], [0.15820748543811977, -0.033205614510032525]], "chin": [[-1.0251801512531376, -0.5915065252683835], [-1.0904755396155439, -0.2033335608254389], [-1.1286348141242595, 0.21335341255307502], [-1.083318904449084, 0.632107228554406], [-0.9823528719846484, 1.052238939637615], [-0.8243588216490744, 1.4180984230134417], [-0.637850762377931, 1.756821792535577], [-0.39362573769471043, 2.0134478729557], [-0.006141720792704704, 2.1065683227127363], [0.4967762269334558, 2.0354941942657483], [1.057411140071694, 1.8823227767167472], [1.5922878344381186, 1.6449872274429165], [2.04575618724347, 1.3221096513623785], [2.3906800846340563, 0.8851760395395633], [2.542895394885049, 0.3599446107462846], [2.558052240785707, -0.25220673993557974], [2.599656252999117, -0.8080190202872447]], "transform": {"center": [128.34722222222223, 169.33333333333334], "scale": 35.92781337515203, "angle": -0.02475490692216797}, "nose_bridge": [[-0.28863855171491126, -1.1022700557019431], [-0.3511781499135617, -0.8253973368375193], [-0.4415428095068424, -0.5492135655140342], [-0.5040824077054927, -0.2723408466496103]]}], "embedding": [[-0.19943656027317047, 0.09005788713693619, 0.1312020719051361, -0.0675521045923233, -0.10148134082555771, -0.1734139770269394, 0.011290233582258224, -0.09450431168079376, 0.07958141714334488, -0.01787760853767395, 0.292245090007782, -0.07435546815395355, -0.1792943924665451, -0.12104128301143646, -0.011583706364035606, 0.09528385102748871, -0.07824157178401947, -0.14824725687503815, -0.06996419280767441, -0.07764548808336258, -0.0011658817529678345, 0.020244741812348366, -0.01460648700594902, 0.026904668658971786, -0.04273918643593788, -0.2947937548160553, -0.06567984074354172, -0.08420087397098541, 0.07040312886238098, -0.07889055460691452, 0.007747566793113947, 0.06538313627243042, -0.2128661423921585, -0.06429445743560791, -0.023477302864193916, 0.13321547210216522, 0.018736079335212708, -0.05710215866565704, 0.17887499928474426, 0.006839054636657238, -0.15529215335845947, -0.16345511376857758, -0.022057540714740753, 0.2508643567562103, 0.0882844626903534, -0.0005377829074859619, 0.007930414751172066, 0.07213222980499268, 0.030837567523121834, -0.21914498507976532, 0.05072714760899544, 0.13620403409004211, 0.16321371495723724, 0.02278391271829605, 0.015619296580553055, -0.143469899892807, 0.04850160703063011, 0.04577223211526871, -0.21348899602890015, -0.018178293481469154, 0.09101840853691101, -0.10291646420955658, -0.12436056137084961, -0.08286106586456299, 0.2880310118198395, 0.15894350409507751, -0.09338118135929108, -0.0782690942287445, 0.22242340445518494, -0.08760863542556763, -0.05827387794852257, 0.04449838772416115, -0.09655517339706421, -0.07382534444332123, -0.2344406247138977, 0.08282040059566498, 0.30413368344306946, 0.0710434764623642, -0.1963280439376831, -0.035048432648181915, -0.14515088498592377, 0.03299152851104736, -0.0329764187335968, -0.07768776267766953, -0.14571550488471985, 0.12655609846115112, -0.17697711288928986, -0.0024700500071048737, 0.13263724744319916, -0.006810019724071026, -0.026238687336444855, 0.15819624066352844, -0.023553278297185898, 0.03093782439827919, 0.05902451276779175, -0.0013629794120788574, 0.019412130117416382, -0.021490179002285004, -0.05733325332403183, 0.04773727431893349, 0.1749964952468872, -0.1711331009864807, -0.03757466748356819, 0.10598927736282349, -0.19287742674350739, 0.1118440106511116, 0.008370190858840942, 0.005210780538618565, -0.039218321442604065, -0.0151907317340374, -0.08630487322807312, -0.04866756498813629, 0.1561105102300644, -0.17838065326213837, 0.2345399707555771, 0.1544458568096161, -0.012175509706139565, 0.1386108547449112, 0.062135498970746994, 0.04625047370791435, -0.04770484194159508, -0.09740415960550308, -0.09906303882598877, -0.14216402173042297, 0.05144287273287773, -0.04884890466928482, 0.027111459523439407, 0.10592876374721527]]},
"000064": {"url": "http://i.imgur.com/VjhuFll.jpg", "landmarks": [{"chin": [[-1.9178887549901613, -0.8562455307936401], [-1.8577450013549317, -0.37968414219233465], [-1.7976365449541676, 0.06708774746708096], [-1.707703292377048, 0.5436138388339209], [-1.5582263391506148, 0.9902798367899396], [-1.2896619846255535, 1.3772256479243161], [-0.9318350249782195, 1.6746970705296267], [-0.48471016297414765, 1.9124836035477606], [-0.03776178714240383, 2.0013226418564454], [0.4387996014589016, 1.9411788882212158], [0.915184503887879, 1.7320876398765372], [1.3318845167296796, 1.4336984891751205], [1.65914543827688, 1.075836232293321], [1.8373176761767684, 0.5989924658162905], [1.955875618958412, 0.09242979486630147], [2.014854563856276, -0.4140622816147563], [2.044008712577785, -0.9503085598032383]], "nose_bridge": [[-0.04150329399576052, -1.1563642459838728], [-0.0411150244166386, -0.828679757623085], [-0.04079734930644793, -0.5605742671460767], [-0.04040907972732602, -0.2328897787852891]], "left_eyebrow": [[-1.5609795234389339, -1.3333010806774643], [-1.3824896104288544, -1.5420393566774866], [-1.0549110137714637, -1.6317961230822782], [-0.7272265254106759, -1.6321843926614001], [-0.39943614534649124, -1.5432041654148523]], "transform": {"scale": 33.5688525668412, "angle": 0.0011848879370496743, "center": [125.34722222222223, 166.81944444444446]}, "nose_tip": [[-0.3974947974508816, 0.09521827638908617], [-0.2186872093306116, 0.15458549086607198], [-0.03987962121034158, 0.2139527053430578], [0.1685762769139557, 0.1541266268180188], [0.37699687780378743, 0.06451104935109003]], "right_eyebrow": [[0.31551182925886384, -1.5440512990420274], [0.6728799248581445, -1.6338433626812845], [1.0303186149263561, -1.6640564284367618], [1.358108994990541, -1.5750762011902144], [1.5967073644013843, -1.3370425875308212]], "bottom_lip": [[0.7947911049140227, 0.6895963658482569], [0.43749360378367336, 0.8389674273712935], [0.16945870777559643, 0.8988641003652637], [-0.00927828587574231, 0.8990758837720574], [-0.21780477846897087, 0.8993229644133168], [-0.4562266617074861, 0.8102368454633725], [-0.7542981372987122, 0.6616423230985798], [-0.6351048442966873, 0.6912906331026071], [-0.21801656187576463, 0.7205859707619781], [-0.009490069282536085, 0.7203388901207186], [0.16924692436880268, 0.7201271067139249], [0.6756331091464636, 0.6897375547861194]], "top_lip": [[-0.7542981372987122, 0.6616423230985798], [-0.4564737423487455, 0.601710352870144], [-0.21819304804809278, 0.571638476052529], [-0.0096312582203986, 0.6011808943531595], [0.13928093925458473, 0.5712149092389415], [0.4372112259079483, 0.6006514358361751], [0.7947911049140227, 0.6895963658482569], [0.6756331091464636, 0.6897375547861194], [0.16921162713433704, 0.6903376077720351], [-0.009525366517001713, 0.6905493911788289], [-0.21805185911023026, 0.6907964718200883], [-0.6351048442966873, 0.6912906331026071]], "right_eye": [[0.5246736720724737, -1.0080873987292707], [0.7330589757278398, -1.1274924751380895], [0.9713749672629581, -1.1277748530138145], [1.209832147735939, -1.0088992351219803], [0.9715514534352863, -0.9788273583043654], [0.733235461900168, -0.9785449804286404]], "left_eye": [[-1.1732924703807788, -0.9762859574228402], [-0.9946966656673026, -1.0956557365971928], [-0.75641597136665, -1.125727613414808], [-0.5179234936592034, -0.977062496581084], [-0.7562041879598562, -0.9469906197634691], [-0.9945201794949745, -0.946708241887744]]}], "embedding": [[-0.10201483964920044, 0.08911806344985962, 0.049541644752025604, -0.017952866852283478, -0.19738078117370605, -0.04186747223138809, -0.04015723615884781, 0.007917597889900208, 0.19145269691944122, -0.021367628127336502, 0.19583822786808014, -0.0027636848390102386, -0.13724622130393982, -0.12357278168201447, 0.0576544851064682, 0.10320085287094116, -0.22075091302394867, -0.1421990841627121, -0.052150167524814606, -0.07263258844614029, 0.02927304059267044, 0.07079717516899109, -0.08984877914190292, 0.11956660449504852, -0.2154940366744995, -0.3122285008430481, -0.004377376288175583, -0.13315363228321075, 0.088896244764328, -0.11727797985076904, 0.031948406249284744, 0.09170089662075043, -0.16772782802581787, -0.14133009314537048, 0.06341054290533066, 0.16905833780765533, -0.03912987932562828, -0.04685691371560097, 0.22273938357830048, -0.021457817405462265, -0.19804058969020844, 0.013796363025903702, 0.04484282806515694, 0.2889173626899719, 0.192655548453331, 0.03807448223233223, -0.016532259061932564, 0.01843126118183136, 0.2533555328845978, -0.2819978594779968, 0.07643476128578186, 0.16822463274002075, 0.226465106010437, 0.06384359300136566, 0.05313707888126373, -0.18872669339179993, -0.0013199672102928162, 0.19722840189933777, -0.3118620216846466, 0.0708748996257782, 0.021732734516263008, -0.1617242842912674, 0.018232228234410286, -0.0509653240442276, 0.2002658247947693, 0.08508827537298203, -0.12251679599285126, -0.06766967475414276, 0.11943768709897995, -0.11565814167261124, -0.054246582090854645, 0.1124579980969429, -0.0649472326040268, -0.17196205258369446, -0.27822259068489075, 0.07478194683790207, 0.44601619243621826, 0.11876074224710464, -0.25417548418045044, -0.0526432991027832, -0.006184056401252747, -0.07638123631477356, 0.031225014477968216, 0.08893755823373795, -0.040939733386039734, -0.10627748817205429, -0.11139170825481415, 0.061389897018671036, 0.17351709306240082, 0.030976856127381325, 0.013601014390587807, 0.17881998419761658, 0.049281999468803406, 0.07618217170238495, -0.004646001383662224, 0.0176435187458992, -0.13755211234092712, 0.032828208059072495, -0.05239597335457802, 0.02099677361547947, 0.06364809721708298, -0.01908053830265999, 0.021607620641589165, 0.049600157886743546, -0.12316769361495972, 0.2341660112142563, 0.04256598278880119, -0.008511833846569061, -0.06400801986455917, -0.0635697990655899, -0.0874379351735115, 0.04009877145290375, 0.21136298775672913, -0.2361309826374054, 0.27303144335746765, 0.07223859429359436, -0.027702683582901955, 0.23740917444229126, 0.034076444804668427, 0.005114386789500713, -0.005785966757684946, -0.11505445837974548, -0.14910727739334106, -0.09065236151218414, 0.08858804404735565, -0.1355900913476944, 0.16467389464378357, 0.01619821973145008]]},
"000065": {"landmarks": [{"right_eye": [[0.515639476251333, -0.9633957813819364], [0.728942195035616, -1.113645529650792], [0.9717760806939065, -1.1423785691713169], [1.2138118389987143, -1.0497944317818821], [1.0007086520528021, -0.9298739777405165], [0.7580742982328823, -0.9314702324474815]], "nose_tip": [[-0.4622806170480594, 0.15240308620733295], [-0.2503746211323708, 0.21445839753090723], [-0.03826909337831156, 0.2461844146269916], [0.17443502989085954, 0.18692254904060598], [0.38693962132166, 0.1579899776817104]], "right_eyebrow": [[0.30612786239609185, -1.3894026234353904], [0.6407477580903348, -1.5388542443507636], [1.0054974161736971, -1.657777039200276], [1.3694489469035769, -1.6553826571398285], [1.6410158720823922, -1.441281811002063]], "nose_bridge": [[-0.029888756166745384, -1.0276459429275877], [-0.03208360638882224, -0.6940237064251978], [-0.06440821900001845, -0.3909302959886686], [-0.0666030692220953, -0.05730805948627884]], "top_lip": [[-0.7691651324136304, 0.6963350639184464], [-0.49560288885110876, 0.607142967781312], [-0.22204064528858705, 0.5179508716441776], [-0.010134649372898439, 0.5800061829677519], [0.20236994205790204, 0.5510736116088564], [0.5052638206560606, 0.6137275184475426], [0.8079581674158486, 0.7067107195137188], [0.6864414586675179, 0.7362418863877263], [0.20137228286604894, 0.7027200827463063], [-0.011132308564751555, 0.7316526541052019], [-0.22323783631881078, 0.6999266370091175], [-0.6480474873420412, 0.7274624854994188]], "left_eye": [[-1.1824019368113647, -1.0352281527856713], [-0.9694982817038228, -1.124819312599547], [-0.696534633656413, -1.1230235260542114], [-0.5157560593216969, -0.9398505696590477], [-0.7282606507524974, -0.910917998300152], [-0.9708950045724172, -0.912514253007117]], "transform": {"angle": -0.006578753804367742, "center": [125.20833333333333, 164.875], "scale": 32.97070985485956}, "chin": [[-1.9394371014683902, -1.2221922141098767], [-1.9126993803315717, -0.6760653861766864], [-1.825303070739773, -0.12953949456675495], [-1.737507697471233, 0.3563278085881966], [-1.558724441520223, 0.84279370725826], [-1.2580254131441413, 1.239069850599336], [-0.9267975587021989, 1.6052162315512926], [-0.503983226062675, 1.8809733253358913], [-0.019313113937947105, 1.975153717432291], [0.4665541892170044, 1.8873583441637511], [0.9232893891746898, 1.6173876736919006], [1.289635301965017, 1.2558305250224684], [1.5957216899771056, 0.8332157242213148], [1.7806904329176048, 0.37947350183918893], [1.8449405944632558, -0.16605473057888948], [1.9393205183980264, -0.6810541369311073], [1.9732413857161875, -1.2267819011875565]], "left_eyebrow": [[-1.6347474363248962, -1.4325019553186005], [-1.3302573030197729, -1.612482402299834], [-0.9966350665173829, -1.610287552077757], [-0.6332821313026151, -1.5169052873348396], [-0.30065755399207833, -1.3630639659753128]], "bottom_lip": [[0.8079581674158486, 0.7067107195137188], [0.5026699067572424, 1.0080083434049123], [0.2289081313563502, 1.1275297337695367], [-0.01392575430194028, 1.1562627732900617], [-0.2260312820559995, 1.1245367561939772], [-0.49799727091155627, 0.9710944985111918], [-0.7691651324136304, 0.6963350639184464], [-0.6480474873420412, 0.7274624854994188], [-0.22443502734903453, 0.8819024023740574], [-0.012329499594975294, 0.9136284194701417], [0.19997555999745456, 0.9150251423387361], [0.6864414586675179, 0.7362418863877263]]}], "url": "http://i.imgur.com/Pitgp7I.jpg", "embedding": [[-0.12005043774843216, 0.08865515142679214, 0.025634735822677612, -0.021902479231357574, -0.07446400076150894, 0.02375912107527256, -0.08508217334747314, -0.16439640522003174, 0.14431124925613403, -0.10315980017185211, 0.2836017310619354, -0.07009872794151306, -0.19633027911186218, -0.1560649573802948, -0.04249229282140732, 0.15429097414016724, -0.13270311057567596, -0.1413528472185135, -0.0399397648870945, -0.022822557017207146, 0.09161960333585739, -0.08655819296836853, 0.06537637859582901, 0.07744860649108887, -0.18554681539535522, -0.276996374130249, -0.10933545231819153, -0.09705188125371933, -0.026198411360383034, -0.07532177865505219, -0.10733946412801743, 0.02920461818575859, -0.22207531332969666, -0.09224894642829895, -0.022831905633211136, 0.07942259311676025, 0.014709586277604103, -0.0340130440890789, 0.17812392115592957, -0.08085402101278305, -0.18371157348155975, 0.02435244247317314, 0.043842561542987823, 0.22408640384674072, 0.18704159557819366, 0.03345321863889694, -0.02526675909757614, -0.08496548235416412, 0.16762395203113556, -0.14637866616249084, 0.09236019849777222, 0.12107622623443604, 0.14491137862205505, 0.011133210733532906, 0.027655594050884247, -0.10010484606027603, 0.017317034304142, 0.15807783603668213, -0.12229445576667786, 0.004873447120189667, 0.01444627158343792, -0.08836393803358078, -0.05043594539165497, -0.11896240711212158, 0.20074988901615143, 0.12972614169120789, -0.08071579039096832, -0.2309948056936264, 0.08483795821666718, -0.048634640872478485, -0.0544314980506897, 0.1175033301115036, -0.20287594199180603, -0.18771854043006897, -0.35627326369285583, 0.04633677750825882, 0.3961920738220215, 0.07824201136827469, -0.22441263496875763, 0.06967861205339432, -0.031842634081840515, -0.020841069519519806, 0.08938799053430557, 0.09720495343208313, 0.006333455443382263, 0.024284590035676956, -0.1384366899728775, 0.019150778651237488, 0.1822453737258911, -0.0940762460231781, -0.07571367174386978, 0.18332165479660034, -0.038728807121515274, 0.06295352429151535, 0.02013380266726017, 0.03901663422584534, -0.09496934711933136, 0.08125390857458115, -0.13446567952632904, -0.009453952312469482, 0.08189657330513, 0.04451022669672966, -0.019396834075450897, 0.06002572551369667, -0.11776453256607056, 0.0709020271897316, -0.0045438650995492935, 0.060101769864559174, -0.00958623830229044, -0.05920690298080444, -0.14652657508850098, -0.04826236888766289, 0.11071974039077759, -0.2821120023727417, 0.15956926345825195, 0.09777746349573135, 0.04510074853897095, 0.10072945803403854, 0.13072893023490906, 0.06114157289266586, 0.01672622561454773, 0.049596186727285385, -0.19857506453990936, -0.01700432412326336, 0.177877277135849, -0.04803885519504547, 0.12378363311290741, 0.017780335620045662]]},
"000068": {"embedding": [[-0.0640389621257782, 0.13193078339099884, 0.0055447593331336975, 0.012554340064525604, -0.11827687919139862, -0.00048047397285699844, -0.057740699499845505, -0.07738356292247772, 0.11323216557502747, 0.029314391314983368, 0.1212102398276329, 0.06766390800476074, -0.22397691011428833, 0.03870144486427307, -0.02934125065803528, 0.06462035328149796, -0.07782476395368576, -0.0948762521147728, -0.19670556485652924, -0.027075808495283127, 0.020807821303606033, 0.023499876260757446, 0.03147415444254875, -0.02176249772310257, -0.1865766942501068, -0.2179338037967682, -0.060723718255758286, -0.015420190989971161, 0.015087103471159935, -0.0833941176533699, 0.014074422419071198, -0.0383908636868, -0.29966768622398376, -0.09193801134824753, 0.027833152562379837, 0.017349760979413986, -0.13115781545639038, -0.001459859311580658, 0.17347517609596252, 0.010416727513074875, -0.19651347398757935, 0.04149268940091133, 0.07714326679706573, 0.19203472137451172, 0.2752673327922821, 0.009272947907447815, 0.018335431814193726, -0.007233227603137493, 0.02985166758298874, -0.2819569408893585, 0.04718853533267975, 0.1145922914147377, 0.24415560066699982, 0.10294440388679504, 0.0800245851278305, -0.13345547020435333, -0.025484852492809296, 0.20697152614593506, -0.11052440851926804, 0.11513417214155197, 0.06101062148809433, -0.08138479292392731, -0.015849215909838676, -0.04503609985113144, 0.15980185568332672, 0.08497059345245361, -0.10688596963882446, -0.1464691311120987, 0.1429767906665802, -0.1608835756778717, -0.005226463545113802, 0.16051732003688812, 0.006941378116607666, -0.19493581354618073, -0.2875813841819763, -0.0077724577859044075, 0.3580906093120575, 0.16906018555164337, -0.23447243869304657, -0.10934445261955261, -0.11210627108812332, -0.0027656061574816704, -0.06145511940121651, -0.06691166013479233, -0.0867575854063034, -0.049219101667404175, -0.12633304297924042, 0.01150309294462204, 0.27677175402641296, 0.002739259973168373, -0.013194285333156586, 0.2167106419801712, 0.05550280585885048, -0.035692621022462845, -0.02579173445701599, 0.06421356648206711, -0.1331280916929245, -0.07754102349281311, -0.0802488923072815, -0.028889242559671402, -0.056410957127809525, -0.0992075726389885, 0.012764252722263336, 0.1667909175157547, -0.10555008053779602, 0.2014334350824356, -0.04456357657909393, 0.012381350621581078, -0.05091731622815132, 0.052811399102211, -0.05809063836932182, -0.0381331667304039, 0.14943738281726837, -0.2279973179101944, 0.19428151845932007, 0.1409938782453537, -0.09504041820764542, 0.02586611546576023, 0.004230457823723555, 0.06873471289873123, -0.04807859659194946, 0.05393511801958084, -0.14605067670345306, -0.13840430974960327, -0.04275895282626152, -0.12131606042385101, 0.07409849762916565, 0.053625427186489105]], "url": "http://i.imgur.com/CDct2qj.jpg", "landmarks": [{"right_eye": [[0.49175017026678947, -1.1164700371309313], [0.7042145156812861, -1.29478393545707], [0.9445731236655505, -1.26219753449836], [1.123825449669478, -1.1399849705376863], [0.942383459084044, -1.0516100444394403], [0.7020248510997796, -1.0841964453981505]], "left_eyebrow": [[-1.491286547909874, -1.3777868632524717], [-1.2186543481928291, -1.5554751431267517], [-0.886792721851024, -1.6422860230953498], [-0.5558695231870074, -1.6388451216101254], [-0.22588475220077925, -1.5451524386710784]], "bottom_lip": [[0.7437369610724881, 0.6913808749788883], [0.5601053059055477, 0.9903432911360538], [0.28841153386629115, 1.077779789556511], [0.04742730743016776, 1.1053612429003494], [-0.19293130055409666, 1.0727748419416392], [-0.5226032623143952, 0.9489982318513177], [-0.7902305144165684, 0.64534367730521], [-0.6698948058114715, 0.646594914208928], [-0.1910544451985197, 0.8922712790339937], [0.04930416278574471, 0.924857679992704], [0.28997557999593865, 0.9273601538001398], [0.6531723703927358, 0.7205263744523741]], "transform": {"scale": 33.238544334481745, "center": [124.04166666666667, 167.27777777777777], "angle": -0.010397510666022063}, "right_eyebrow": [[0.37548098159877596, -1.5088123270012144], [0.6772586807893067, -1.5959360161957419], [0.9780979523020491, -1.592807923936447], [1.2479148689857287, -1.499740859449259], [1.4265415765377973, -1.3173604411860365]], "chin": [[-2.0070926386445485, -0.9619296399754336], [-1.9826392775600057, -0.42010614202656793], [-1.9277891800982585, 0.09194623799695305], [-1.8428551554852373, 0.6043114272464035], [-1.637585422267119, 1.117927853399572], [-1.3411254799173895, 1.5422309257767062], [-0.923078592058845, 1.8474495264524615], [-0.4439254222199638, 2.063041964126253], [0.03679179374856501, 2.1282147660436737], [0.5190730558467412, 2.0429679322047227], [0.8828954646953975, 1.7759662985544085], [1.1574045197680194, 1.417774455772483], [1.312516293913333, 0.9680795946330167], [1.4378569501333018, 0.487987997116347], [1.5027169428247926, 0.03735470829909247], [1.5378058175909388, -0.44367531689536577], [1.5428107652058107, -0.9250181513157535]], "nose_tip": [[-0.30231868625166136, 0.018586154743322928], [-0.09266962387053015, 0.11102760077865209], [0.11729224773653048, 0.173385119662707], [0.32850535624730914, 0.11540692994166499], [0.47955061045553926, 0.05680312176876396]], "nose_bridge": [[0.10128473575208342, -1.1807044113705631], [0.12792776141813322, -0.849468403480617], [0.15425797785825357, -0.48814846843939663], [0.1805881942983739, -0.12682853339817637]], "top_lip": [[-0.7902305144165684, 0.64534367730521], [-0.4884528152260376, 0.5582199881106822], [-0.15721680733609156, 0.5315769624446325], [0.05274506427096913, 0.5939344813286874], [0.2937292907070925, 0.566353027984849], [0.5340878986913569, 0.5989394289435592], [0.7437369610724881, 0.6913808749788883], [0.6531723703927358, 0.7205263744523741], [0.29310367225523354, 0.6265208822873974], [0.05211944581911015, 0.6541023356312359], [-0.15815523501388004, 0.6218287438984551], [-0.6698948058114715, 0.646594914208928]], "left_eye": [[-1.1023851595248155, -1.1631328532564686], [-0.9206303597134521, -1.2815917065059887], [-0.6796461332773287, -1.3091731598498269], [-0.47093549857398603, -1.1264799323606751], [-0.6818357978588352, -1.0985856697909073], [-0.9225072150690291, -1.1010881435983433]]}]},
"000069": {"landmarks": [{"nose_bridge": [[0.0016208158496523834, -1.2077287996066615], [0.002569770132315876, -1.010554428090501], [0.0035187244149793677, -0.8133800565743409], [0.03277101095461768, -0.5881734825962526]], "right_eye": [[0.45298291808849267, -1.0690590011697776], [0.7055438700408924, -1.2674534567636484], [0.9591893411734789, -1.240505773481907], [1.1573126669723026, -1.0442803562484102], [0.9605449901487124, -0.9588280998873923], [0.6785961867591511, -1.0138079856310616]], "left_eye": [[-1.1527153862977644, -1.089499569370398], [-0.984657736423719, -1.2874873302716983], [-0.7311478301886558, -1.2887074143494086], [-0.5048567370303806, -1.092617562013435], [-0.7299277461109457, -1.0351975081143454], [-0.9833020874484855, -1.0058096566771835]], "bottom_lip": [[0.5743301409677932, 0.7331358502450226], [0.3491235669897049, 0.762388136784661], [0.15181363057602126, 0.735169323707873], [-0.017192973580687526, 0.7359827130930131], [-0.15803181037794486, 0.7366605375806299], [-0.35507061699658177, 0.7657772592227449], [-0.5523805534102654, 0.7385584461459569], [-0.43998061376750625, 0.6816806518369605], [-0.15884519976308498, 0.567653933423921], [0.010161404393623808, 0.5668405440387809], [0.15086467629335779, 0.5379949521917128], [0.43322017437548926, 0.6774781400137365]], "right_eyebrow": [[0.2820784053664569, -1.462594354816958], [0.6478526863467559, -1.5488600005631161], [1.0423369942765996, -1.5225901417689918], [1.381028027077634, -1.3833780837420149], [1.6077258149284794, -1.1027849293276868]], "top_lip": [[-0.5523805534102654, 0.7385584461459569], [-0.35656183086933874, 0.45593181826877877], [-0.16006528384079519, 0.31414402718885787], [0.00907688521343696, 0.3414984051631692], [0.14978015711317094, 0.31265281331610095], [0.34763235311694796, 0.4525426958306949], [0.5743301409677932, 0.7331358502450226], [0.43322017437548926, 0.6774781400137365], [0.15072911139583442, 0.5098271848322614], [0.009890274598577097, 0.5105050093198782], [-0.1591163295581317, 0.5113183987050183], [-0.43998061376750625, 0.6816806518369605]], "nose_tip": [[-0.3315120561529244, -0.19206239589612836], [-0.1622343222011689, -0.13654025056236552], [0.00677228195553991, -0.13735363994750566], [0.17577888611224868, -0.1381670293326458], [0.34464992537143413, -0.16714818607723742]], "transform": {"angle": 0.004812729710658828, "scale": 35.50116010537065, "center": [124.73611111111111, 169.875]}, "chin": [[-1.8825016045905587, -0.5507873022052128], [-1.8520292339732103, -0.07207082199206126], [-1.7935246608939333, 0.3783423259641155], [-1.7067167555576823, 0.8567876763822204], [-1.563573315502528, 1.3349618970052783], [-1.3364688329591123, 1.7000583534979608], [-0.9689322083110098, 1.979973683424672], [-0.5175701060721696, 2.118643481861555], [0.017888603552455095, 2.1724032835275144], [0.5529406184845096, 2.141659783115119], [1.002811506850593, 1.970484140598037], [1.3393335012912537, 1.6590119208737906], [1.5910810638585133, 1.291610861123211], [1.7297508622953968, 0.840248758884371], [1.840252893372829, 0.38902222154305405], [1.8944193897313581, -0.06193318600321612], [1.9202825538329127, -0.5409207960114144]], "left_eyebrow": [[-1.631838561203486, -1.1435305008314038], [-1.4361554035600825, -1.4543248960680333], [-1.0706522523748303, -1.5969260765330942], [-0.6763035093425098, -1.5988239850984212], [-0.3095802740795473, -1.487915259328419]]}], "url": "http://i.imgur.com/ZMQmtxO.jpg", "embedding": [[-0.07946590334177017, 0.14227263629436493, 0.02637472003698349, -0.13764417171478271, -0.138149231672287, -0.021494699642062187, -0.07406453043222427, -0.03678002953529358, 0.0659509152173996, -0.10170270502567291, 0.17044313251972198, -0.07746390253305435, -0.25621458888053894, -0.016905419528484344, -0.048465874046087265, 0.10653235763311386, -0.1717931181192398, -0.036112044006586075, -0.1529858410358429, -0.07215980440378189, 0.11750447750091553, 0.06262091547250748, 0.023433968424797058, 0.02427874505519867, -0.13754437863826752, -0.25436267256736755, -0.0639125257730484, -0.12581302225589752, -0.04396001994609833, -0.17943888902664185, -0.03635280579328537, 0.004011233802884817, -0.1565837860107422, -0.04324789717793465, -0.03827325999736786, 0.039884380996227264, -0.06769929081201553, -0.08535688370466232, 0.13450513780117035, 0.002843082882463932, -0.10427649319171906, 0.07119161635637283, -0.007190961390733719, 0.19756346940994263, 0.1975751668214798, 0.02526530809700489, -0.031002715229988098, -0.06356820464134216, 0.20333202183246613, -0.2909959554672241, 0.010316286236047745, 0.11741067469120026, 0.07808184623718262, 0.11486795544624329, 0.09719276428222656, -0.09182168543338776, 0.10701140016317368, 0.08892660588026047, -0.2549777030944824, -0.0036617200821638107, 0.023641785606741905, -0.07830852270126343, -0.01546703651547432, -0.07481161504983902, 0.21418806910514832, 0.08407196402549744, -0.12949326634407043, -0.06293986737728119, 0.11122798174619675, -0.09295906126499176, -0.01106798555701971, 0.05874240770936012, -0.08252161741256714, -0.17735320329666138, -0.17586058378219604, 0.09651302546262741, 0.3073914051055908, 0.19449420273303986, -0.15579625964164734, 0.027964428067207336, -0.12593881785869598, -0.0645897313952446, -0.00875224731862545, -0.04211696237325668, -0.12213020026683807, 0.045964960008859634, -0.06767331063747406, 0.12582381069660187, 0.15306203067302704, -0.11145451664924622, 0.0014946497976779938, 0.33862248063087463, 0.03296559303998947, 0.07066259533166885, 0.07748468965291977, 0.0072988420724868774, -0.1364680826663971, -0.027183271944522858, -0.06832645833492279, 0.0755012258887291, 0.12665636837482452, -0.213486447930336, -0.03493841364979744, 0.03286528214812279, -0.11930902302265167, 0.14661113917827606, -0.06379274278879166, -0.015270784497261047, -0.10235210508108139, -0.08456778526306152, -0.1706000417470932, 0.019729427993297577, 0.16687221825122833, -0.2630351781845093, 0.19840863347053528, 0.14129354059696198, 0.03373781591653824, 0.1306411623954773, 0.10281822830438614, 0.0028529921546578407, -0.015118995681405067, -0.05413250997662544, -0.12103290110826492, -0.09852362424135208, 0.19899411499500275, 0.03215523064136505, 0.05033262073993683, 0.026940040290355682]]},
"000071": {"landmarks": [{"nose_tip": [[-0.4016410164005476, 0.15324392330445336], [-0.28111894415995764, 0.2467227246479121], [-0.09959489647994892, 0.3411894450835361], [0.08489290847655556, 0.2526502392009035], [0.26888675388697747, 0.19461202103798037]], "right_eyebrow": [[0.29309077164502567, -1.299936377227782], [0.6305774747461599, -1.4165067730997112], [0.9375631901275848, -1.5335711285177227], [1.2735680145904713, -1.5586385612305231], [1.6385919481348192, -1.491709071238113]], "chin": [[-1.843460247372883, -1.243010582294437], [-1.7908555842168685, -0.7235058719672113], [-1.6767549860753526, -0.23351423026752982], [-1.5316594406680448, 0.2264703832585248], [-1.356062907541027, 0.6869489563306621], [-1.088469451708799, 1.1184084203213378], [-0.789387089064696, 1.4893598684186773], [-0.42930275098117415, 1.861299235608182], [-0.00426476108957247, 1.9902186201321763], [0.4847389615179437, 1.9371199974300792], [0.9781883200402034, 1.6095124852505973], [1.3806286749494177, 1.2499221067131578], [1.7235489330574607, 0.7978408459244253], [1.9149521716591218, 0.2822878119658605], [2.0453534348213642, -0.23425314108486947], [2.1462416293560618, -0.8122900291211008], [2.185633888905259, -1.3608138485297883]], "top_lip": [[-0.8060572094940921, 0.6348382527207304], [-0.5320422795627898, 0.6697848763551834], [-0.25703943053932227, 0.6437295245502174], [-0.07502142331323088, 0.707695257266132], [0.10897242209719099, 0.6496570391032088], [0.4139822992942853, 0.6545966345640349], [0.779500192384716, 0.6910251368367359], [0.6570022819597957, 0.7195502863721148], [0.13749757163256995, 0.7721549495281291], [-0.07650330195147872, 0.7991982204252603], [-0.28951625644336215, 0.7652395158829726], [-0.6850411777074196, 0.6978160663444797]], "left_eye": [[-1.2354163311630246, -1.1111274404939468], [-1.0204275384868107, -1.1991726868304968], [-0.7459186490094257, -1.1947270509157533], [-0.5353754922479553, -1.0082634077749184], [-0.7803713130977961, -0.9512131087041604], [-1.054880202575181, -0.955658744618904]], "transform": {"center": [126.08333333333333, 163.76388888888889], "scale": 32.78152491528735, "angle": -0.016193454887269317}, "left_eyebrow": [[-1.6255076974201734, -1.5140617549492437], [-1.3195099011309135, -1.5701241349278363], [-1.0154879430259847, -1.5041825640275912], [-0.7124539040132205, -1.3772390176879272], [-0.408925905454374, -1.2807964590679728]], "nose_bridge": [[-0.07687275736014854, -1.061855990023098], [-0.08280027191313995, -0.6958441373865848], [-0.11972273373192341, -0.2998252565764447], [-0.1256502482849148, 0.06618659606006858]], "bottom_lip": [[0.779500192384716, 0.6910251368367359], [0.43904973200708597, 0.9906014590269214], [0.13157005707957856, 1.1381668021646425], [-0.08243081650447012, 1.1652100730617736], [-0.29544377099635355, 1.1312513685194858], [-0.5369818750236159, 0.9747947535522776], [-0.8060572094940921, 0.6348382527207304], [-0.6850411777074196, 0.6978160663444797], [-0.2604971473619006, 0.8572364385881834], [-0.07798518058972657, 0.8907011835843888], [0.13601569299432212, 0.8636579126872574], [0.6570022819597957, 0.7195502863721148]], "right_eye": [[0.5316651183957923, -0.9604738359423173], [0.7481357897102541, -1.140022045437996], [1.022644679187639, -1.1355764095232523], [1.2646767427609842, -1.0096207822757532], [1.0491939905386878, -0.8910745482194941], [0.7746851010613026, -0.8955201841342376]]}], "embedding": [[-0.029317734763026237, 0.019389476627111435, 0.025603055953979492, -0.06315150856971741, -0.059600673615932465, -0.1150858998298645, 0.03502407670021057, -0.09481318295001984, 0.24138328433036804, -0.10966251790523529, 0.15345589816570282, -0.07414930313825607, -0.2515263557434082, -0.03530316799879074, -0.07339785993099213, 0.12787508964538574, -0.12265637516975403, -0.24917398393154144, -0.09030895680189133, -0.009466240182518959, 0.10295751690864563, -0.06182113662362099, 0.056235264986753464, 0.08342304825782776, -0.17522145807743073, -0.22967156767845154, -0.05924263224005699, -0.10286206007003784, 0.03330076113343239, -0.12300696223974228, 0.10445863753557205, 0.14517195522785187, -0.2144027054309845, 0.011576175689697266, -0.01558549702167511, 0.029698938131332397, -0.017277151346206665, -0.11581341922283173, 0.3405449688434601, 0.014452855102717876, -0.2472374588251114, -0.1102420836687088, 0.06997303664684296, 0.2548142969608307, 0.2417878657579422, 0.022596437484025955, 0.033545587211847305, -0.028756454586982727, 0.15322569012641907, -0.40977680683135986, -0.01615983061492443, 0.1845369040966034, 0.02715481072664261, 0.13022169470787048, 0.09118950366973877, -0.20642267167568207, 0.07651329040527344, 0.10547710210084915, -0.23645980656147003, 0.15549081563949585, -0.001830119639635086, -0.07885073125362396, 0.0128428153693676, -0.017339754849672318, 0.29811230301856995, 0.05160290747880936, -0.130892813205719, -0.07230086624622345, 0.26514697074890137, -0.2252432256937027, -0.04144689440727234, 0.18124617636203766, -0.11188624799251556, -0.21819087862968445, -0.21067935228347778, -0.08367757499217987, 0.35595035552978516, 0.16597133874893188, -0.11070835590362549, 0.10369660705327988, -0.1036408543586731, -0.027368653565645218, -0.011507198214530945, 0.051238562911748886, 0.0047021955251693726, 0.021947037428617477, -0.1351417601108551, -0.012867454439401627, 0.34032613039016724, -0.05330726504325867, -0.030206959694623947, 0.31916365027427673, 0.005700454115867615, -0.04364576190710068, -0.032304033637046814, 0.011007800698280334, -0.03357305750250816, -0.01464165560901165, -0.16444016993045807, -0.0126023069024086, 0.020145142450928688, -0.03416774794459343, -0.01673162169754505, 0.04932324215769768, -0.1617586761713028, 0.10465528815984726, -0.024571150541305542, -0.011904176324605942, -0.13917145133018494, -0.03142830356955528, -0.1360497772693634, 0.02593149244785309, 0.14891864359378815, -0.2745206654071808, 0.2795030176639557, 0.15174365043640137, 0.07854185253381729, 0.08496466279029846, 0.021549569442868233, 0.029632821679115295, 0.07706156373023987, -0.09548866748809814, -0.06643136590719223, -0.10777855664491653, 0.021424569189548492, -0.0019876277074217796, 0.047571614384651184, 0.07000085711479187]], "url": "http://i.imgur.com/Arky1iY.jpg"},
"000073": {"embedding": [[-0.18568217754364014, 0.04932505264878273, 0.08206261694431305, -0.07571130245923996, -0.15564247965812683, -0.045307762920856476, -0.031223265454173088, -0.02939445525407791, 0.23179802298545837, -0.06682833284139633, 0.13717691600322723, 0.13297414779663086, -0.21472783386707306, 0.041996777057647705, -0.017911717295646667, 0.11679695546627045, -0.1522601693868637, -0.21018409729003906, -0.03575307875871658, -0.034466736018657684, 0.09567480534315109, -0.004103171639144421, -0.063152015209198, 0.14549189805984497, -0.163287952542305, -0.2842084765434265, -0.028966691344976425, -0.005303023383021355, -0.049471206963062286, -0.06279648840427399, 0.02203117311000824, 0.16473343968391418, -0.21812033653259277, -0.033776916563510895, 0.0538899302482605, 0.20454879105091095, -0.03956161439418793, -0.10422667860984802, 0.208006352186203, 0.0728888213634491, -0.28628116846084595, -0.0016108956187963486, 0.09705667197704315, 0.2518390119075775, 0.284249871969223, -0.033398717641830444, 0.027397096157073975, -0.06982706487178802, 0.1949174404144287, -0.35101211071014404, 0.09532180428504944, 0.23947690427303314, 0.09724608063697815, 0.09292091429233551, 0.1657315194606781, -0.22158005833625793, 0.024951551109552383, 0.09254759550094604, -0.22423899173736572, 0.0036694360896945, 0.0403144508600235, -0.1222771629691124, 0.004147147759795189, -0.1612566113471985, 0.17116235196590424, 0.1563621312379837, -0.1300957053899765, -0.1539614200592041, 0.21187672019004822, -0.12061510235071182, -0.08650004118680954, 0.20375746488571167, -0.1238623708486557, -0.20455247163772583, -0.23592381179332733, 0.11674345284700394, 0.39487943053245544, 0.2030295431613922, -0.09590818732976913, 0.09911969304084778, -0.07307901233434677, -0.07794816792011261, -0.07351622730493546, 0.10450654476881027, -0.01761779561638832, 0.00849304348230362, -0.05243587866425514, 0.07355275005102158, 0.18598265945911407, 0.13535310328006744, -0.013279959559440613, 0.24158181250095367, 0.02150096371769905, -0.06933286786079407, 0.05700787901878357, 0.155016228556633, -0.1314295381307602, 0.0001575872302055359, -0.19064871966838837, -0.09183220565319061, 0.029589572921395302, -0.06165415421128273, 0.03946036845445633, 0.09387101978063583, -0.18971537053585052, 0.09795328974723816, -0.08987785875797272, -0.003156304359436035, -0.08043380826711655, -0.06691563874483109, -0.11418432742357254, 0.06453794986009598, 0.0784432515501976, -0.32677891850471497, 0.24521484971046448, 0.03762444853782654, -0.019905176013708115, 0.1321483850479126, 0.043105386197566986, 0.06625871360301971, 0.004017752595245838, -0.15481197834014893, -0.07745623588562012, -0.08513171970844269, 0.06597767770290375, -0.008303890936076641, 0.08984261006116867, 0.04690249636769295]], "url": "http://i.imgur.com/G54ryw8.jpg", "landmarks": [{"nose_bridge": [[-0.3423413353978563, -1.0456589596345618], [-0.40681502454934304, -0.7537494839344246], [-0.5005968111556793, -0.4624257576584662], [-0.5943785977620155, -0.1711020313825079]], "left_eye": [[-1.0469071731626012, -1.0011007509051535], [-0.9261602867981306, -1.174606337937535], [-0.7210036046141842, -1.1705060919682837], [-0.4900533215204612, -0.9899715118457567], [-0.7256896000076144, -0.9360413123294881], [-0.9314320316157395, -0.9108334608438899]], "nose_tip": [[-0.6289584400344739, 0.09208509628695857], [-0.5134832984876125, 0.18235238634822212], [-0.39683665809239327, 0.2140034814997867], [-0.21981657451493894, 0.15890178313516046], [-0.01348839348263508, 0.10438583419471298]], "top_lip": [[-0.5539206350018587, 0.7386204885661832], [-0.5802999853358143, 0.5914942518677572], [-0.4320022497890306, 0.5064987066241027], [-0.2866332613631408, 0.5680436486546954], [-0.1389212752405359, 0.5123562008658905], [0.27022059027899914, 0.5791728877140923], [0.6776052075259977, 0.7339138669268426], [0.5597870682824212, 0.7608789666849769], [-0.08440532630008843, 0.7186843818981943], [-0.2602539110291852, 0.7151698853531216], [-0.40679439830343256, 0.7122411382322277], [-0.4953044400921598, 0.7397919874145408]], "chin": [[-1.1371744632238645, -0.8856256093582919], [-1.2034054006478876, -0.5057918412936064], [-1.1817120457073624, -0.12420082495638456], [-1.0427863009474392, 0.2597331890775525], [-0.9044463056116948, 0.672975300566339], [-0.7362124633969221, 1.057495064024455], [-0.5685643706063283, 1.47132292493742], [-0.3411285840576778, 1.827706089789044], [0.00763983827962187, 1.9812755701534366], [0.4478470495265427, 1.960753714061269], [0.9800787991072635, 1.7368324240576911], [1.512896298112163, 1.4836030365992638], [2.018748697358928, 1.1125555098972604], [2.380403607028161, 0.6213468462549645], [2.566795681392476, 0.09731558861274678], [2.637712614209929, -0.5169829590907346], [2.6793214495725333, -1.1318672562183947]], "right_eyebrow": [[0.0181420754230191, -1.4782514283671584], [0.4020760894569561, -1.6171771731270814], [0.8135609526732063, -1.6675928760982777], [1.2525966650717695, -1.6294985372807465], [1.6306731848639189, -1.475343307492175]], "bottom_lip": [[0.6776052075259977, 0.7339138669268426], [0.34994439070504463, 0.9912435003545212], [-0.004095776449864169, 1.1014468970837736], [-0.20983820805798925, 1.1266547485693719], [-0.3557929459080578, 1.0944179039936284], [-0.49940468606141125, 0.9449486695984871], [-0.5539206350018587, 0.7386204885661832], [-0.4953044400921598, 0.7397919874145408], [-0.3798292985452983, 0.8300592774758043], [-0.2338745606952297, 0.8622961220515478], [-0.058611725390311634, 0.8951187160514699], [0.5597870682824212, 0.7608789666849769]], "left_eyebrow": [[-1.3300304075000564, -1.5051959018793823], [-1.2110407694081222, -1.5907771965472157], [-1.0351921846790255, -1.5872627000021429], [-0.8312070013434368, -1.5245462591231924], [-0.6283933168562056, -1.4032136233345434]], "transform": {"angle": -0.019983264138325418, "scale": 34.11345082231015, "center": [130.38888888888889, 166.43055555555554]}, "right_eye": [[0.36105300351853103, -1.031600973454271], [0.5404160847927004, -1.2039350616382951], [0.8047747113105246, -1.2279714142755356], [1.0656188412832759, -1.0761591821836791], [0.828811063947765, -0.9636127877577115], [0.5943462843089693, -0.9682987831511418]]}]},
"000076": {"url": "http://i.imgur.com/2vIoioO.jpg", "landmarks": [{"left_eye": [[-1.1704574033206367, -0.8002529016130445], [-1.00550241813883, -0.9697532199772945], [-0.7829109935399957, -1.000654717394428], [-0.5026831295241341, -0.892957393864445], [-0.7523882738880657, -0.8059345680910984], [-1.0028509737824047, -0.7746542929087613]], "top_lip": [[-0.8437981535142944, 0.6727581336314666], [-0.5681156226808758, 0.4460001536153929], [-0.3187892560821477, 0.33110605254654174], [-0.09544027595290624, 0.3559471057204177], [0.12677237088072443, 0.2971743330077795], [0.4623640077223919, 0.37624282571185064], [0.8548345284506798, 0.5381675887720287], [0.7158569297383597, 0.5679327528935514], [0.12904503747194596, 0.46440198478080785], [-0.09354638712688829, 0.4953034821979414], [-0.31651658949092615, 0.49833370431957014], [-0.7044417770367708, 0.6708642448054487]], "nose_tip": [[-0.4913197965680263, -0.056819134999302974], [-0.32371336702979436, -0.03122052629501978], [-0.15610693749156238, -0.005621917590736596], [0.03823443404656356, -0.06401591253817118], [0.26082585864539776, -0.09491740995530464]], "chin": [[-1.5843599773359682, -0.4879872068844387], [-1.6347996392141273, -0.09703179721696523], [-1.6016254752057726, 0.29278727915489733], [-1.5680725334322139, 0.7104776308222648], [-1.5341408138934516, 1.1560392577851368], [-1.361610273407573, 1.5439644453309813], [-1.051238467504985, 1.8185106428687894], [-0.6308966714811926, 1.980056628163764], [-0.10096366310139918, 2.0007311259204004], [0.48395434033899654, 1.9649055175556205], [1.0681147882489852, 1.8733373585998305], [1.5950175745071498, 1.6710416539924293], [1.9527988201662683, 1.3316622394987256], [2.1414585252263403, 0.8551991151187204], [2.21825435133919, 0.35237982650402444], [2.267557679921738, -0.12218940904996313], [2.2889897332087816, -0.5963798668387471]], "right_eye": [[0.49992522558362906, -0.9623359440027835], [0.7488728144171537, -1.1051013203671396], [0.9997142920766963, -1.108510320253972], [1.224578383266752, -0.9721841658980769], [1.0023657364331213, -0.9134113931854387], [0.7515242587735788, -0.9100023932986064]], "transform": {"center": [126.59722222222223, 169.27777777777777], "scale": 35.87592080592273, "angle": 0.013589419368557247}, "right_eyebrow": [[0.2132581395593064, -1.5438449475563467], [0.5740696073400535, -1.6602541596860128], [0.9921387367726244, -1.6659358261640667], [1.3567379822054075, -1.5036322853386848], [1.638859735047287, -1.256578585331178]], "left_eyebrow": [[-1.4525791561625165, -1.047306601620551], [-1.3173893351022323, -1.3557845186971211], [-1.0688205240339113, -1.5264211703569817], [-0.7351227760182616, -1.5867090541304343], [-0.39953113917659405, -1.5076405614263633]], "bottom_lip": [[0.8548345284506798, 0.5381675887720287], [0.46577300760922424, 0.6270843033713932], [0.1599465348890794, 0.6869934093796422], [-0.09051616500525957, 0.7182736845619792], [-0.3134863673692974, 0.7213039066836079], [-0.5639490672636364, 0.752584181865945], [-0.8437981535142944, 0.6727581336314666], [-0.7044417770367708, 0.6708642448054487], [-0.31613781172572253, 0.5262049796150747], [-0.0931676093616847, 0.523174757493446], [0.12942381523714955, 0.49227326007631267], [0.7158569297383597, 0.5679327528935514]], "nose_bridge": [[-0.14376555056940485, -1.148722982471634], [-0.19685665680398917, -0.9528664998726938], [-0.22169770997786514, -0.7295175197434524], [-0.2744100384472459, -0.5057897618490075]]}], "embedding": [[-0.1878655105829239, 0.14179125428199768, 0.03729677572846413, -0.0725674107670784, -0.13777278363704681, -0.039034873247146606, -0.06302230805158615, -0.10082350671291351, 0.14926140010356903, -0.0986371710896492, 0.21999451518058777, -0.06112635135650635, -0.2166072428226471, -0.07627604901790619, 0.057316649705171585, 0.07647493481636047, -0.194564089179039, -0.12751421332359314, -0.05587000027298927, -0.16896086931228638, 0.044798191636800766, 0.020213155075907707, -0.03226644545793533, 0.09535516798496246, -0.16203321516513824, -0.27623212337493896, -0.12985871732234955, -0.12597261369228363, 0.11363133043050766, -0.1335645467042923, 0.011975187808275223, 0.0210474394261837, -0.18516455590724945, -0.08722928166389465, 0.03391190618276596, 0.13832207024097443, -0.0451023206114769, -0.034293245524168015, 0.15078496932983398, -0.09985113143920898, -0.11465031653642654, -0.058346278965473175, 0.08829274773597717, 0.22214992344379425, 0.09392525255680084, 0.06900054216384888, 0.011559502221643925, -0.0331154465675354, 0.19896280765533447, -0.2030361145734787, 0.1038515493273735, 0.17668652534484863, 0.20452679693698883, 0.12915849685668945, 0.10337098687887192, -0.14958804845809937, 0.0715363621711731, 0.15485551953315735, -0.207495778799057, 0.14705274999141693, 0.08071596175432205, -0.1049954742193222, -0.03504081070423126, 0.0013663079589605331, 0.18581469357013702, 0.1258726418018341, -0.080464206635952, -0.18744048476219177, 0.136051744222641, -0.17578501999378204, -0.08752793073654175, 0.21666939556598663, -0.08762146532535553, -0.19790636003017426, -0.25653183460235596, 0.03796916827559471, 0.4036169946193695, 0.19094054400920868, -0.14166215062141418, -0.018485140055418015, -0.013965627178549767, -0.0760582834482193, 0.05445496737957001, 0.08127879351377487, -0.137872576713562, 0.020398572087287903, -0.11337777972221375, 0.12641894817352295, 0.21929316222667694, 0.0029670149087905884, -0.03972902521491051, 0.25749310851097107, 0.05993538349866867, 0.1402827948331833, -0.004444427788257599, 0.04819010570645332, -0.06000351533293724, -0.05971232056617737, -0.030391015112400055, -0.012843657284975052, 0.12895497679710388, -0.03833519667387009, -0.045029982924461365, 0.05219985544681549, -0.12894950807094574, 0.19316282868385315, -0.01207577995955944, 0.03941333666443825, -0.14112861454486847, -0.011212058365345001, -0.0754285380244255, 0.04281454533338547, 0.17822298407554626, -0.2912469506263733, 0.20066797733306885, 0.17837989330291748, -0.016552351415157318, 0.12699156999588013, 0.024571143090724945, -0.006248146295547485, 0.059276729822158813, -0.1725292205810547, -0.12334422022104263, -0.10294132679700851, 0.08231496810913086, -0.10225383937358856, 0.05349366366863251, 0.010470033623278141]]},
"000077": {"landmarks": [{"top_lip": [[-0.7884836311603879, 0.6016998625100124], [-0.5151099119326402, 0.6003507416354016], [-0.2721110503968644, 0.599151523080192], [-0.08971200192563139, 0.6286269668557569], [0.09238724190679923, 0.5973526952473778], [0.45703543652986406, 0.6259287251065354], [0.8822834442174716, 0.6238300926349187], [0.7609339157689848, 0.6548045596044956], [0.09328665582320639, 0.7796018413992095], [-0.08896249032862542, 0.7805012553156166], [-0.2713615387998584, 0.7510258115400519], [-0.6363095380617256, 0.6617000662969504]], "nose_tip": [[-0.45645882902031293, 0.17480292930899166], [-0.3345096912942214, 0.26532789310730276], [-0.15196074050358727, 0.3251781945748396], [0.029988601009442166, 0.26352906527448844], [0.24231280021444354, 0.2017300336547362]], "left_eyebrow": [[-1.5581983334983693, -1.4904177602510238], [-1.3157990812401985, -1.613116409574121], [-1.0422754596930497, -1.5840906727567599], [-0.7380771758151262, -1.494465122874856], [-0.4337289896178018, -1.37446471530098]], "chin": [[-1.6168494164106966, -1.0648699479246138], [-1.6449757393116506, -0.609097180225633], [-1.581977489136689, -0.15377411948485584], [-1.4582295235777831, 0.30124913661711894], [-1.2737318426349333, 0.7559725880802913], [-0.99840939325497, 1.1494966172013161], [-0.6928619885024361, 1.5124958863109677], [-0.3874644860693033, 1.8451202977286476], [-0.02221668216863376, 1.995195758355693], [0.43325628089154455, 1.9625723658727032], [0.918354590046689, 1.7779247826104523], [1.3724784322322563, 1.4719276708997149], [1.7654028520756768, 1.0751057907518637], [2.036378134193005, 0.5877589468057014], [2.1551793232116716, 0.04041189907260119], [2.2130808945269926, -0.5370102017136685], [2.21023275045837, -1.1141324978611362]], "bottom_lip": [[0.8822834442174716, 0.6238300926349187], [0.45868436204327717, 0.960052159718227], [0.12516053670919028, 1.0832005159995282], [-0.0874634671346135, 1.0842498322353367], [-0.2698625156058465, 1.0547743884597716], [-0.5136108887386283, 0.9040993185551213], [-0.7884836311603879, 0.6016998625100124], [-0.6363095380617256, 0.6617000662969504], [-0.2713615387998584, 0.7510258115400519], [-0.08881258800922423, 0.8108761130075887], [0.09328665582320639, 0.7796018413992095], [0.7609339157689848, 0.6548045596044956]], "nose_bridge": [[-0.15870634487664095, -1.0416904015638988], [-0.1874322770551998, -0.7074170646328062], [-0.21615820923375864, -0.3731437277017133], [-0.2447342390929163, -0.008495533078648485]], "left_eye": [[-1.2525010264264342, -1.0970436334494], [-1.040326729540834, -1.1892175227611244], [-0.7973278680050583, -1.1904167413163338], [-0.5838044502448473, -1.0092169114003104], [-0.8266534094612219, -0.9776428351531289], [-1.0696522709969976, -0.9764436165979193]], "transform": {"scale": 32.92156404027647, "center": [127.05555555555556, 165.31944444444446], "angle": 0.004935038839750987}, "right_eyebrow": [[0.11301844883769364, -1.3771629570502015], [0.44639237185237934, -1.5306861710234743], [0.8104409571978393, -1.6236095719322046], [1.2051642048740736, -1.6559331597763922], [1.6006369641473142, -1.5363824591607196]], "right_eye": [[0.5098403289855447, -0.9842385372067813], [0.7217148212323425, -1.1371621419024496], [0.9949386381406893, -1.1688861204690322], [1.2385371089540698, -1.0485859082563538], [1.0263628120684694, -0.9564120189446296], [0.7529890928407216, -0.9550628980700188]]}], "embedding": [[-0.13829216361045837, 0.001734407152980566, -0.004227187484502792, -0.0904327780008316, -0.13235081732273102, -0.06923219561576843, -0.049417637288570404, -0.10883930325508118, 0.21807217597961426, -0.19190248847007751, 0.1799386739730835, -0.08689524978399277, -0.24721208214759827, 0.040930185467004776, -0.13824114203453064, 0.20155462622642517, -0.1727638989686966, -0.13630300760269165, -0.06250841915607452, -0.016026634722948074, 0.1281982660293579, -0.016139719635248184, -0.038289349526166916, 0.16137754917144775, -0.13844703137874603, -0.25458693504333496, -0.06709039956331253, -0.13386891782283783, -0.0718034952878952, -0.08339904248714447, 0.00377105176448822, -0.04682742804288864, -0.23993295431137085, -0.01750640571117401, -0.03592235594987869, 0.1290625035762787, -0.0031308070756495, -0.15540608763694763, 0.11198712140321732, -0.02203604206442833, -0.32249343395233154, -0.08791272342205048, 0.12137708067893982, 0.16027367115020752, 0.12397287786006927, -0.03205442056059837, -0.023124556988477707, -0.1668889820575714, 0.14169378578662872, -0.25320175290107727, 0.01352688204497099, 0.08190031349658966, 0.06047223508358002, 0.0745609700679779, 0.06227165088057518, -0.19711965322494507, 0.14192526042461395, 0.10593777149915695, -0.20978204905986786, 0.03483656048774719, 0.08985995501279831, -0.02024238370358944, -0.015553569421172142, -0.01961938478052616, 0.17770342528820038, 0.10916537046432495, -0.09412072598934174, -0.17340369522571564, 0.22427113354206085, -0.2547687292098999, -0.04985559731721878, 0.12694287300109863, -0.07510261237621307, -0.29916051030158997, -0.3132941722869873, -0.02127934992313385, 0.4402175843715668, 0.22261160612106323, -0.14524929225444794, 0.0647151842713356, -0.017636071890592575, -0.03798266872763634, 0.10242168605327606, 0.1912773847579956, 0.05684934929013252, 0.09747868776321411, -0.1414393186569214, 0.06848754733800888, 0.21799923479557037, -0.05065591633319855, 0.03849876672029495, 0.2641674280166626, 0.02495831437408924, -0.054635196924209595, 0.03354153037071228, 0.10779649019241333, -0.17137262225151062, 0.04700411111116409, -0.1618298888206482, -0.013465534895658493, 0.0698540061712265, 0.016485873609781265, -0.03318171203136444, 0.06719289720058441, -0.13157759606838226, 0.10046859085559845, -0.026543106883764267, -0.1195182353258133, -0.08074676245450974, -0.02323371171951294, -0.09088437259197235, -0.04976499080657959, 0.1373923420906067, -0.14695556461811066, 0.1575642228126526, 0.1294790655374527, 0.10874354839324951, 0.1530970185995102, 0.07029888033866882, 0.08283135294914246, 0.038484394550323486, -0.09914593398571014, -0.2207479476928711, -0.04471632465720177, 0.010171255096793175, -0.09200925379991531, 0.05806201696395874, 0.000593333039432764]], "url": "http://i.imgur.com/tm5SItY.jpg"},
"000078": {"landmarks": [{"chin": [[-2.117341501275926, -0.6687692648428729], [-2.0909378338433835, -0.17336716092834198], [-2.035241824371045, 0.2930635647916432], [-1.8921502345471932, 0.759975736279504], [-1.6906344425663746, 1.198077011495444], [-1.430373484583339, 1.5491036702051222], [-1.0532641222863688, 1.8425085363709588], [-0.5588249099075892, 1.9908960296414422], [-0.005480049603966752, 2.023077046288492], [0.5192143963503603, 1.9677020006614034], [0.9571551896436753, 1.795318068797756], [1.2793709520814327, 1.4766329086577528], [1.5146725799355532, 1.0700707223983617], [1.6336072492436147, 0.6337347483312984], [1.7235705403571306, 0.16810643222443927], [1.7842414894308503, -0.2685505056878742], [1.7575168581530574, -0.7056888893680633]], "right_eye": [[0.5639130029621754, -0.857927948781551], [0.8267416717072147, -0.9730110519466079], [1.1178997909562987, -0.9422743726031849], [1.3213413660086197, -0.8537554187932959], [1.1169368994205475, -0.7674832119001594], [0.8257787801714634, -0.7982198912435824]], "left_eye": [[-1.3584688009258552, -0.926783475909156], [-1.0958006141034413, -1.0127347189570421], [-0.8044820129317319, -1.01112989973079], [-0.5429371995676944, -0.8931581219584795], [-0.8054449044674832, -0.8363387390277646], [-1.0967635056391924, -0.8379435582540166]], "top_lip": [[-0.6971020420526846, 0.6500280546384535], [-0.3752072434601776, 0.38960661473279234], [-0.1123785747151385, 0.2745235115677354], [0.06225210406526184, 0.30461826322065755], [0.2372037466909126, 0.27644929463923784], [0.4403243578979831, 0.42323196868346885], [0.6428030414145527, 0.6865420831963835], [0.4973042227513233, 0.6566078134660867], [0.23575940938728582, 0.5386360356937762], [0.06096824868426025, 0.5376731441580249], [-0.1138229120187653, 0.5367102526222738], [-0.5512822595442047, 0.6216986041344085]], "nose_bridge": [[0.12853992043086365, -1.1516537787926382], [0.12725606504986206, -0.9185988978552709], [0.12613269159148566, -0.7146758770350745], [0.12484883621048407, -0.48162099609770703]], "left_eyebrow": [[-1.76390761372687, -1.3660081245834725], [-1.4421732970569883, -1.5972977043719627], [-1.0631381516885157, -1.653475159612177], [-0.6552921100481229, -1.6512284126954244], [-0.3063517163325727, -1.5327751891552381]], "right_eyebrow": [[0.4219447865967004, -1.528763141089608], [0.7721690356932523, -1.6433647984867896], [1.1508832172164745, -1.641278533492662], [1.4708522327374791, -1.5521176519922721], [1.6441990561368778, -1.2889680194019826]], "bottom_lip": [[0.6428030414145527, 0.6865420831963835], [0.43807761098123027, 0.8310780103238617], [0.23383362631578342, 0.8882183570998272], [0.05904246561275786, 0.887255465564076], [-0.14488055520743862, 0.8861320921056997], [-0.40658585049410134, 0.7972921744505601], [-0.6971020420526846, 0.6500280546384535], [-0.5512822595442047, 0.6216986041344085], [-0.11430435778664089, 0.6241058329737865], [0.060486802916384655, 0.6250687245095377], [0.2354384455420354, 0.5968997559281181], [0.4973042227513233, 0.6566078134660867]], "nose_tip": [[-0.3435076725810035, -0.07634266521931726], [-0.13990561560605744, -0.016955571526599017], [0.09298878340868476, 0.013460143971573498], [0.2679404260343355, -0.01470882460984623], [0.44305255058261145, -0.0720096533084369]], "transform": {"scale": 34.32615778127071, "angle": -0.005508755658838925, "center": [123.80555555555556, 168.55555555555554]}}], "embedding": [[-0.08778868615627289, 0.015351293608546257, 0.040911249816417694, -0.10000833123922348, -0.0681162178516388, -0.15753525495529175, -0.09369968622922897, -0.1351986527442932, 0.15488071739673615, -0.1489333063364029, 0.1404433250427246, -0.07369273900985718, -0.2457386702299118, 0.005416642874479294, -0.08764609694480896, 0.18667300045490265, -0.1071515828371048, -0.14509618282318115, -0.05384279415011406, -0.027560533955693245, 0.060670919716358185, 0.03969660773873329, 0.0059425681829452515, 0.21598781645298004, -0.025880884379148483, -0.3577103316783905, -0.12684625387191772, -0.07714084535837173, -0.14249663054943085, -0.054182715713977814, 0.03778529912233353, 0.11363866180181503, -0.19919636845588684, -0.021101152524352074, 0.0013813599944114685, 0.10447684675455093, 0.009740219451487064, -0.09397131204605103, 0.18178048729896545, 0.11718560755252838, -0.252745121717453, -0.09069719910621643, 0.08773873001337051, 0.2505195438861847, 0.19337691366672516, -0.00948057509958744, 0.04893726110458374, -0.08022405952215195, 0.10362520068883896, -0.2594752609729767, 0.031469330191612244, 0.14807406067848206, 0.034670859575271606, 0.10599784553050995, 0.0950469970703125, -0.18571776151657104, 0.0500187911093235, 0.07104232162237167, -0.1225837841629982, 0.020716842263936996, 0.01573917083442211, -0.10263830423355103, -0.013979615643620491, -0.07965375483036041, 0.3259809613227844, 0.15980026125907898, -0.12171170115470886, -0.07953695952892303, 0.2548522651195526, -0.21499764919281006, -0.11260336637496948, 0.02113751880824566, -0.15085479617118835, -0.13434745371341705, -0.30449414253234863, 0.009407797828316689, 0.31303030252456665, 0.11634007096290588, -0.1726454794406891, 0.10888353735208511, -0.06992916017770767, 0.012023011222481728, 0.024991579353809357, 0.2272453010082245, 0.036777690052986145, 0.11068341135978699, 0.012426293455064297, 0.004598803818225861, 0.18751703202724457, 0.010245861485600471, 0.004640773870050907, 0.2936946153640747, -0.0420023538172245, 0.03638450801372528, 0.12351849675178528, 0.015345524996519089, -0.051405228674411774, -0.0532560870051384, -0.16123487055301666, 0.04249332845211029, -0.020056266337633133, -0.04139867052435875, -0.011481061577796936, 0.058738406747579575, -0.16895560920238495, 0.06293077021837234, -0.02191709354519844, -0.04480668529868126, -0.03754343092441559, 0.06576216220855713, -0.09361470490694046, -0.10805804282426834, 0.12525303661823273, -0.20655962824821472, 0.2292918711900711, 0.10857891291379929, 0.014640100300312042, 0.1498856544494629, 0.015339494682848454, 0.17300653457641602, -0.011389234103262424, -0.09517543017864227, -0.09633313119411469, -0.023532571271061897, 0.08814668655395508, 0.0100850909948349, -0.0213706586509943, 0.023416314274072647]], "url": "http://i.imgur.com/oLKIJpW.jpg"},
"000079": {"embedding": [[-0.041570913046598434, 0.1362660974264145, 0.008188080042600632, -0.07518889755010605, -0.14779488742351532, 0.07981052249670029, 0.017305050045251846, -0.12522795796394348, 0.20672623813152313, -0.09800982475280762, 0.19368188083171844, -0.0025433283299207687, -0.228663831949234, -0.060605838894844055, 0.021887335926294327, 0.134253591299057, -0.15711788833141327, -0.17032857239246368, -0.18177010118961334, -0.15572595596313477, 0.12161967158317566, 0.06295211613178253, -0.029196500778198242, 0.030332021415233612, -0.27483347058296204, -0.3295017182826996, -0.028815217316150665, -0.12542593479156494, 0.13970139622688293, -0.15383505821228027, 0.02346773073077202, -0.03931257128715515, -0.16339591145515442, 0.014679733663797379, 0.03162754699587822, 0.1327272355556488, -0.009416840970516205, -0.052381422370672226, 0.16818919777870178, 0.011326504871249199, -0.2056124359369278, 0.12338123470544815, 0.06782861053943634, 0.2255852073431015, 0.14057162404060364, 0.056577447801828384, 0.12649206817150116, -0.11930562555789948, 0.14136341214179993, -0.14166706800460815, 0.07187668979167938, 0.1388578861951828, 0.07219970226287842, 0.10862333327531815, 0.09675394743680954, -0.20332305133342743, 0.02304808236658573, 0.16260811686515808, -0.24558699131011963, 0.11093402653932571, 0.16724298894405365, -0.0730777233839035, -0.06348272413015366, 0.02142525464296341, 0.20553019642829895, 0.011899642646312714, -0.13998031616210938, -0.16226541996002197, 0.10064586251974106, -0.20847958326339722, -0.0520661436021328, 0.061117418110370636, -0.09343162178993225, -0.09874317049980164, -0.28210651874542236, 0.07006010413169861, 0.4938293695449829, 0.10986591875553131, -0.21976840496063232, -0.0021578408777713776, -0.06743935495615005, 0.029722105711698532, 0.11267874389886856, 0.043239906430244446, -0.09203177690505981, -0.02611866220831871, -0.14043021202087402, 0.06168714910745621, 0.2263786792755127, 0.019887275993824005, 0.07625696808099747, 0.24896959960460663, 0.08734375238418579, -0.04005030542612076, -0.004922861233353615, 0.0943802073597908, -0.24199363589286804, -0.029784053564071655, 0.03441298380494118, -0.041272785514593124, 0.03725706413388252, -0.11912128329277039, 0.030638927593827248, 0.0621115118265152, -0.24042698740959167, 0.2686002552509308, -0.05566437542438507, -0.023841701447963715, -0.0345468744635582, 0.047022756189107895, -0.0735657662153244, -0.03246689587831497, 0.18962277472019196, -0.3142330050468445, 0.16968810558319092, 0.25373756885528564, 0.03883052617311478, 0.13797436654567719, 0.06182776391506195, 0.10824195295572281, -0.021462958306074142, 0.05307359620928764, -0.17398451268672943, -0.0956464558839798, -0.0334160216152668, -0.11575360596179962, 0.056055665016174316, 0.035615887492895126]], "url": "http://i.imgur.com/4gSU23I.jpg", "landmarks": [{"bottom_lip": [[0.7092880845327793, 0.6793814257941954], [0.37005077034120637, 0.9510008808026759], [0.0935806849393444, 1.0703912065504813], [-0.12076892239192419, 1.0987027550295283], [-0.30389660300811666, 1.0661873268762172], [-0.45580235690923315, 0.9728449220905477], [-0.6669182106449141, 0.6954047106100095], [-0.5452642573801973, 0.7578485640401618], [-0.3013096001316466, 0.8215859189085489], [-0.11818191951545408, 0.85410134706186], [0.06559251181985598, 0.825466423223254], [0.5869873805489451, 0.6780879243559603]], "left_eyebrow": [[-1.3481577341019646, -1.391144890385023], [-1.2235934026012192, -1.603877620918498], [-0.9783452439144332, -1.6624409700339449], [-0.7340672113063237, -1.6292787911615163], [-0.46018412878093184, -1.5040677089416532]], "nose_tip": [[-0.5693719261849807, 0.14602166876143205], [-0.44836472363938157, 0.26961587418350125], [-0.23498524238678925, 0.33302985369232974], [-0.01998888433640316, 0.24356795322136543], [0.19500747371398294, 0.15410605275040115]], "top_lip": [[-0.6669182106449141, 0.6954047106100095], [-0.4834671546691628, 0.6973449627673621], [-0.2996927233338528, 0.6687100389287562], [-0.11656504271766026, 0.7012254670820672], [0.06720938861764979, 0.6725905432434613], [0.3423859725812767, 0.6755009214794903], [0.7092880845327793, 0.6793814257941954], [0.5869873805489451, 0.6780879243559603], [0.06591588717941474, 0.7948912472272954], [-0.11753516879633655, 0.7929509950699428], [-0.3009862247720878, 0.7910107429125903], [-0.5452642573801973, 0.7578485640401618]], "chin": [[-1.3822900390530697, -1.0551413297890377], [-1.3871406694464512, -0.5965136898496597], [-1.3308409478479155, -0.13723929919116395], [-1.213067498897904, 0.29210666619049075], [-1.0650422493114928, 0.7523511829276628], [-0.8857950730100054, 1.1517687230324765], [-0.7068712720680768, 1.5817614391332486], [-0.4664737437746723, 1.98182572995718], [-0.0400381566290465, 2.1392288649707956], [0.44916465930629024, 2.1444028707237357], [0.9409544781180971, 1.9049754685090075], [1.3732108217357808, 1.5120254355953688], [1.7449635640806649, 1.0572782999706958], [1.995062353160832, 0.5400873109158707], [2.154082364972241, -0.03922415620954783], [2.221376848795775, -0.6195057494136427], [2.2275209806273915, -1.2004340933368551]], "transform": {"angle": -0.010576007895779165, "center": [127.56944444444444, 166.02777777777777], "scale": 32.70444214881875}, "right_eye": [[0.45286727142356065, -1.096889160207429], [0.6379352041971057, -1.2478247880298694], [0.8828599875243329, -1.2758129611493578], [1.0955927180578076, -1.1512486296486124], [0.9111715360033801, -1.061463353818089], [0.6665701280357118, -1.0640503566945594]], "right_eyebrow": [[0.1513193911382391, -1.497600201750478], [0.4892632038915769, -1.646918952775124], [0.8568120665621971, -1.7041888004523362], [1.1924922517986234, -1.6394813195052726], [1.4963037596008564, -1.4527965099339337]], "left_eye": [[-1.1064667043703253, -1.113381303544926], [-0.9522973229522974, -1.2340651307309665], [-0.7073725396250703, -1.262053303850455], [-0.49528655981071307, -1.0763386203577923], [-0.740534718497499, -1.0177752712423451], [-0.9545609504692087, -1.0200388987592566]], "nose_bridge": [[-0.25003840112392717, -1.1349019694732392], [-0.2844940814345909, -0.7683232328812954], [-0.3192731371048134, -0.3711693202933931], [-0.3843039934114356, -0.004913959061008113]]}]},
"000080": {"landmarks": [{"right_eye": [[0.5267077184000643, -1.070474730531295], [0.7396325680764297, -1.2279308507711855], [0.9550958362188361, -1.2314846366236425], [1.1413016885633802, -1.1421893381504316], [0.9889224052555717, -1.0473095190519308], [0.7426786702356787, -1.0432480495062657]], "nose_bridge": [[0.09476581472883533, -1.1249280925813543], [0.13163848592481975, -0.756070173744723], [0.1372230065501094, -0.41748503809237025], [0.1433152108686072, -0.04811943556253086]], "left_eyebrow": [[-1.635032534728913, -1.4658634082915372], [-1.3297662844200877, -1.6248425796110517], [-0.95989299819704, -1.600154317052063], [-0.6192771277718546, -1.4826169701674061], [-0.2781535736534611, -1.3342991564052626]], "nose_tip": [[-0.3158533738276513, 0.11339815422302447], [-0.0988670546056205, 0.20218576900302726], [0.11761158092320212, 0.2601929169055434], [0.3012790148017055, 0.1955858809913213], [0.45365829810951414, 0.1007060618928207]], "right_eyebrow": [[0.4303048482219392, -1.3151954144715639], [0.7355710985307645, -1.4741745857910782], [1.0423603999192144, -1.5408123564781329], [1.380437851878359, -1.5771773439809091], [1.5378939721182492, -1.3642524943045438]], "top_lip": [[-0.7361185525550927, 0.7668955303551576], [-0.4288215674734347, 0.7310382265455894], [-0.15179736557605517, 0.726469073306716], [0.06468126995276746, 0.7844762212092322], [0.2791291707087574, 0.7193615016018019], [0.5253729057286504, 0.7153000320561367], [0.7711089570553351, 0.6804580956329849], [0.6484947732385968, 0.713269297283304], [0.2806522217883819, 0.8117029022342618], [0.0662043210323919, 0.876817621841692], [-0.14976663080322256, 0.8495909408166625], [-0.6124890013519381, 0.7956452624598115]], "bottom_lip": [[0.7711089570553351, 0.6804580956329849], [0.5607225258450104, 0.9918165502603081], [0.3472899924754366, 1.1184922036227116], [0.10155394114875188, 1.1533341400458634], [-0.11390932699365441, 1.1568879258983205], [-0.42374473054135314, 1.0388428953204554], [-0.7361185525550927, 0.7668955303551576], [-0.6124890013519381, 0.7956452624598115], [-0.11847848023252777, 0.8798637240009409], [0.09749247160308668, 0.9070904050259705], [0.3119403723590766, 0.8419756854185403], [0.6484947732385968, 0.713269297283304]], "left_eye": [[-1.168248694634532, -1.1656739949147932], [-0.9543084775717503, -1.26156918139971], [-0.7383375257361359, -1.2343425003746806], [-0.520843522820897, -1.1147744187171913], [-0.7357991072700951, -1.0804401659872476], [-0.9825505259831963, -1.107159163319069]], "chin": [[-2.1557620531801445, -1.3033304511195656], [-2.115843279824911, -0.7497897310180146], [-2.0451440395921914, -0.19675669460967185], [-1.8826110824202196, 0.32397282384155984], [-1.6282444083089964, 0.8123988243356806], [-1.2820440172585215, 1.26852130687269], [-0.8752980598394894, 1.6620674882683102], [-0.40851421974510865, 1.962256901645054], [0.08498861768109349, 2.015694896308697], [0.5138844191930735, 1.885465457093836], [0.8473927179133448, 1.5720762676936804], [1.0875442486147398, 1.1986491956181757], [1.2343390112972588, 0.7651842408673225], [1.3811337739797778, 0.3317192861164691], [1.4658599192141155, -0.13151076812545456], [1.550586064448453, -0.5947408223673782], [1.5737512759278172, -1.0569555092228857]], "transform": {"scale": 32.483718025010546, "angle": 0.016492201552340116, "center": [123.31944444444444, 164.48611111111111]}}], "url": "http://i.imgur.com/lUVjmOD.jpg", "embedding": [[-0.025017010048031807, 0.05179397389292717, 0.04860977455973625, -0.0040968358516693115, -0.09818071871995926, 0.006630029529333115, 0.007124889642000198, -0.10796478390693665, 0.010502828285098076, 0.031783632934093475, 0.13944320380687714, -0.15346136689186096, -0.31539610028266907, 0.00411885604262352, -0.09758833050727844, 0.06935447454452515, -0.16735117137432098, 0.013329917564988136, -0.12680383026599884, -0.12579862773418427, 0.05053802579641342, 0.02230416238307953, 0.018511615693569183, 0.025443296879529953, -0.16190582513809204, -0.22181791067123413, -0.10345511138439178, -0.09781171381473541, 0.03492613881826401, -0.12471151351928711, 0.014933805912733078, 0.06432173401117325, -0.22426483035087585, -0.0006558410823345184, -0.08795478194952011, -0.04358719289302826, 0.015904784202575684, -0.0981530249118805, 0.12987849116325378, 0.04190528020262718, -0.08243512362241745, 0.041489094495773315, 0.10081718862056732, 0.19337128102779388, 0.23864032328128815, 0.04042763262987137, -0.018917880952358246, -0.04490542411804199, 0.13132895529270172, -0.20316922664642334, 0.02494099922478199, 0.13794219493865967, 0.144204244017601, 0.045245762914419174, 0.10076871514320374, -0.11191944777965546, 0.018981341272592545, 0.10359600186347961, -0.2030564695596695, 0.15735770761966705, -9.812228381633759e-05, -0.027751445770263672, 0.026253264397382736, -0.053691018372774124, 0.09482330828905106, 0.019991394132375717, -0.05703580006957054, -0.05908576771616936, 0.2141120284795761, -0.17711639404296875, -0.0239852387458086, 0.07513101398944855, -0.05987189710140228, -0.20082537829875946, -0.2906132638454437, 0.057895563542842865, 0.3985808789730072, 0.15252870321273804, -0.2065710425376892, 0.03943895921111107, -0.05855947732925415, -0.139515683054924, 0.10481239855289459, 0.058794185519218445, -0.03953252360224724, -0.07239542156457901, -0.10200070589780807, 0.06607770919799805, 0.2200576812028885, -0.07137205451726913, -0.007077621296048164, 0.29675447940826416, -0.0003761500120162964, -0.06821126490831375, 0.011995995417237282, 0.03856266289949417, -0.1443941593170166, 0.029712578281760216, -0.04477626085281372, 0.021773777902126312, 0.06894800812005997, -0.19179892539978027, -0.03377920389175415, 0.032727357000112534, -0.13558241724967957, 0.11107281595468521, 0.029729483649134636, -0.07406754046678543, -0.06703527271747589, -0.0972512811422348, -0.1386074423789978, 0.07232122123241425, 0.22799009084701538, -0.31927981972694397, 0.17625796794891357, 0.12569181621074677, -0.062048282474279404, 0.08529111742973328, 0.0015860344283282757, 0.11733920872211456, 0.03914337232708931, -0.04013748839497566, -0.08095615357160568, -0.1392425298690796, 0.06263992935419083, -0.08556904643774033, 0.004107200540602207, 0.05708668753504753]]},
"000081": {"embedding": [[-0.09089255332946777, 0.16951234638690948, 0.09222905337810516, -0.05959325283765793, -0.06251463294029236, -0.02172071672976017, -0.037863075733184814, -0.06593576818704605, 0.2343033403158188, 0.012731180526316166, 0.2143109291791916, 0.0011270996183156967, -0.2136639654636383, -0.05218636617064476, 0.030373986810445786, 0.11323060840368271, -0.28157633543014526, -0.12904806435108185, 0.019788667559623718, -0.06709885597229004, 0.02196367084980011, 0.03112138994038105, 0.016808927059173584, 0.062367845326662064, -0.12947216629981995, -0.3567468523979187, -0.09497557580471039, -0.13317152857780457, 0.005064636468887329, -0.08828979730606079, -0.02602962963283062, -0.036952439695596695, -0.19329620897769928, -0.09370057284832001, 0.03648509085178375, 0.04387623071670532, 0.028630375862121582, -0.056959524750709534, 0.10104212164878845, -0.04654724523425102, -0.0849674642086029, 0.06695712357759476, 0.04484536126255989, 0.249084010720253, 0.12805381417274475, 0.12446112185716629, -0.039298877120018005, -0.05393460765480995, 0.10047423094511032, -0.20418676733970642, 0.11178699880838394, 0.135719433426857, 0.03226950392127037, 0.022959431633353233, 0.061473771929740906, -0.2598683834075928, -0.044091202318668365, 0.109642393887043, -0.2578912675380707, 0.08917837589979172, -0.0001417640596628189, 0.005361916497349739, 0.016422072425484657, -0.04046676680445671, 0.23061713576316833, 0.20120032131671906, -0.111330546438694, -0.16982564330101013, 0.0623680055141449, -0.1292848438024521, -0.04460308700799942, -0.0398697666823864, -0.13921557366847992, -0.1598900556564331, -0.31661146879196167, 0.05569983646273613, 0.3301769196987152, 0.07164115458726883, -0.21685892343521118, -0.0042847804725170135, -0.07224856317043304, 0.01660306006669998, 0.022575516253709793, 0.03644413501024246, -0.1246137022972107, 0.023528914898633957, -0.15488594770431519, 0.011353686451911926, 0.12698060274124146, 0.03367375582456589, -0.07669803500175476, 0.23434856534004211, -0.07405261695384979, 0.05709977447986603, 0.03265424072742462, 0.04803057014942169, -0.1430383026599884, 0.0038381721824407578, -0.18560032546520233, -0.0414394773542881, 0.03583872318267822, -0.02153879404067993, -0.04427946358919144, 0.16831013560295105, -0.2010837346315384, 0.04679330438375473, 0.01824154146015644, -0.04388190433382988, -0.09312635660171509, 0.07155309617519379, -0.13292638957500458, -0.0638580471277237, 0.17108064889907837, -0.27087581157684326, 0.2776629626750946, 0.19340023398399353, 0.03371075168251991, 0.19383540749549866, 0.015153368934988976, 0.0009627696126699448, -0.015813011676073074, 0.0001420825719833374, -0.10519040375947952, -0.030985986813902855, 0.02859797701239586, -0.0136981550604105, 0.08267111331224442, 0.08241663128137589]], "url": "http://i.imgur.com/W5wZMzU.jpg", "landmarks": [{"bottom_lip": [[0.7776769747724619, 0.6214927529220096], [0.6265971439602914, 1.0036250352036753], [0.3597159513868274, 1.1486518734318376], [0.12343591541296174, 1.1759513977128861], [-0.1712950734946422, 1.1436994249540129], [-0.553152219749762, 0.9631189816484272], [-0.874082188832231, 0.5765845229420286], [-0.8150809638454011, 0.5771347949951202], [-0.16881884925572982, 0.878193912513278], [0.12563700362532831, 0.9399464977655664], [0.3621921756257398, 0.8831463609911029], [0.6889000012656712, 0.6501679573357871]], "transform": {"angle": -0.00932618092813866, "scale": 33.89612713000676, "center": [122.44444444444444, 167.18055555555554]}, "nose_bridge": [[0.17412200195040498, -1.0953206282535213], [0.2303718666717767, -0.79976423126628], [0.2863465953666026, -0.47470722178562363], [0.3128207115680136, -0.14992534833151297]], "nose_tip": [[-0.24961687799269178, 0.05135135461802125], [-0.01388711407191775, 0.08305305532380279], [0.19179176530234965, 0.1734808449898685], [0.3988463248093462, 0.11640557218885927], [0.5761251357963818, 0.08855577585471922]], "left_eyebrow": [[-1.5945390675217646, -1.2593318523133457], [-1.3262821948155716, -1.551861753008583], [-0.9711743007884087, -1.666562570663693], [-0.5584408619071447, -1.6332100537986365], [-0.17575830757238747, -1.541131447973296]], "left_eye": [[-1.06517885879957, -1.077375728875031], [-0.8575740272394817, -1.1934522266628702], [-0.621569127292162, -1.1912511384505036], [-0.44594113246440126, -1.0420972598241536], [-0.6529956919713977, -0.9850219870231445], [-0.8887254558921718, -1.0167236877289263]], "right_eye": [[0.4975281952717865, -0.9742916819878574], [0.7054081628584205, -1.1198687922691115], [0.9414130628057402, -1.1176677040567449], [1.087815581166632, -0.9982895739503562], [0.9397622466464652, -0.9406640290962553], [0.7332579591925604, -0.942589981282076]], "right_eyebrow": [[0.4434794187627813, -1.5058529789224189], [0.7688115642699836, -1.5913283201106596], [1.063817689204133, -1.5885769598452013], [1.2987220450452697, -1.468373421659175], [1.4142482707800175, -1.201767365112257]], "top_lip": [[-0.874082188832231, 0.5765845229420286], [-0.5186991587785222, 0.4323830927935036], [-0.10569058387071255, 0.43623499716514513], [0.15953979254347644, 0.46821183389747245], [0.3958198285173421, 0.4409123096164241], [0.6315495924381161, 0.4726140103222056], [0.7776769747724619, 0.6214927529220096], [0.6889000012656712, 0.6501679573357871], [0.394444148384613, 0.5884153720834989], [0.12866349991733236, 0.6154397603380015], [-0.13656687649685662, 0.5834629236056741], [-0.8150809638454011, 0.5771347949951202]], "chin": [[-2.1867524056024306, -1.0288296728969424], [-2.1624793776133866, -0.46804289949551175], [-2.1677069621177574, 0.09246873787937282], [-2.1139333216352973, 0.6535306473073491], [-1.882330598112711, 1.1277415354143554], [-1.472898791549997, 1.5151014022003915], [-0.9738646034008547, 1.7852842270924052], [-0.4748304152517125, 2.055467051984419], [0.05563033757666551, 2.119420725449074], [0.4992400690840734, 2.0055453158736016], [0.8270484388301881, 1.6545644622446256], [1.0666301071226036, 1.2732575880425974], [1.306486911441565, 0.8624501013471542], [1.428891537839958, 0.39154084555869784], [1.4920198032249752, -0.050418069789435215], [1.4666462311297477, -0.4932023932172057], [1.4409975230079741, -0.9064861041515613]]}]},
"000083": {"url": "http://i.imgur.com/OEo2Tjt.jpg", "landmarks": [{"bottom_lip": [[0.8649293751134066, 0.5945866455013696], [0.5340055808116531, 0.9569821083935633], [0.20267857171234613, 1.1083498314964015], [-0.03843838593298156, 1.138957468377799], [-0.24952372783627363, 1.1092138632054442], [-0.5512799381050343, 0.9590557844952659], [-0.8534969652852846, 0.567723146025824], [-0.7026476612078723, 0.6277287753959591], [-0.24992694263382692, 0.8981861234160882], [-0.03884160073053484, 0.9279297285884428], [0.17212853694488484, 0.8973796938209816], [0.7443996973477108, 0.6249638739270224]], "nose_bridge": [[-0.04275854447819523, -1.1220540293652999], [-0.04212492122489722, -0.7904390096963121], [-0.07158051582757101, -0.4286195679434802], [-0.07088929046033683, -0.06685772830458439]], "right_eye": [[0.4999994192080208, -1.0627972274763353], [0.7107967505416319, -1.1837877221535205], [0.9519713103008958, -1.18424853906501], [1.1631718564320603, -1.0942112939528392], [0.9522593208705766, -1.03351443921547], [0.7110847611113128, -1.0330536223039806]], "nose_tip": [[-0.37201187747579956, 0.11459921265422532], [-0.2512517912543591, 0.20480926410820455], [-0.07025566720703882, 0.2647572913644034], [0.1405992662405085, 0.17391361665712618], [0.32136498183208406, 0.11327436403369313]], "top_lip": [[-0.8534969652852846, 0.567723146025824], [-0.5218243435023605, 0.597236342742434], [-0.2204137459172169, 0.5665135016331642], [-0.03941762186989666, 0.626461528889363], [0.17149491369158684, 0.5657646741519938], [0.5031099333605746, 0.5651310508986958], [0.8649293751134066, 0.5945866455013696], [0.7443996973477108, 0.6249638739270224], [0.17178292426126776, 0.7164987740015337], [-0.039187213414151933, 0.7470488087689949], [-0.220125735347536, 0.7172476014827041], [-0.7026476612078723, 0.6277287753959591]], "chin": [[-1.7306924522233613, -0.9680942111353339], [-1.7297708184003824, -0.4857450916168061], [-1.7288491845774037, -0.003395972098278404], [-1.6676915129285448, 0.448691123222469], [-1.5160933813699622, 0.9006054122014078], [-1.274112392015592, 1.3222000748686302], [-0.9116593270094618, 1.6832706891402918], [-0.48902782629138825, 1.983932459244265], [-0.00650590043105193, 2.07345128533101], [0.4757280148596034, 2.012236011568215], [0.9274118953827974, 1.7400506001300007], [1.3186293296243672, 1.3775399330099345], [1.6192910997283403, 0.9549084322918607], [1.7993079878387455, 0.5023605200596241], [1.8586223918416462, -0.010250623656684086], [1.9481412179283917, -0.4927725495170204], [2.0074556219312925, -1.0053836932333284]], "transform": {"center": [125.34722222222223, 166.22222222222223], "scale": 33.170933968453554, "angle": 0.001910717080440541}, "right_eyebrow": [[0.2580184298536504, -1.4843918901435575], [0.5894030410668935, -1.6056127932764876], [0.9509920743639807, -1.6967444785534458], [1.2827222982608408, -1.6370844618669278], [1.5543892906736299, -1.4567219610729054]], "left_eyebrow": [[-1.4602351042032322, -1.420814929709379], [-1.2193485550136494, -1.5720098464704086], [-0.9480847773984137, -1.6026750854657423], [-0.6465013734714614, -1.5429574666652883], [-0.3749495852865449, -1.4228886058110817]], "left_eye": [[-1.1580756791369184, -1.0596291112098453], [-0.9472207456893709, -1.1504727859171224], [-0.7361930059000149, -1.1508760007146757], [-0.5249348576549144, -1.0306919356325972], [-0.7660518153002421, -1.0000842987511998], [-0.977079555089598, -0.9996810839536464]]}], "embedding": [[-0.1132429987192154, 0.1394076645374298, 0.11939050257205963, -0.05325969308614731, -0.16153639554977417, 0.019694481045007706, -0.03901224583387375, -0.12202724814414978, 0.0983266532421112, -0.0684962123632431, 0.12210894376039505, -0.12115026265382767, -0.29974493384361267, 0.12055181711912155, 0.0074571967124938965, 0.17397111654281616, -0.21016450226306915, -0.14729920029640198, -0.10235927253961563, 0.03984192758798599, -0.02226591482758522, 0.09569279104471207, -0.016787175089120865, 0.10024359822273254, -0.08509699255228043, -0.34570130705833435, -0.029400432482361794, -0.0735764354467392, 0.06895877420902252, 0.0017788410186767578, -0.009221833199262619, -0.06882371753454208, -0.16444893181324005, -0.006548704579472542, 0.111257404088974, 0.03026813082396984, -0.10373891890048981, -0.20569738745689392, 0.12259934842586517, -0.050086356699466705, -0.23505420982837677, -0.08642926812171936, 0.07301181554794312, 0.14389994740486145, 0.20771129429340363, 0.03875286132097244, 0.03749878332018852, -0.20896270871162415, 0.12256132066249847, -0.3535473346710205, -0.05161363631486893, 0.11375416815280914, -0.03994569182395935, 0.11039894819259644, 0.019665786996483803, -0.20160473883152008, 0.03033486381173134, 0.11234170943498611, -0.2642591595649719, 0.05849696323275566, 0.06571070849895477, -0.012696785852313042, 0.02871539816260338, -0.06475362181663513, 0.16579358279705048, 0.051184337586164474, -0.15075282752513885, -0.1758163571357727, 0.14830870926380157, -0.2769324779510498, -0.018497880548238754, 0.09380162507295609, -0.0042851027101278305, -0.2423664629459381, -0.2528267502784729, -0.02276262268424034, 0.4351550042629242, 0.1595219075679779, -0.13534855842590332, -0.06401757150888443, -0.05940397083759308, -0.031247170642018318, 0.02455182932317257, 0.08001379668712616, -0.03961022198200226, -0.12727715075016022, -0.08557914942502975, -0.03222530707716942, 0.30090922117233276, -0.09241627901792526, 0.07485982030630112, 0.27711978554725647, 0.03375547379255295, -0.07379283756017685, 0.038130905479192734, 0.1851622313261032, -0.16352063417434692, 0.002591347321867943, -0.11496292054653168, -0.010196594521403313, -0.022074328735470772, -0.04971206933259964, 0.046882692724466324, 0.15233342349529266, -0.1838613599538803, 0.1724345088005066, -0.04624532163143158, -0.11298274248838425, 0.036743927747011185, -0.03874063119292259, -0.12473072856664658, -0.1321401745080948, 0.20204783976078033, -0.2203904539346695, 0.11171355098485947, 0.20993557572364807, 0.06453254073858261, 0.15463173389434814, -0.005391932558268309, 0.10456299036741257, 0.005198553670197725, -0.0004023648798465729, -0.09536431729793549, -0.12119019031524658, 0.02926081418991089, -0.01644596830010414, -0.08326414972543716, -0.027961257845163345]]},
"000085": {"landmarks": [{"right_eyebrow": [[0.2640872788112012, -1.4560824634149454], [0.6042530177116815, -1.575581218021195], [0.9745462371702927, -1.63313973213406], [1.3434912331272053, -1.5674918770110038], [1.6190202845309036, -1.4104504125872814]], "left_eyebrow": [[-1.6148098520365886, -1.476642871815848], [-1.3667118341876239, -1.6279543863573518], [-1.089160447531378, -1.6557224757875102], [-0.7818186361924258, -1.5907487324153033], [-0.47515093660432267, -1.4641718044251366]], "bottom_lip": [[0.7945849732176953, 0.7368975962802893], [0.4527339549400919, 1.01040431243144], [0.144043920099441, 1.068636938295154], [-0.07190428193884474, 1.0970791394761616], [-0.2868413163508566, 1.0331165637302289], [-0.5014412948874438, 0.9383523956753159], [-0.7140189381714833, 0.6587786737665221], [-0.591486680686412, 0.7217300818861809], [-0.25300622116305477, 0.756239288824832], [-0.06853372318459844, 0.7890632163863601], [0.14707742297826268, 0.7914226075143325], [0.6710415481063501, 0.766350965087571]], "chin": [[-1.7413867800267555, -1.1699751722277447], [-1.7159780817245696, -0.6768126394086377], [-1.6286291429289985, -0.21377758714766132], [-1.5724188523178322, 0.27972200154687055], [-1.4234667289043008, 0.743431165558696], [-1.1506341245039997, 1.14688536845426], [-0.8155242237348888, 1.4894104984827126], [-0.41847408247239304, 1.8018081479530343], [0.042538634536035486, 1.8992687630113443], [0.5357011673551426, 1.8738600647091583], [1.0000844431178175, 1.6633047566776666], [1.4042127577642305, 1.328868967659405], [1.6864829266764214, 0.8698785859035244], [1.8458837822281164, 0.3787383883369649], [1.9748201013462559, -0.14354045741399932], [2.072954828155415, -0.6661563590403882], [2.1406250185310185, -1.219910908851182]], "nose_bridge": [[-0.1099135552770809, -1.0597064339032989], [-0.11395822578217647, -0.6900873261955369], [-0.11833995216269667, -0.28966662617879485], [-0.15318621497677243, 0.07961542565354243]], "top_lip": [[-0.7140189381714833, 0.6587786737665221], [-0.4980707361331975, 0.6303364725855144], [-0.2516579976613562, 0.6330329195889115], [-0.06752255555832455, 0.6966584394594196], [0.1484256464799612, 0.6682162382784117], [0.4561045136943382, 0.7023883893416383], [0.7945849732176953, 0.7368975962802893], [0.6710415481063501, 0.766350965087571], [0.14606625535198878, 0.8838273844412728], [-0.06954489081087233, 0.8814679933133005], [-0.25401738878932867, 0.8486440657517726], [-0.591486680686412, 0.7217300818861809]], "left_eye": [[-1.218433822524942, -1.1026420377275659], [-1.0014744528603825, -1.223489015835514], [-0.7550617143885411, -1.2207925688321168], [-0.5418099593536524, -1.0028220315412835], [-0.788896809576343, -0.9439152939267201], [-1.0349724921727597, -0.9774133332390973]], "right_eye": [[0.4743055309672683, -0.9608975953432904], [0.6919390123826772, -1.1433477580691989], [0.9694903990389232, -1.1711158474993575], [1.1834162658246612, -1.0147484948264842], [0.9972584884690818, -0.8935644608431114], [0.7200441576882602, -0.896597963721933]], "nose_tip": [[-0.40094717695031223, 0.200125347886066], [-0.2787519753406655, 0.29387834831470505], [-0.09461653323763378, 0.3575038681852132], [0.09086713236709645, 0.2979230188198006], [0.2763507979718267, 0.23834216945438808]], "transform": {"angle": -0.010942370102897664, "center": [125.94444444444444, 164.36111111111111], "scale": 32.46391039901173}}], "embedding": [[-0.1176426112651825, 0.1032189354300499, 0.0013742595911026, -0.07379307597875595, -0.07281077653169632, -0.061613451689481735, -0.07332250475883484, -0.13855333626270294, 0.08587218075990677, -0.08565148711204529, 0.07868754118680954, -0.06815927475690842, -0.29534322023391724, 0.08657374233007431, -0.06588494777679443, 0.1782294362783432, -0.2280960977077484, -0.2085922807455063, -0.1453661471605301, 0.011763924732804298, 0.022101493552327156, 0.015199121087789536, 0.024890083819627762, 0.10485932230949402, -0.046934060752391815, -0.4350888729095459, -0.104930579662323, -0.05190352350473404, -0.0223412923514843, -0.036966726183891296, 0.011415772140026093, 0.02521245926618576, -0.17013432085514069, 0.0012237690389156342, 0.03660285845398903, 0.042221084237098694, -0.03449322655797005, -0.1865968406200409, 0.20418019592761993, 0.028255391865968704, -0.2750788629055023, -0.049417972564697266, 0.12780453264713287, 0.30851906538009644, 0.27142637968063354, -0.004526509903371334, 0.029363250359892845, -0.09813179820775986, 0.15153974294662476, -0.39288485050201416, 0.08022865653038025, 0.16065239906311035, 0.04200848937034607, 0.17049163579940796, 0.024078432470560074, -0.18792949616909027, 0.03646204620599747, 0.18497377634048462, -0.2354024350643158, 0.0719066932797432, 0.02758333645761013, -0.0720711201429367, 0.03467268869280815, -0.11715548485517502, 0.26798492670059204, 0.1862606257200241, -0.20362526178359985, -0.14473088085651398, 0.17973527312278748, -0.2082124650478363, -0.04102478548884392, -0.020587028935551643, -0.13298840820789337, -0.23762574791908264, -0.31715497374534607, -0.0007117604836821556, 0.2956753075122833, 0.18595339357852936, -0.12616361677646637, 0.014488227665424347, -0.12338973581790924, -0.04996848851442337, -0.03726895898580551, 0.1906687319278717, -0.0034225136041641235, -0.03186940774321556, -0.07173610478639603, 0.02678404375910759, 0.2659974694252014, -0.032597243785858154, -0.03794168680906296, 0.3335033059120178, -0.0326460562646389, -0.034274209290742874, 0.008200330659747124, 0.2093680202960968, -0.2009902149438858, -0.027851678431034088, -0.19140009582042694, -0.00848882645368576, -0.026713209226727486, 0.002545315772294998, -0.014405157417058945, 0.17461282014846802, -0.14516335725784302, 0.1903546154499054, -0.04280492663383484, 0.024943048134446144, 0.0021436959505081177, -0.09183429181575775, -0.03639707714319229, -0.1058657243847847, 0.12863992154598236, -0.19092555344104767, 0.18115192651748657, 0.20177695155143738, 0.10621942579746246, 0.15738996863365173, 0.017112787812948227, 0.03003941848874092, 0.04241340234875679, -0.06599642336368561, -0.23893964290618896, -0.01596113108098507, 0.07063469290733337, 0.04239773377776146, -0.08962158113718033, 0.07915609329938889]], "url": "http://i.imgur.com/zakRfSN.jpg"},
"000086": {"url": "http://i.imgur.com/m9nknMT.jpg", "embedding": [[-0.1187974363565445, 0.06299831718206406, 0.03244861215353012, -0.16508688032627106, -0.12562662363052368, -0.02504172921180725, 0.0018459782004356384, -0.10339602828025818, 0.12802064418792725, -0.16124120354652405, 0.2593252658843994, -0.10822628438472748, -0.25184276700019836, -0.023588959127664566, -0.04687849059700966, 0.1868998259305954, -0.0770830512046814, -0.15015201270580292, -0.05322439223527908, -0.025446580722928047, 0.0925188958644867, -0.014425143599510193, -0.0003665722906589508, 0.10919322073459625, -0.08615776896476746, -0.30960458517074585, -0.07729246467351913, 0.0010071787983179092, -0.13555850088596344, -0.05696261301636696, 0.030405763536691666, 0.14179734885692596, -0.168563574552536, 0.02106587402522564, -0.012188516557216644, 0.10405772924423218, -0.03606972098350525, -0.11109527945518494, 0.20327302813529968, 0.05854026600718498, -0.23700721561908722, 0.004683207720518112, 0.06576316803693771, 0.2618582248687744, 0.11097254604101181, -0.03647088259458542, 0.002779876347631216, -0.05151612311601639, 0.11947065591812134, -0.29456061124801636, 0.04966919124126434, 0.16368412971496582, 0.0620185025036335, 0.008505471050739288, 0.039450839161872864, -0.12439888715744019, 0.05323542654514313, 0.15576663613319397, -0.20949381589889526, -0.035279057919979095, 0.035205937922000885, -0.11338888108730316, -0.04886532574892044, -0.19017936289310455, 0.193780779838562, 0.20608890056610107, -0.1097053587436676, -0.09685321152210236, 0.20115596055984497, -0.03246966376900673, -0.07535608857870102, 0.054978031665086746, -0.20517286658287048, -0.21836885809898376, -0.2147947996854782, 0.07446689903736115, 0.33954691886901855, 0.19441205263137817, -0.1314333975315094, 0.03603499382734299, -0.0707072764635086, 0.01884428597986698, -0.011173906736075878, 0.0731184333562851, -0.0024064257740974426, 0.007756195962429047, -0.09253239631652832, 0.06377720832824707, 0.15248320996761322, -0.04607012867927551, -0.0509941540658474, 0.25987789034843445, 0.012411732226610184, -0.013928251340985298, 0.010901630856096745, 0.02179637923836708, -0.0975487008690834, -0.001941809430718422, -0.20136189460754395, -0.03963397815823555, -0.014598138630390167, -0.07651135325431824, -0.030701829120516777, 0.10684438049793243, -0.2317928820848465, 0.1499291956424713, -0.026967791840434074, -0.052965790033340454, -0.0767344981431961, -0.014799481257796288, -0.019945451989769936, 0.02111532911658287, 0.0559205487370491, -0.18624566495418549, 0.12582184374332428, 0.1201118603348732, 0.09472834318876266, 0.17581583559513092, 0.09386478364467621, 0.04856458306312561, 0.00877152569591999, -0.1124962791800499, -0.17639575898647308, -0.08128432184457779, 0.12170270085334778, 0.06409495323896408, 0.06445997208356857, 0.06094054877758026]], "landmarks": [{"nose_tip": [[-0.12132563467624372, 0.07744531010732222], [0.08416066324076368, 0.1283621668573776], [0.2896469611577711, 0.17927902360743295], [0.434952413885994, 0.17413236336369453], [0.5781992025167215, 0.11086352202866698]], "left_eyebrow": [[-1.5749299076458017, -1.52962891265453], [-1.2334021454393005, -1.7454085310590142], [-0.8286055418977716, -1.8179413608327708], [-0.3896011875668599, -1.7461980699270525], [-0.033662776677891165, -1.5551224206925123]], "bottom_lip": [[0.5458103226441244, 0.8394494497672766], [0.4316246245590415, 0.9016889590535566], [0.3164095944252109, 0.934867377794192], [0.22819699073952948, 0.9088942833947904], [0.11092329650820348, 0.8839505210441366], [-0.09456300140880392, 0.8330336642940812], [-0.3882619030114927, 0.7561437131446243], [-0.2439857823320176, 0.7219359623552414], [0.16184015325825885, 0.6784642231271292], [0.24902342489519258, 0.6753762269808862], [0.3362066965321263, 0.6722882308346431], [0.45656838690969537, 0.7844152648222307]], "transform": {"scale": 34.38870658271548, "angle": 0.03540479398522069, "center": [119.26388888888889, 166.48611111111111]}, "left_eye": [[-1.1225442366811698, -1.0800914446554317], [-0.8931435084622562, -1.175509372682347], [-0.6305643615027073, -1.1557122705754315], [-0.4489924938876061, -0.9584606290484057], [-0.6524201277071181, -0.9512553047071718], [-0.914999274666667, -0.9710524068140872]], "nose_bridge": [[0.27650543770476066, -1.0132550208127422], [0.34389160723477896, -0.7537638699994367], [0.41024844471604954, -0.5233338097317753], [0.4766052821973202, -0.292903749464114]], "chin": [[-2.7239922128378646, -1.1106614536112427], [-2.731437330359808, -0.4993492201039592], [-2.6797309347417144, 0.1389654398514739], [-2.542899931584182, 0.7160699225693747], [-2.176668200207737, 1.1977564772603602], [-1.6422459178499096, 1.4989004963849923], [-1.0507307864495414, 1.7689247608664844], [-0.46230365119541594, 1.9517657537110427], [0.03379355217803717, 1.9923892899736213], [0.43550215957332283, 1.8326731885629308], [0.6867586539966472, 1.5327982946677559], [0.8467145485880472, 1.1197670347362456], [1.0076997752281946, 0.73579686535038], [1.1396239113226976, 0.35285602801326216], [1.2123965342771639, -0.05708723577200498], [1.2291056402378362, -0.40684965436848763], [1.216753655652864, -0.7555827409162226]], "right_eye": [[0.45601864122236646, -0.8741255603770056], [0.6542996147981401, -1.0266363374464622], [0.8878176712120445, -1.0058099032907992], [1.009208693638361, -0.8646217787575671], [0.8960523276020259, -0.7733211789256427], [0.6625342711881216, -0.7941476130813057]], "top_lip": [[-0.3882619030114927, 0.7561437131446243], [-0.04570480875624393, 0.5694251852857847], [0.2127570100083142, 0.4729779252101218], [0.30199894574274333, 0.5280121101551679], [0.38918221737967706, 0.5249241140089248], [0.48048281721160147, 0.6380804800452602], [0.5458103226441244, 0.8394494497672766], [0.45656838690969537, 0.7844152648222307], [0.3652677870777709, 0.6712588987858954], [0.2780845154408371, 0.6743468949321385], [0.18987191175515572, 0.648373800532737], [-0.2439857823320176, 0.7219359623552414]], "right_eyebrow": [[0.5817667850243834, -1.4314329409879911], [0.8101381811945493, -1.5559119595605508], [1.0125364829653136, -1.592178374447429], [1.2180227808823212, -1.5412615176973736], [1.311382044811741, -1.3699829705697493]]}]},
"000088": {"url": "http://i.imgur.com/n5kfdfx.jpg", "landmarks": [{"left_eye": [[-1.0855712285652082, -1.0426055947987378], [-0.9330362394075445, -1.1918988541621263], [-0.6915736405907027, -1.189305470326706], [-0.5124217293546365, -1.0062634833375095], [-0.7243498492782281, -0.9481670444892918], [-0.9658124480950698, -0.950760428324712]], "left_eyebrow": [[-1.322171232690637, -1.4979413514157363], [-1.1998190683850785, -1.6475587837585524], [-0.9583564695682367, -1.644965399923132], [-0.7175422167102501, -1.5820063663835013], [-0.47737630981111845, -1.4586816831396603]], "chin": [[-1.2673165236366948, -0.9841849829710926], [-1.3322205950528903, -0.5622737810004745], [-1.306900364892198, -0.10920723523946875], [-1.1907074871957624, 0.3146490046077144], [-1.0751629554581819, 0.798870894159108], [-0.8684216032054307, 1.2236996529445738], [-0.6305249071622918, 1.5583041101531512], [-0.3316142154560874, 1.8331912636163734], [0.029607163830892673, 1.9276298139258197], [0.4829978825713261, 1.872126758913022], [0.9983751159131073, 1.6663579255985534], [1.5147248681931713, 1.370040617727769], [1.940850318896347, 1.042567966066597], [2.2173583372567074, 0.5927431500998664], [2.373783402167501, 0.08125599251121542], [2.4098013406493015, -0.46171068184725095], [2.3851294564474643, -0.975142877312467]], "right_eye": [[0.45407701187158545, -1.0562555977000392], [0.6374431718402096, -1.2655903337882106], [0.9094127684885839, -1.2928556018254682], [1.1193958505356103, -1.1698550915610546], [0.9370022095052689, -1.0510688300291988], [0.6650326128568944, -1.0238035619919414]], "nose_bridge": [[-0.17943813704319655, -1.0932460551201224], [-0.2436938625005373, -0.7317005028537149], [-0.30762541497845053, -0.4003377754394126], [-0.37155696745636374, -0.06897504802511024]], "top_lip": [[-0.5321962810997155, 0.8348888326409087], [-0.5000684183710452, 0.6541160565077049], [-0.37836460002434175, 0.5648642738690992], [-0.2579574735953484, 0.5963437906389146], [-0.10639500337596726, 0.5375990058318418], [0.1642779013546971, 0.6310650372030052], [0.49434393685128947, 0.8157278890893392], [0.40379546229497376, 0.8147553701510567], [-0.07848138937985472, 0.7492029527760059], [-0.22971968661980835, 0.7777649127309735], [-0.3504509860282292, 0.7764682208132634], [-0.4416478065433999, 0.8358613515791913]], "bottom_lip": [[0.49434393685128947, 0.8157278890893392], [0.19057065045367202, 0.9935831084076954], [-0.02168164244934706, 1.0818623721080183], [-0.20310276454140588, 1.1101001590835584], [-0.3235098909703992, 1.078620642313743], [-0.47377566927207027, 1.016634127712395], [-0.5321962810997155, 0.8348888326409087], [-0.4416478065433999, 0.8358613515791913], [-0.32091650713497905, 0.8371580434969014], [-0.20018520772655818, 0.8384547354146115], [-0.07945390831813728, 0.8397514273323216], [0.40379546229497376, 0.8147553701510567]], "nose_tip": [[-0.4952058236796323, 0.20137368372612663], [-0.37479869725063897, 0.23285320049594194], [-0.25439157082164565, 0.26433271726575724], [-0.07264627575015926, 0.20591210543811198], [0.07891619446922188, 0.14716732063103916]], "right_eyebrow": [[0.15808387698022874, -1.6027881748322084], [0.46153299039841855, -1.7504605692984592], [0.8246994075619637, -1.8371189681016447], [1.1563863079556935, -1.8033702404758365], [1.4562695186001808, -1.6190315615689301]], "transform": {"center": [128.33333333333334, 166.15277777777777], "scale": 33.12951430921071, "angle": -0.01073989982583955}}], "embedding": [[-0.1015278697013855, 0.13843028247356415, 0.017889879643917084, -0.14156822860240936, -0.12930823862552643, 0.005763009190559387, -0.09406350553035736, -0.13198930025100708, 0.15955336391925812, -0.17391805350780487, 0.19003185629844666, -0.10899236053228378, -0.2709636092185974, -0.008454550057649612, -0.11408549547195435, 0.27331626415252686, -0.21511530876159668, -0.21632058918476105, -0.07904259860515594, 0.004175050184130669, 0.040325313806533813, 0.029838085174560547, -0.0998886451125145, 0.05665788799524307, -0.07698779553174973, -0.32661065459251404, -0.0505983941257, 0.04714981094002724, 0.013839864172041416, -0.05245795100927353, -0.046736977994441986, 0.0453956201672554, -0.18737082183361053, -0.009095720946788788, 0.06358037143945694, 0.2334851771593094, -0.0314427874982357, -0.1926468163728714, 0.10815653949975967, 0.0218440480530262, -0.28045713901519775, -0.0039265211671590805, 0.06925053894519806, 0.329216331243515, 0.2038043737411499, -0.07392706722021103, 0.005156924948096275, -0.15692877769470215, 0.0989404171705246, -0.2614028751850128, 0.020706497132778168, 0.12792301177978516, 0.05535329505801201, 0.12023264169692993, -0.030780112370848656, -0.1655030995607376, 0.08692512661218643, 0.16184505820274353, -0.18687410652637482, -0.09691845625638962, 0.16484420001506805, -0.15416589379310608, -0.003643617033958435, -0.1163058802485466, 0.2097049206495285, 0.14178767800331116, -0.10621272027492523, -0.23434807360172272, 0.1618613451719284, -0.18061760067939758, -0.067599356174469, -0.02979794517159462, -0.08386599272489548, -0.14500924944877625, -0.31581392884254456, -0.003233823925256729, 0.3115319311618805, 0.2188253402709961, -0.16249898076057434, 0.09429414570331573, 0.008470523171126842, 0.044403720647096634, 0.1331556737422943, 0.1795618087053299, 0.018471362069249153, 0.086295485496521, -0.1287534385919571, 0.05828773230314255, 0.2418426126241684, -0.07975335419178009, 0.018235713243484497, 0.22306664288043976, 0.028940904885530472, -0.060778941959142685, 0.07900264859199524, 0.047709621489048004, -0.10656224936246872, 0.04766857624053955, -0.17201489210128784, -0.015591006726026535, 0.02810918353497982, -0.01545044407248497, 0.0388002023100853, 0.13343395292758942, -0.13037140667438507, 0.17689046263694763, -0.0007301289588212967, 0.023009013384580612, 0.028049655258655548, -0.09297671914100647, -0.005137905478477478, -0.08443938195705414, 0.1513974368572235, -0.18098758161067963, 0.1337336301803589, 0.1591326743364334, 0.10550040751695633, 0.16816695034503937, 0.15032634139060974, 0.1119765043258667, 0.014272069558501244, -0.07790720462799072, -0.19157788157463074, -0.0248897485435009, 0.022281475365161896, 0.013628433458507061, 0.08459246158599854, 0.054585132747888565]]},
"000091": {"landmarks": [{"right_eyebrow": [[0.25932315632892955, -1.237319911194496], [0.6191722496747403, -1.3223525291498042], [0.9786347033828143, -1.3774943825690622], [1.3676012819892014, -1.4023588318145337], [1.7251305375085912, -1.3080468625535417]], "right_eye": [[0.49574279515317204, -1.024991442340251], [0.6770205805581562, -1.1721254271940804], [0.9464241010203435, -1.198536434990499], [1.1541128942217462, -1.0762668993821412], [0.9736083880922357, -0.988914443600412], [0.7045915072677854, -0.9923942003400434]], "chin": [[-1.8908786920779883, -1.414611787791797], [-1.8380566764851511, -0.8758047468674229], [-1.7553438963562638, -0.336611066305312], [-1.7021352411256896, 0.1723052100830121], [-1.5891450568230154, 0.6819947657468098], [-1.2960370060285675, 1.1342226301649283], [-0.9124833823504958, 1.5278288844241574], [-0.49865235449863726, 1.8919310137850733], [0.008330723701002778, 1.9881761812347492], [0.5176336397270638, 1.9050767614681252], [1.000525547956706, 1.5525738212393139], [1.4535266916502985, 1.199684241372766], [1.8180154606489507, 0.7559624489848574], [1.9744287968084637, 0.219861885524641], [2.0116657144615133, -0.34767600102257273], [2.1086841611866634, -0.9144406082943128], [2.1761984830134993, -1.5114826197398397]], "top_lip": [[-0.6928087603792514, 0.7234847194149645], [-0.48280012935142763, 0.6664096678070223], [-0.24328737342529058, 0.6396120203728667], [-0.034825300948414004, 0.7021000269091245], [0.14490592590562298, 0.6745291001994954], [0.3836454025562863, 0.70751298183744], [0.6518890041052628, 0.7707742676491713], [0.5319393063233261, 0.7991184736342741], [0.1433593673546757, 0.7940921583436954], [-0.035985219861624465, 0.7917723205172745], [-0.24483393197623785, 0.7591750785170668], [-0.5736323418727881, 0.7549220425019618]], "left_eyebrow": [[-1.6831898988765854, -1.2923422521834393], [-1.412626459501188, -1.408425553588008], [-1.0539372850685875, -1.403785877935166], [-0.6960213899114609, -1.3393646732102242], [-0.33849213439207104, -1.2450527039492323]], "bottom_lip": [[0.6518890041052628, 0.7707742676491713], [0.410056410352705, 0.976916502299627], [0.14026625025278114, 1.0332182746320957], [-0.06896910149956906, 1.030511797167938], [-0.27781781361418245, 0.9979145551677303], [-0.486279886091059, 0.9354265486314725], [-0.6928087603792514, 0.7234847194149645], [-0.5736323418727881, 0.7549220425019618], [-0.24483393197623785, 0.7591750785170668], [-0.0658759843976745, 0.7913856808795378], [0.1433593673546757, 0.7940921583436954], [0.5319393063233261, 0.7991184736342741]], "transform": {"scale": 33.45235117869469, "center": [125.86111111111111, 163.5], "angle": -0.012934365586671447}, "nose_bridge": [[-0.01278684159741525, -1.0016735516457271], [-0.017426517250257095, -0.6429843772131267], [-0.022452832540835757, -0.25440443824447634], [-0.027092508193677603, 0.10428473618812395]], "left_eye": [[-1.176980099952419, -1.136315555661663], [-0.9665848292868583, -1.2232813718056557], [-0.727845352636195, -1.190297490167711], [-0.5205431990725289, -1.0381371900233032], [-0.7600559549986659, -1.0113395425891476], [-0.9987954316493295, -1.0443234242270922]], "nose_tip": [[-0.3873282411772252, 0.2192081186794822], [-0.20914357287413549, 0.3112002501140532], [-0.030572264933308984, 0.3733016170125742], [0.17943636609451485, 0.3162265654046319], [0.3599408722240255, 0.2288741096229027]]}], "embedding": [[-0.1102110892534256, 0.09516645222902298, 0.023083072155714035, -0.13382795453071594, -0.1679643988609314, 0.078953817486763, -0.05482190474867821, -0.05136796087026596, 0.16214963793754578, -0.061718910932540894, 0.19336041808128357, 0.08853746950626373, -0.17884588241577148, -0.0993792712688446, -0.03348686918616295, 0.1497882604598999, -0.1797260046005249, -0.12925276160240173, -0.04088030382990837, -0.12751834094524384, -0.018877878785133362, 0.030428459867835045, -0.05551370605826378, 0.07288597524166107, -0.19857650995254517, -0.1863778680562973, -0.03791017830371857, -0.08726673573255539, -0.03933204710483551, -0.17211532592773438, 0.06969836354255676, 0.06294801831245422, -0.17015618085861206, 0.00017046555876731873, -0.04020402580499649, 0.05934621021151543, -0.1394624561071396, -0.019375324249267578, 0.18912474811077118, 0.10220305621623993, -0.11119452863931656, 0.028747648000717163, 0.03349202498793602, 0.28538739681243896, 0.2688170373439789, 0.018717927858233452, 0.01397845707833767, -0.025948837399482727, 0.22550614178180695, -0.34369710087776184, 0.08279909193515778, 0.1201111227273941, 0.07566016912460327, 0.020048905164003372, 0.11904429644346237, -0.18147516250610352, -0.01061435416340828, 0.20015139877796173, -0.23823148012161255, 0.1189611554145813, -0.04622615873813629, -0.08422952890396118, -0.06185966357588768, -0.04540815204381943, 0.18178977072238922, 0.1413080096244812, -0.10741342604160309, -0.19664886593818665, 0.1352248340845108, -0.11931675672531128, -0.11689606308937073, 0.17742189764976501, -0.0752163678407669, -0.21015313267707825, -0.3568509519100189, 0.11966509371995926, 0.3930153250694275, 0.18049240112304688, -0.11017197370529175, 0.024113794788718224, -0.003776613622903824, -0.06779855489730835, 0.04318464919924736, 0.031099438667297363, -0.11096848547458649, -0.09637080132961273, -0.08755476027727127, 0.004613921046257019, 0.14398005604743958, 0.05164433270692825, -0.08723883330821991, 0.25049683451652527, 0.005938529968261719, 0.023229407146573067, -0.023405548185110092, 0.05366017669439316, -0.12056790292263031, 0.03710927814245224, -0.08243753015995026, -0.09389621019363403, 0.06326451152563095, -0.05480245128273964, 0.048095233738422394, 0.10809482634067535, -0.14797161519527435, 0.18452154099941254, -0.06386067718267441, 0.02719276398420334, -0.11626219749450684, -0.04942099004983902, -0.1810826063156128, 0.08385159820318222, 0.178480863571167, -0.3291514217853546, 0.17525051534175873, 0.13022243976593018, 0.008375151082873344, 0.10820293426513672, 0.16958273947238922, -0.029738668352365494, -0.01260500866919756, -0.04664865508675575, -0.12518106400966644, -0.022500084713101387, 0.08374971151351929, -0.07982582598924637, 0.11556439846754074, 0.061699140816926956]], "url": "http://i.imgur.com/LOxz7ZB.jpg"},
"000092": {"url": "http://i.imgur.com/V9TCz10.jpg", "landmarks": [{"right_eyebrow": [[0.46795314721921266, -1.4634082542103373], [0.8048526568366666, -1.5846562675798224], [1.1109592727163038, -1.6448246938899327], [1.447251341834248, -1.5825302258315377], [1.6299839025961151, -1.3371994767615205]], "bottom_lip": [[0.705792130128607, 0.6175497893049869], [0.4905455942136451, 0.9533356580066729], [0.2761089789646963, 1.0443982181378513], [0.06187484388225092, 1.0742799511264032], [-0.12166763754562947, 1.0736725106268932], [-0.4271668129257568, 0.9502984555091231], [-0.7626489613776876, 0.6432806788802208], [-0.6403885471756856, 0.6742760527845408], [-0.12095895696286788, 0.8595396156276994], [0.06258352446501252, 0.8601470561272093], [0.24622724597614457, 0.8301640830554059], [0.5526375821055368, 0.6782244160313555]], "nose_bridge": [[0.16093537059031046, -1.1279261057584065], [0.19031090316260396, -0.760739902819394], [0.21978767581814912, -0.42414411345169495], [0.24926444847369428, -0.08754832408399595]], "top_lip": [[-0.7626489613776876, 0.6432806788802208], [-0.3953615183554235, 0.5833147327366138], [-0.0893561425590379, 0.5537367199978172], [0.09398385870233918, 0.6155249876399538], [0.2776275802134712, 0.5855420145681504], [0.49176047521266497, 0.586250695150912], [0.705792130128607, 0.6175497893049869], [0.5526375821055368, 0.6782244160313555], [0.2772226198804646, 0.7079036688534041], [0.09357889836933254, 0.7378866419252075], [-0.12045275654660959, 0.7065875477711325], [-0.6403885471756856, 0.6742760527845408]], "left_eye": [[-1.2466286140231122, -1.010221495302729], [-1.001399105036347, -1.1623636424932828], [-0.7259841428112747, -1.1920428953153315], [-0.5430491018829043, -1.007892973387941], [-0.7573844770486013, -0.9474208268280758], [-1.032698199190422, -0.9483319875773407]], "right_eye": [[0.5582057866843779, -1.0042483303908811], [0.7729461221830817, -1.1870821312360003], [1.0482598443249023, -1.1861709704867351], [1.231397365419776, -1.0632018757019717], [1.0475511637421406, -0.9720380754875413], [0.8028278551716335, -0.9728479961535546]], "nose_tip": [[-0.21009795551226498, 0.06388514252379617], [0.0038324593204255037, 0.12577465024918458], [0.1870712204985509, 0.21815333146263466], [0.34022576852162123, 0.15747870473626618], [0.46278990297337813, 0.09670283792664604]], "transform": {"center": [122.86111111111111, 165.88888888888889], "scale": 32.68980071807802, "angle": -0.0033095241876840253}, "left_eyebrow": [[-1.6735782829392283, -1.4093142328953263], [-1.3670667067265845, -1.59184431349069], [-0.9997792637043206, -1.6518102596342972], [-0.602205127360498, -1.6199037249807122], [-0.23562636492099545, -1.4657367761251254]], "chin": [[-2.195336395066834, -0.8909982835982768], [-2.1663658228275473, -0.40145042637401085], [-2.0762144234456335, 0.08829991101675845], [-1.9860630240637203, 0.5780502484075277], [-1.7427570766587361, 1.0071259590719284], [-1.4075786484565602, 1.4059149764147711], [-0.9803252592906894, 1.713236473293428], [-0.4915873227324366, 1.9289892096246484], [-0.032933599329239005, 1.9916886380160501], [0.39563591091890354, 1.9013347584676332], [0.7638345146904324, 1.5660550901822055], [1.0709535314025864, 1.1999825281589616], [1.316992961055365, 0.8031170723979004], [1.4713623900774553, 0.3753574828157713], [1.5646522320401703, -0.08319500050417467], [1.6577395938363821, -0.48056665668149384], [1.6897473685732185, -0.9087312065966298]]}], "embedding": [[-0.22896911203861237, 0.11635374277830124, 0.0664212554693222, -0.06117580458521843, -0.0719527080655098, -0.0506068617105484, 0.02580554410815239, -0.10800091177225113, 0.14021573960781097, -0.04187612980604172, 0.1632482409477234, -0.08657196909189224, -0.30722224712371826, -0.0671263337135315, 0.07184840738773346, 0.18392547965049744, -0.12203352153301239, -0.2217637002468109, -0.1712006777524948, -0.043630704283714294, 0.045584581792354584, 0.0708402693271637, -0.05720173567533493, 0.11987678706645966, -0.20951829850673676, -0.2613411545753479, -0.07012094557285309, -0.1577749401330948, -0.09610140323638916, -0.13294577598571777, 0.10626140236854553, 0.10664220154285431, -0.0893465131521225, -0.054633647203445435, 0.12798121571540833, 0.08471637219190598, 0.028203019872307777, -0.1286187469959259, 0.26194363832473755, -0.07900935411453247, -0.2826736569404602, -0.10172141343355179, 0.23129528760910034, 0.2743450105190277, 0.2648242115974426, -0.04248115420341492, 0.011710572987794876, -0.03970107436180115, 0.18437860906124115, -0.3994274139404297, -0.04065574333071709, 0.14639705419540405, 0.07365178316831589, 0.13293525576591492, 0.18042346835136414, -0.2046090066432953, 0.028775295242667198, 0.13637709617614746, -0.2442532330751419, 0.06421636790037155, 0.05249566584825516, -0.18971769511699677, -0.04980034381151199, -0.08007113635540009, 0.16749608516693115, 0.05095939338207245, -0.19721609354019165, -0.13258008658885956, 0.19565606117248535, -0.2071971446275711, -0.0652976930141449, 0.19169962406158447, -0.14131896197795868, -0.24619421362876892, -0.3203372061252594, 0.02889471873641014, 0.3540823459625244, 0.19982431828975677, -0.21899442374706268, 0.01596180535852909, -0.01657782681286335, -0.0003748219460248947, -0.05221332982182503, 0.14461520314216614, 0.04781295731663704, -0.0983995795249939, -0.07710272073745728, -0.010744575411081314, 0.26421383023262024, -0.003024859819561243, 0.08165223896503448, 0.28991609811782837, 0.033712178468704224, -0.10755373537540436, -0.015357587486505508, 0.13070902228355408, -0.10966377705335617, -0.10818604379892349, -0.1182086169719696, 0.017154403030872345, 0.014363888651132584, -0.014225087128579617, 0.03956620395183563, 0.151312917470932, -0.16987451910972595, 0.13570056855678558, -0.06361068785190582, -0.05491335690021515, -0.14163726568222046, -0.06751789897680283, 0.001958576962351799, 0.020324014127254486, 0.15303808450698853, -0.2262287437915802, 0.11299540847539902, 0.16344116628170013, -0.07454463839530945, 0.10348206013441086, -0.024594513699412346, 0.09868360310792923, 0.013038724660873413, -0.024592921137809753, -0.11858812719583511, -0.1453043818473816, 0.059116143733263016, -0.01655159890651703, -0.036269593983888626, -0.01938263513147831]]},
"000096": {"embedding": [[-0.09447523951530457, 0.08634340018033981, 0.07344885170459747, -0.12622971832752228, -0.17744481563568115, -0.039290882647037506, -0.04246830940246582, -0.08325213193893433, 0.2902398109436035, -0.06304904073476791, 0.15023942291736603, -0.053981952369213104, -0.34146207571029663, 0.06229076907038689, -0.13993147015571594, 0.18781334161758423, -0.2560688853263855, -0.21320071816444397, -0.012312203645706177, -0.05562792718410492, -0.012735992670059204, 0.036362215876579285, 0.036922845989465714, 0.06940840184688568, -0.08795803785324097, -0.39552760124206543, -0.06653955578804016, -0.0761203020811081, -0.02109658718109131, -0.120116226375103, -0.0041189067997038364, 0.12521794438362122, -0.19856728613376617, -0.041286684572696686, 0.07125046849250793, 0.12785384058952332, -0.11212112009525299, -0.18191440403461456, 0.17905467748641968, 0.00038528256118297577, -0.1814253330230713, -0.038009390234947205, 0.01755756512284279, 0.2282997965812683, 0.21224384009838104, -0.05712336301803589, 0.04102245718240738, -0.17845413088798523, 0.2150891125202179, -0.30508723855018616, -0.012008344754576683, 0.17044831812381744, 0.031157974153757095, 0.07285477221012115, 0.0733526349067688, -0.2367112934589386, 0.0168086439371109, 0.18164004385471344, -0.23699136078357697, 0.030008869245648384, 0.028211399912834167, -0.1354924738407135, -0.04019918665289879, -0.08039109408855438, 0.1636517494916916, 0.14639416337013245, -0.07094822824001312, -0.22436405718326569, 0.2606965899467468, -0.141017347574234, 0.025870876386761665, 0.1343037337064743, -0.08407006412744522, -0.21585507690906525, -0.13697439432144165, -0.019131939858198166, 0.3801676034927368, 0.07855473458766937, -0.09306170046329498, 0.06637083739042282, -0.060320351272821426, -0.00497443787753582, -0.061367496848106384, 0.08166981488466263, -0.09434276074171066, 0.03427703678607941, -0.17688316106796265, 0.05088244378566742, 0.1922559291124344, -0.05867284536361694, -0.019493525847792625, 0.22876834869384766, -0.02108815126121044, 0.05799686908721924, 0.12965232133865356, 0.08092997968196869, -0.17760321497917175, 0.056690894067287445, -0.19967299699783325, -0.05948498845100403, 0.036770135164260864, -0.08095088601112366, -0.033849284052848816, 0.03218616172671318, -0.06530065089464188, 0.10425719618797302, -0.06042109429836273, -0.025477882474660873, -0.10672520101070404, -0.14144542813301086, -0.01134970411658287, 0.005453519523143768, 0.18704041838645935, -0.3102303743362427, 0.22491733729839325, 0.08792412281036377, 0.017986038699746132, 0.2442874312400818, -0.03149423748254776, 0.03406001254916191, -0.016337711364030838, -0.13559401035308838, -0.11362659931182861, -0.033054690808057785, 0.04005703330039978, 0.04661327600479126, 0.00581101980060339, 0.0007714550010859966]], "url": "http://i.imgur.com/5mXP8AU.jpg", "landmarks": [{"top_lip": [[-0.641187554748232, 0.8411304925325098], [-0.3473927556890473, 0.5412394260690934], [-0.08145336968472316, 0.4197589326326688], [0.09726201671248035, 0.47729863896365937], [0.27475814962883754, 0.4161011721901297], [0.513756562688936, 0.5620841316090873], [0.6946056426776205, 0.8274138908729882], [0.5755636562028887, 0.7989488510777045], [0.2771966565905303, 0.65357551839917], [0.0993957103039615, 0.6850886918965697], [-0.07901486272303043, 0.6572332788417092], [-0.4930709017377933, 0.8099221324053218]], "nose_tip": [[-0.23383740987812413, 0.03538718689403604], [-0.08511113012726225, 0.06354741331910815], [0.12298373617585971, 0.09109801300375706], [0.2711003891862984, 0.059889652876569055], [0.389532748920607, 0.028986106119592625]], "right_eye": [[0.5282001874544864, -0.9224353455676272], [0.7341613601661273, -1.1026747988158885], [1.0013199996512978, -1.105418119147793], [1.1812546395293477, -0.9291412397122822], [1.0040633199832023, -0.8382594796626225], [0.7665889737741616, -0.8358209727009298]], "right_eyebrow": [[0.4036715603159459, -1.4852176643332518], [0.6996000529666118, -1.5773186778637578], [1.0261272790040423, -1.5806716249360853], [1.2942003585998476, -1.4943620654395995], [1.5041241051242393, -1.2887057060981704]], "left_eyebrow": [[-1.6745337823833695, -1.4935650216945704], [-1.3201511432910784, -1.67532854179389], [-0.9642444373477294, -1.7086705955125592], [-0.5777389980176154, -1.6532645827730497], [-0.21969859848278522, -1.4788165835588083]], "nose_bridge": [[0.11109601473760766, -1.0665894247653152], [0.11353452169930038, -0.8291150785562748], [0.11597302866099311, -0.5916407323472342], [0.14840064226902752, -0.32478690623227535]], "bottom_lip": [[0.6946056426776205, 0.8274138908729882], [0.5177191365016867, 0.9479799441987781], [0.3099290835687762, 0.9501136377902591], [0.13182332391199586, 0.9519425180115287], [-0.07596672902091452, 0.9540762116030099], [-0.34343018187629665, 0.9271352386587841], [-0.641187554748232, 0.8411304925325098], [-0.4930709017377933, 0.8099221324053218], [-0.04902575607668879, 0.6866127587476277], [0.12938481695030313, 0.7144681718024882], [0.30718576323687186, 0.6829549983050885], [0.5755636562028887, 0.7989488510777045]], "left_eye": [[-1.2540766625941633, -1.0228837164594518], [-1.0181263832361809, -1.1737436898017948], [-0.7506629303807987, -1.1468027168575692], [-0.5113597039504888, -0.9711354641624814], [-0.7779087166952361, -0.9090235572783172], [-1.0450673561804065, -0.9062802369464129]], "transform": {"center": [122.88888888888889, 166.88888888888889], "scale": 33.68607343116553, "angle": 0.010268146007489327}, "chin": [[-2.2627330072421623, -0.9531514753199976], [-2.2278668866724347, -0.44882330299599826], [-2.1630116594563664, 0.08488434923391953], [-2.068776952334379, 0.5886028948174957], [-1.8860989921244247, 1.032038413738177], [-1.5556091922742432, 1.4145812792555403], [-1.0782219928944698, 1.6471786115411953], [-0.5423806470730709, 1.790113437258037], [0.02223055191382338, 1.8436905697762767], [0.5562430175139528, 1.808519635836338], [0.9702990565287157, 1.6558307822727254], [1.2937781488640303, 1.3556349024390972], [1.46792133470806, 0.9679102096281372], [1.5524020139832764, 0.5217313703755515], [1.606893586612151, 0.04617305121704744], [1.6910694525171555, -0.42969008131166825], [1.6864972519639816, -0.8749544804536191]]}]},
"000097": {"embedding": [[-0.11854837834835052, 0.08286000043153763, 0.07869403809309006, -0.08895154297351837, -0.14491914212703705, -0.0001413542777299881, -0.006704419851303101, -0.08739838004112244, 0.13335128128528595, -0.07998882234096527, 0.16271167993545532, 0.03139396011829376, -0.19097130000591278, -0.013031285256147385, 0.025103852152824402, 0.11208883672952652, -0.15072374045848846, -0.06597762554883957, -0.07420045137405396, -0.047556184232234955, 0.017047137022018433, 0.08608991652727127, 0.058782655745744705, 0.06777782738208771, -0.15037944912910461, -0.22655102610588074, -0.05695308744907379, -0.06055445224046707, -0.08760112524032593, -0.10166990011930466, 0.037473663687705994, 0.1571018546819687, -0.17364472150802612, -0.0045102983713150024, -0.04106741026043892, 0.08653377741575241, -0.0818706676363945, -0.027209654450416565, 0.2250555008649826, 0.01256784237921238, -0.22452682256698608, -0.0033896341919898987, 0.06124284490942955, 0.3097509741783142, 0.2932269275188446, -0.03322738781571388, -0.012751882895827293, -0.01322665624320507, 0.17330321669578552, -0.3752937614917755, 0.0062567368149757385, 0.09626420587301254, 0.00019186362624168396, 0.024894706904888153, -0.007258997298777103, -0.15272122621536255, 0.03280404582619667, 0.07028862088918686, -0.19372692704200745, 0.02994801662862301, 0.05450758337974548, -0.26486849784851074, -0.008565617725253105, -0.07222305238246918, 0.25464606285095215, 0.055296219885349274, -0.13256080448627472, -0.10068455338478088, 0.11253250390291214, -0.16281142830848694, -0.021465782076120377, 0.19088339805603027, -0.13151851296424866, -0.1998138576745987, -0.31519967317581177, 0.07290039956569672, 0.42063215374946594, 0.08595559000968933, -0.09684698283672333, 0.035092707723379135, -0.0963020846247673, -0.07781600207090378, -0.011051388457417488, 0.182734876871109, 0.028900878503918648, -0.03651851415634155, -0.10441924631595612, 0.08842726796865463, 0.2678777873516083, -0.09098716080188751, 0.006877252832055092, 0.31953829526901245, 0.08764076977968216, -0.0015909764915704727, -0.006872966885566711, 0.08460839092731476, -0.05863230675458908, -0.015652721747756004, -0.12351510673761368, 0.09220656752586365, -0.04215434938669205, -0.12525281310081482, -0.018581034615635872, 0.1137942522764206, -0.21437525749206543, 0.24535730481147766, -0.03669803589582443, -0.04876048117876053, -0.0623498372733593, -0.1857454478740692, -0.047429267317056656, -0.012649338692426682, 0.17089486122131348, -0.27876511216163635, 0.07955626398324966, 0.14612390100955963, 0.055896155536174774, 0.1933622807264328, -0.022935252636671066, 0.095484159886837, -0.04362082481384277, -0.0009061135351657867, -0.17198753356933594, 0.0004218053072690964, 0.10714677721261978, -0.06228414922952652, 0.038550812751054764, 0.06934843212366104]], "url": "http://i.imgur.com/GKkNUCB.jpg", "landmarks": [{"bottom_lip": [[0.6469422589295131, 0.8070776156204975], [0.43158916756033033, 1.0265326476438803], [0.1529486469481524, 1.1223427787914158], [-0.06416241898711614, 1.1554514722179847], [-0.21915803872344672, 1.1879741741225254], [-0.4995565339017104, 1.0974379666732472], [-0.7814200078850455, 0.8516131437266238], [-0.6574821112481839, 0.8193834375830976], [-0.2220879963335896, 0.8773969431278354], [-0.03574165773677575, 0.8756389685617497], [0.15031168509902382, 0.842823270896195], [0.5224183707706229, 0.7771918755650856]], "left_eye": [[-1.2343938684604971, -1.0698637477862527], [-0.9873970624698167, -1.227496329371712], [-0.707877554574596, -1.2301332912208407], [-0.4884225225512131, -1.014780199851658], [-0.7362983158249363, -0.9503207875646056], [-1.015817823720157, -0.9476838257154769]], "right_eyebrow": [[0.2525678954208281, -1.4876779446080355], [0.6240885895703986, -1.6154247861380828], [0.9961952752419978, -1.6810561814691922], [1.3381232250971709, -1.6532214117408803], [1.6191077117974633, -1.500569758092664]], "chin": [[-1.8871920450713742, -1.1258262830038908], [-1.8198026751741792, -0.5673732587354777], [-1.6905908548390602, -0.040563949088562215], [-1.5927297533644247, 0.45548063321989857], [-1.4327532056908512, 0.9509392240063307], [-1.1494247529024446, 1.3520526624502986], [-0.8045668454371288, 1.6904646631733002], [-0.4298231979164009, 1.9043527757374117], [-0.025779801862289918, 1.931601553943695], [0.43920705734670185, 1.8340334482300737], [0.8716712146511534, 1.5814697227801218], [1.2414339342346379, 1.2673765426532608], [1.5487882118581708, 0.922811630948959], [1.7620903329002533, 0.48595253722929327], [1.819517846922963, -0.011557023884238928], [1.9080030840451412, -0.5093595807587855], [1.934079879207367, -1.0376338692107723]], "left_eyebrow": [[-1.5795447716868272, -1.4393334716087236], [-1.301490242596678, -1.5972590489551968], [-0.9601482842635334, -1.6315397254258228], [-0.6489850617468151, -1.5723542368370278], [-0.30588512884758495, -1.4202885747108402]], "top_lip": [[-0.7814200078850455, 0.8516131437266238], [-0.4418360241179867, 0.6309861286591838], [-0.16348849926682316, 0.5041182744121792], [-0.007613892247449664, 0.5647687418060456], [0.17814645482733563, 0.500895321041022], [0.4277802226671446, 0.6227822473507837], [0.6469422589295131, 0.8070776156204975], [0.5224183707706229, 0.7771918755650856], [0.17990442939342138, 0.6872416596378358], [-0.006148913442378218, 0.7200573573033906], [-0.1924952520391921, 0.7218153318694763], [-0.6574821112481839, 0.8193834375830976]], "right_eye": [[0.5051316208707799, -1.055213787303584], [0.7207777080009771, -1.243611096227498], [1.0002972158961978, -1.2462480580766266], [1.2499309837360069, -1.1243611317668647], [1.0650496239442644, -0.9673145417034343], [0.7855301160490435, -0.9646775798543057]], "nose_tip": [[-0.32258605965735376, 0.10183285292415395], [-0.16700444839899461, 0.13142559721855146], [-0.011422837140635422, 0.16101834151294903], [0.14357278259569517, 0.1284956396084086], [0.2982754065710114, 0.06491521460439918]], "nose_bridge": [[0.007622059757247706, -1.1126413013262932], [0.010259021606376307, -0.8331217934310726], [0.013188979216519198, -0.5225445624363828], [0.01611893682666209, -0.21196733144169302]], "transform": {"angle": 0.009433630033462696, "center": [124.41666666666667, 165.81944444444446], "scale": 32.196677793784716}}]},
"000099": {"landmarks": [{"left_eyebrow": [[-1.565402240592918, -1.5544738667913962], [-1.2908458470425235, -1.6768466779416897], [-0.9856397865729645, -1.677169330122212], [-0.6803369304492487, -1.5859301641618664], [-0.3749695438894283, -1.4336497861076094]], "nose_tip": [[-0.37332401776876495, 0.12290112228714252], [-0.1596152450039691, 0.18371647785468878], [0.054093527760826765, 0.24453183342223506], [0.2371526336064578, 0.18329703002000988], [0.4202117394520889, 0.12206222661778472]], "nose_bridge": [[0.022185517337625252, -1.0678219613788171], [0.022540434736199707, -0.7320952948623021], [0.053415958181730075, -0.3964008935638392], [0.05377087558030453, -0.0606742270473241]], "left_eye": [[-1.1986064593225594, -1.0360107466097723], [-0.9850590126480244, -1.1277984212770056], [-0.7103735582254211, -1.1280888082394755], [-0.49653572458841644, -0.9451910284841056], [-0.7407005729640638, -0.9449329067396879], [-0.9848654213397111, -0.9446747849952701]], "bottom_lip": [[0.8784725432091587, 0.5488667330043843], [0.6042710670573389, 1.006966210671193], [0.2687702570671893, 1.2209653703984589], [0.024637673909594218, 1.2517440981898325], [-0.25008004573106124, 1.2215138791053466], [-0.5860325687739418, 1.0082245541752295], [-0.8917548727323366, 0.5202175096044572], [-0.7696079181084086, 0.5811296608261601], [-0.21984982664657535, 0.9467961594646911], [0.024315021729071986, 0.9465380377202733], [0.2684476048866671, 0.9157593099288996], [0.7564223842393873, 0.579516399923549]], "right_eyebrow": [[0.3880456072844696, -1.4344564165589149], [0.6930903416637676, -1.5873820989742164], [0.9676790004322142, -1.6792343040775544], [1.3034056669487293, -1.6795892214761288], [1.5476995761965855, -1.557764919032723]], "top_lip": [[-0.8917548727323366, 0.5202175096044572], [-0.5255398653869178, 0.48930972094087466], [-0.1898131988704028, 0.4889548035423002], [0.02386330867634086, 0.5192495530628906], [0.26799589183393596, 0.48847082527151686], [0.5732019523034951, 0.4881481730909946], [0.8784725432091587, 0.5488667330043843], [0.7564223842393873, 0.579516399923549], [0.26812495270614484, 0.6105532494593405], [0.023992369548549754, 0.6413319772507142], [-0.1896841379981939, 0.6110372277301238], [-0.7696079181084086, 0.5811296608261601]], "chin": [[-1.870027527137537, -1.0047803057656675], [-1.8389906776017457, -0.516482874232425], [-1.807921562847902, 0.002335163347773347], [-1.7158435012181985, 0.49056806444491136], [-1.5322036214476276, 0.9787041698878927], [-1.2570987191903455, 1.3751816615358496], [-0.8904642640102476, 1.741041751482694], [-0.49337373321929856, 2.045828364117574], [-0.03546784686080314, 2.1369062039876585], [0.42221218297132673, 2.0143398015290512], [0.8186574094012314, 1.7087142932248136], [1.154029158519172, 1.372632709309724], [1.458783505936, 0.9450215724718188], [1.6414231639469523, 0.4870188904591668], [1.7019158673339763, -0.03189594277518824], [1.7624408359390524, -0.5202901699625874], [1.7618923272321645, -1.039140472760838]], "right_eye": [[0.5106442749611287, -0.9462557806798291], [0.7240949259815069, -1.12960527348793], [0.9682597743571543, -1.129863395232348], [1.2125214183869581, -1.038559698835898], [0.9989739717124234, -0.9467720241686646], [0.7548413885548284, -0.915993296377291]], "transform": {"scale": 32.76473080732609, "angle": 0.0010571613808329579, "center": [124.23611111111111, 165.98611111111111]}}], "embedding": [[-0.04374580457806587, 0.08453673124313354, 0.08751693367958069, -0.09495733678340912, -0.12653785943984985, -0.04934275895357132, -0.057338837534189224, -0.20056022703647614, 0.2069939523935318, -0.05712209641933441, 0.2147858887910843, -0.08997656404972076, -0.2963872253894806, 0.07710817456245422, -0.03904971480369568, 0.1529250144958496, -0.1977558135986328, -0.10768727213144302, -0.0197262205183506, -0.006441757082939148, 0.07182763516902924, -0.029981885105371475, 0.10659672319889069, 0.12867479026317596, -0.08184479922056198, -0.30448535084724426, -0.0625862181186676, -0.03554244339466095, 0.007202355191111565, -0.08651112020015717, 0.07667265832424164, 0.05643569305539131, -0.1668754518032074, 0.0359906442463398, 0.031226325780153275, 0.06322541832923889, -0.02208755351603031, -0.26091572642326355, 0.2613063454627991, -0.03454937785863876, -0.24840281903743744, -0.12578736245632172, 0.024720069020986557, 0.19685065746307373, 0.20426353812217712, -0.0863923728466034, -0.011475536972284317, -0.14666017889976501, 0.19983474910259247, -0.34097883105278015, 0.07654412090778351, 0.1440286636352539, 0.01824379712343216, 0.027100730687379837, 0.10714103281497955, -0.15336069464683533, 0.048657480627298355, 0.141824409365654, -0.2215128093957901, 0.007936290465295315, 0.10513818264007568, -0.03793744742870331, 0.08470386266708374, -0.2186063528060913, 0.23979216814041138, 0.15315194427967072, -0.17754268646240234, -0.02808407135307789, 0.08968885987997055, -0.13284173607826233, -0.05623911693692207, 0.027783719822764397, -0.1328602135181427, -0.24534019827842712, -0.30816683173179626, -0.04421026259660721, 0.3896943926811218, 0.1919124722480774, -0.22735346853733063, -0.0008494444191455841, -0.03672787919640541, -0.039077140390872955, 0.02623848244547844, 0.19609415531158447, -0.010939935222268105, 0.06463873386383057, -0.0665493756532669, 0.006584133952856064, 0.22494225203990936, -0.059868354350328445, -0.04401319846510887, 0.3918744921684265, -0.051539741456508636, 0.010141102597117424, 0.029953287914395332, 0.057242248207330704, -0.1069929301738739, -0.036622337996959686, -0.19331426918506622, 0.0001990795135498047, -0.061470627784729004, -0.00899459421634674, 0.02218104712665081, 0.10561593621969223, -0.20410162210464478, 0.11914913356304169, 0.0047117238864302635, -0.038478609174489975, -0.01444953866302967, -0.09278187155723572, -0.10327868908643723, -0.06033824384212494, 0.1742095947265625, -0.26439327001571655, 0.1315554678440094, 0.0705498531460762, 0.11714307963848114, 0.17748765647411346, -0.008707914501428604, 0.10125653445720673, 0.02463984116911888, -0.055035319179296494, -0.036561720073223114, 0.0042759571224451065, 0.05945985019207001, -0.002315070480108261, 0.036163460463285446, 0.04086820408701897]], "url": "http://i.imgur.com/pz2Qgq1.jpg"},
"000100": {"embedding": [[-0.05875106155872345, 0.08929232507944107, 0.06291834264993668, -0.09350570291280746, -0.07077532261610031, -0.07189041376113892, -0.06021246314048767, -0.07567497342824936, 0.23847582936286926, -0.11784569919109344, 0.13700895011425018, -0.023115552961826324, -0.23299559950828552, -0.039791807532310486, 0.0550166480243206, 0.1930495798587799, -0.20041722059249878, -0.1753806173801422, -0.13415803015232086, -0.06954856216907501, -0.03222605586051941, 0.0739370808005333, 0.047005195170640945, 0.06005461886525154, -0.16415679454803467, -0.3283943235874176, -0.13537710905075073, -0.015046974644064903, -0.06543445587158203, -0.09941412508487701, 0.012582072988152504, 0.09273208677768707, -0.07128309458494186, 0.022607222199440002, 0.059335220605134964, 0.08457110822200775, -0.12086613476276398, -0.16142335534095764, 0.17061050236225128, 0.036396414041519165, -0.2378275990486145, -0.03692657873034477, 0.04652002453804016, 0.3111671209335327, 0.3737906515598297, -0.035710833966732025, 0.016999147832393646, -0.04671590030193329, 0.20788373053073883, -0.32035037875175476, 0.04707904905080795, 0.16116097569465637, 0.011623984202742577, 0.04777500033378601, 0.10639740526676178, -0.13741111755371094, -0.02818741276860237, 0.2730562090873718, -0.2637724280357361, -0.0035266391932964325, 0.03326696902513504, -0.17399397492408752, -0.07202689349651337, -0.06779347360134125, 0.17769069969654083, 0.18274883925914764, -0.19350196421146393, -0.24288006126880646, 0.19468677043914795, -0.2070181965827942, -0.05196323245763779, 0.07589157670736313, -0.1729990839958191, -0.23091180622577667, -0.32978251576423645, -0.021606409922242165, 0.3672090172767639, 0.08029522001743317, -0.07986165583133698, 0.0830579549074173, -0.03866633027791977, -0.013505019247531891, -0.07069198787212372, 0.15216472744941711, -0.06660498678684235, -0.0633595809340477, -0.14262840151786804, -0.013458725064992905, 0.20969095826148987, -0.02899116836488247, -0.05556167662143707, 0.25433412194252014, -0.02116856910288334, -0.06442978978157043, 0.01263049803674221, 0.04533839970827103, -0.13140207529067993, -0.011585017666220665, -0.16176393628120422, -0.06677724421024323, -0.02076639235019684, -0.08479364216327667, -0.04251670464873314, 0.10561247169971466, -0.1483663022518158, 0.26908817887306213, 0.015361519530415535, 0.051369551569223404, -0.050372105091810226, -0.10587906092405319, -0.09351541101932526, -0.02290855534374714, 0.17672735452651978, -0.2978016138076782, 0.07532938569784164, 0.1427997201681137, 0.13080964982509613, 0.19044896960258484, 0.015271998941898346, 0.07423673570156097, -0.009892323985695839, -0.00756237655878067, -0.17698223888874054, -0.0014693327248096466, -0.005247700028121471, 0.04035688191652298, 0.03199659287929535, 0.09888657927513123]], "url": "http://i.imgur.com/mZ8N7r2.jpg", "landmarks": [{"left_eye": [[-1.1638436876573406, -1.0732014353225336], [-0.904128035212667, -1.165516312922222], [-0.6426894847325544, -1.170685007028539], [-0.43532829449866445, -0.9713640076266984], [-0.6671438178025071, -0.9377208850344038], [-0.9582053954588897, -0.9610266194140638]], "top_lip": [[-0.8109983194964914, 0.6053074860860267], [-0.40546472855105337, 0.5391698395917304], [-0.028979865436738896, 0.47360649244258035], [0.20455855590254288, 0.5271095533436567], [0.4067510520301155, 0.46499200226538484], [0.6402894733693973, 0.5184950631664612], [0.787830309905601, 0.6318184777652239], [0.7012584257573764, 0.6625901036317867], [0.3811481202698701, 0.639858668597273], [0.1783813247971511, 0.6729274918444212], [-0.025534069365860695, 0.6478988594293221], [-0.6942291088268505, 0.6320590165365649]], "transform": {"scale": 34.418189758693465, "center": [121.31944444444444, 166.72222222222223], "angle": 0.019767631211825242}, "nose_bridge": [[0.20202081975061636, -1.0711447767132893], [0.23738684037835, -0.7521830699160756], [0.30122728949206096, -0.46284439029513214], [0.3946907657820419, -0.14503128218821137]], "right_eyebrow": [[0.48504220657494984, -1.4545212319693601], [0.7441835596744771, -1.5758848374001722], [1.0050478108094434, -1.6101022593376129], [1.2380119328035788, -1.5856479262676604], [1.4157500958611986, -1.4148013553517966]], "nose_tip": [[-0.21016382456523708, 0.128467554539975], [0.022800297428898334, 0.1529218876099277], [0.22786429028220284, 0.23604797568727404], [0.43005678640977557, 0.17393042460900218], [0.6032005547062246, 0.11238717287587674]], "chin": [[-2.528559596375005, -1.0171606382695308], [-2.459550453154977, -0.4663834081684746], [-2.390541309934948, 0.08439382193258158], [-2.234385983221549, 0.6334481539981986], [-1.9347099153879712, 1.092484805844713], [-1.491513106434214, 1.461503777472125], [-0.9628930120225249, 1.7416536675707266], [-0.46504454347739865, 1.9352316735211035], [0.0008837005108721513, 1.9841403396610091], [0.37736856362518667, 1.918576992511859], [0.6917358756612292, 1.6508211492351366], [0.9753315618307091, 1.2964934218101893], [1.1712067651616718, 0.9148398645895573], [1.3374589413163647, 0.5047118788829484], [1.444465063118517, 0.03763503620438485], [1.4643250014272988, -0.4277189084387396], [1.3970387562427098, -0.891349955046425]], "left_eyebrow": [[-1.5774174694348277, -1.413745978463968], [-1.2026555043559526, -1.5664555091064891], [-0.8261706412416381, -1.6320188562556392], [-0.4473885807467381, -1.5813872920802945], [-0.09650664939266906, -1.4720839728975563]], "bottom_lip": [[0.787830309905601, 0.6318184777652239], [0.6187066370251765, 0.8967028243162146], [0.38861401175677285, 1.0174921304018802], [0.18584721628405385, 1.0505609536490284], [-0.047116905710081564, 1.0261066205790756], [-0.4276218642404206, 0.8883288729103603], [-0.8109983194964914, 0.6053074860860267], [-0.6942291088268505, 0.6320590165365649], [-0.0517113004712525, 0.7937167979300866], [0.1818271208680293, 0.847219858831163], [0.3845939163407483, 0.8141510355840148], [0.7012584257573764, 0.6625901036317867]], "right_eye": [[0.49480529544243806, -0.9606928588402585], [0.6947005941894253, -1.139005321243025], [0.9270904168384144, -1.1435997160041957], [1.1036799812057416, -1.0308506007505793], [0.931110512254439, -0.9402586211863303], [0.7283437167817199, -0.9071897979391822]]}]},
"000103": {"landmarks": [{"bottom_lip": [[0.6516725514200877, 0.8407541647185149], [0.501461081865455, 1.029764016442153], [0.2865716667142392, 1.0965950984956405], [0.10186808790441043, 1.1318049199031384], [-0.08427091521002153, 1.1052076443232592], [-0.33293472746413183, 1.0491422445542948], [-0.6153729368211367, 0.8701803629628785], [-0.46085519435269473, 0.8665918022013708], [-0.05982677608704709, 0.8263579957277621], [0.12631222702738487, 0.8529552713076413], [0.2801122573435253, 0.8184631620524451], [0.5589619059390225, 0.8429073011754196]], "left_eyebrow": [[-1.4755644576888578, -1.5525394520786648], [-1.1693998213611798, -1.683330767576434], [-0.8610820485765974, -1.7214114375931377], [-0.5197075908414219, -1.6674991742810783], [-0.20780125729533172, -1.55106210182934]], "transform": {"angle": 0.02322008935578934, "scale": 32.35002045289105, "center": [122.55555555555556, 166.31944444444446]}, "nose_bridge": [[0.08037864928008559, -1.1248718322884164], [0.1184593192967895, -0.816554059503834], [0.12635415297210656, -0.47661502607326156], [0.1644348229888105, -0.1682972532886791]], "top_lip": [[-0.6153729368211367, 0.8701803629628785], [-0.3429826975963535, 0.6164925656426574], [-0.036100349116374185, 0.5166047986385767], [0.11913510550436936, 0.5439197863707572], [0.27293513582050977, 0.5094276771155611], [0.5223166602269216, 0.5963966253782139], [0.6516725514200877, 0.8407541647185149], [0.5589619059390225, 0.8429073011754196], [0.2786768330389222, 0.7566560650650683], [0.09325554207679182, 0.7609623379788776], [-0.06126220039165019, 0.7645508987403854], [-0.46085519435269473, 0.8665918022013708]], "left_eye": [[-1.1852314146565357, -1.033638537056676], [-0.9415915874685363, -1.1938979767435305], [-0.6634596510253407, -1.2003573861142445], [-0.47373208714940096, -1.0192423680659233], [-0.6886215023006167, -0.9524112860124356], [-0.9667534387438123, -0.9459518766417216]], "nose_tip": [[-0.19994834956473637, 0.11844722898213515], [-0.044712894943992804, 0.1457622167143158], [0.11124027182905229, 0.20398075294018483], [0.26432258999289115, 0.13858509519130027], [0.38650135966304167, 0.07390714959471727]], "right_eye": [[0.48427791615493937, -1.0414914447872714], [0.696296482696949, -1.2319367208155128], [0.973710706987843, -1.2692996786799149], [1.1325347223700943, -1.0874669484792923], [0.980170116358557, -0.9911677422367193], [0.7329417284090497, -0.985426045018307]], "chin": [[-2.111620157314886, -0.9812036239939411], [-2.098701338573458, -0.42493975110754983], [-2.025410847149257, 0.06808160048686147], [-1.920499095079065, 0.5912887884226596], [-1.725029833984713, 1.0196321944204878], [-1.4382853517138985, 1.384015366974035], [-1.029362099772934, 1.6837205939309987], [-0.5607848873014971, 1.8892797511022943], [-0.09579623559156805, 1.9403211658051476], [0.33541801901546653, 1.8684660986855492], [0.7012366158736163, 1.6435287134021117], [1.001659554982882, 1.2655090099548354], [1.2086541364587804, 0.8587388944707753], [1.3531239087950009, 0.42250065479763], [1.4659724204852311, -0.043923421216902236], [1.547917383681773, -0.5096297850791329], [1.5673375377386365, -1.0048042731304487]], "right_eyebrow": [[0.5029803580595015, -1.5675694813322756], [0.7775237337411893, -1.7285466331714316], [1.0240344095383949, -1.7651918788835324], [1.271262797487902, -1.7709335761019447], [1.4602726492115403, -1.620722106547312]]}], "embedding": [[-0.04168447107076645, 0.03059123270213604, 0.06802194565534592, -0.13736940920352936, -0.025547601282596588, -0.003558917436748743, -0.04666748270392418, -0.15239307284355164, 0.17723938822746277, -0.027105916291475296, 0.12460021674633026, -0.022948790341615677, -0.3086797893047333, -0.008392669260501862, -0.05661775916814804, 0.10165886580944061, -0.16727593541145325, -0.20765478909015656, -0.06340743601322174, 0.06450097262859344, -0.02212771400809288, -0.025299737229943275, 0.0038851387798786163, 0.11474622786045074, -0.04973286762833595, -0.3438494801521301, -0.08069999516010284, -0.05718794837594032, -0.04395267739892006, -0.06000892072916031, 0.08362001180648804, 0.11762164533138275, -0.25825709104537964, 0.006932279095053673, -0.02245348133146763, 0.16295617818832397, -0.025122281163930893, -0.22944606840610504, 0.13562026619911194, 0.07186047732830048, -0.27049174904823303, -0.09799446165561676, 0.022848770022392273, 0.25254523754119873, 0.22019833326339722, -0.057981543242931366, 0.03195654973387718, -0.052686456590890884, 0.1984429508447647, -0.42354846000671387, 0.052441660314798355, 0.17096959054470062, -0.0024194326251745224, 0.09898234903812408, 0.04318948835134506, -0.20946426689624786, 0.1425674557685852, 0.023966170847415924, -0.18009912967681885, 0.03875374794006348, 0.0978914275765419, -0.07537133991718292, 0.08310704678297043, -0.08100399374961853, 0.19364264607429504, 0.12265443801879883, -0.11725619435310364, -0.11554311215877533, 0.14176145195960999, -0.18820346891880035, -0.027160832658410072, 0.07335064560174942, -0.13787312805652618, -0.18570879101753235, -0.3013469874858856, 0.03540338948369026, 0.3813353180885315, 0.15693196654319763, -0.08901870250701904, 0.09309898316860199, -0.14298176765441895, -0.008944966830313206, -0.011120708659291267, 0.15791524946689606, 0.043714456260204315, 0.09492658078670502, -0.13379111886024475, 0.021657798439264297, 0.3146129250526428, -0.009215718135237694, -0.0030949562788009644, 0.33019042015075684, -0.06305357813835144, 0.015039988793432713, 0.04892880842089653, 0.08671113848686218, -0.04519563168287277, 0.04277992621064186, -0.16322599351406097, 0.08769752085208893, -0.016853880137205124, -0.010044805705547333, -0.004559636116027832, 0.0775059312582016, -0.16159957647323608, 0.14069926738739014, 0.01833922043442726, 0.019183604046702385, 0.03138887137174606, -0.13211292028427124, -0.11008762568235397, -0.05101271718740463, 0.17242519557476044, -0.2584332823753357, 0.1974712461233139, 0.10974608361721039, 0.14729833602905273, 0.09611234813928604, 0.050383083522319794, 0.07477932423353195, 0.019378244876861572, -0.11436482518911362, -0.13698333501815796, -0.034890469163656235, 0.022571023553609848, 0.01721196249127388, -0.09397315979003906, 0.05535433813929558]], "url": "http://i.imgur.com/WDMB0hM.jpg"},
"000104": {"landmarks": [{"top_lip": [[-0.8123964222367707, 0.5690798507572348], [-0.5485110692619724, 0.5089460436458911], [-0.22575624405135936, 0.4778518680038519], [0.03876127636120353, 0.5351409216452552], [0.3026466293360019, 0.4750071145339115], [0.6257175382654973, 0.5026243692682457], [0.89023505867806, 0.5599134229096491], [0.802325954972941, 0.5897432636761593], [0.3034368386332076, 0.6217856904748452], [0.039393443798968066, 0.6525637823980021], [-0.2249660347541537, 0.6246304439447856], [-0.7241712348127693, 0.5979614403670982]], "nose_bridge": [[0.0008713007631955911, -1.0499096566573876], [0.002925844935930326, -0.6682853592109599], [-0.02453336793896281, -0.31585873509327794], [-0.02263686562566921, 0.036409847164962914]], "right_eye": [[0.4708788274930657, -0.9937268960320722], [0.6757366663726083, -1.1122560498009069], [0.9105823878781022, -1.113520384676436], [1.1163884779142916, -1.0559152473161506], [0.9112145553158667, -0.9960975239236891], [0.7058825908580008, -0.9656355157194145]], "transform": {"angle": 0.005383630804336768, "center": [124.77777777777777, 165.76388888888889], "scale": 34.064423294891995}, "left_eyebrow": [[-1.5856016542744171, -1.27622111775306], [-1.3225065105968246, -1.4831335008053372], [-0.9705540120574659, -1.5437414334950046], [-0.6182854297992251, -1.5456379358082981], [-0.2948984371508476, -1.4593092506975904]], "bottom_lip": [[0.89023505867806, 0.5599134229096491], [0.5985744091094863, 0.9137624237623012], [0.3059655083842657, 1.091477133485833], [0.012566398361839466, 1.122413267268431], [-0.25179308019128227, 1.0944799288152145], [-0.5462984832297965, 0.9199260562805055], [-0.8123964222367707, 0.5690798507572348], [-0.7241712348127693, 0.5979614403670982], [-0.22370169987862462, 0.8594761654502795], [0.04065777867449713, 0.8874095039034959], [0.30470117350873666, 0.8566314119803391], [0.802325954972941, 0.5897432636761593]], "nose_tip": [[-0.4621823841512646, 0.1855590509975136], [-0.22702057892688843, 0.24300614649835803], [0.008141226297487729, 0.3004532419992024], [0.24267086408409935, 0.24047747674729988], [0.477200501870711, 0.18050171149539734]], "chin": [[-2.054977013566523, -1.2149810176256288], [-1.9932627878607678, -0.6575385127689628], [-1.9021928469668261, -0.10025404977173824], [-1.7527275594153933, 0.3980028991302307], [-1.60326227186396, 0.8962598480321995], [-1.3660459224668493, 1.3353312409794715], [-1.0117227960358737, 1.7150590361126052], [-0.5696486077592201, 2.0356012752910426], [-0.0701273239817222, 2.1209817092451035], [0.4579594656867568, 2.0594255253987894], [0.8967147749151464, 1.7634977456253051], [1.2467707711412115, 1.3506212306773975], [1.537957295131462, 0.9087050842601849], [1.6822072013213374, 0.4382234319519915], [1.796785308604144, -0.0908116088731343], [1.9113634158869504, -0.6198466496982601], [1.9670720509339426, -1.1779213219926905]], "right_eyebrow": [[0.2922158666128871, -1.4624700878864132], [0.6440103232928045, -1.5524337357642668], [0.9959628218321631, -1.6130416684539342], [1.3193498144805407, -1.5267129833432262], [1.5553018290021225, -1.322487311901448]], "left_eye": [[-1.143843549716646, -1.0143903089509965], [-0.9094719537894755, -1.1037217893910858], [-0.7038239056127272, -1.075472367218987], [-0.4683460166694688, -0.9593138413417692], [-0.7031917381749627, -0.9580495064662401], [-0.9086817444922699, -0.9569432134501522]]}], "url": "http://i.imgur.com/WPLxJep.jpg", "embedding": [[-0.1055881604552269, 0.10850807279348373, -0.0008205175399780273, -0.07097482681274414, -0.19420143961906433, 0.1194688230752945, -0.05914941430091858, -0.11056432127952576, 0.11043336987495422, -0.03873998671770096, 0.19665491580963135, -0.028902769088745117, -0.2730339765548706, -0.1018376499414444, 0.09110626578330994, 0.13231495022773743, -0.08863873779773712, -0.15684691071510315, -0.16898755729198456, -0.048566173762083054, -0.05396764725446701, 0.0013848766684532166, 0.041836053133010864, 0.0646122545003891, -0.18863043189048767, -0.3163550794124603, -0.0775289535522461, -0.05090106651186943, 0.07174786925315857, -0.1009257361292839, -0.15819291770458221, 0.06658850610256195, -0.1367415189743042, -0.044586677104234695, 0.007646050304174423, 0.06421536207199097, -0.04186570271849632, -0.08395717293024063, 0.24419468641281128, 0.033190157264471054, -0.17479312419891357, 0.04990043118596077, 0.0674290657043457, 0.27621492743492126, 0.26608824729919434, -0.06481247395277023, 0.06070738285779953, -0.003997126594185829, 0.1600053608417511, -0.29023024439811707, 0.1327129453420639, 0.1861535906791687, 0.12045183777809143, 0.12263108789920807, 0.019795212894678116, -0.09424346685409546, -0.0155181884765625, 0.18875084817409515, -0.22039252519607544, 0.050600532442331314, 0.10305579006671906, -0.09178724884986877, -0.07523789256811142, -0.14167547225952148, 0.21167311072349548, 0.20014746487140656, -0.09772708266973495, -0.2096494883298874, 0.09221085906028748, -0.13143864274024963, -0.10232005268335342, 0.0035303113982081413, -0.1981564313173294, -0.1128821074962616, -0.3904883563518524, 0.07851725816726685, 0.30496400594711304, 0.19865751266479492, -0.19690461456775665, 0.02524743787944317, -0.11349259316921234, -0.04654798284173012, -0.016946539282798767, -0.02203219011425972, -0.0789325088262558, -0.04607314243912697, -0.05377566069364548, 0.053953077644109726, 0.2488114982843399, -0.024222439154982567, 0.024276703596115112, 0.2703873813152313, 0.14361798763275146, -0.002593856304883957, 0.06629298627376556, 0.10538896173238754, -0.02636190876364708, -0.11327305436134338, -0.1267719864845276, 0.09256663918495178, -0.07388866692781448, -0.15664392709732056, 0.080462247133255, 0.06490930914878845, -0.26267868280410767, 0.24961215257644653, 0.045599475502967834, 0.02268294431269169, -0.035725194960832596, -0.04232744872570038, -0.1109992191195488, -0.019460979849100113, 0.17183859646320343, -0.32544848322868347, 0.13742977380752563, 0.17201365530490875, 0.1492641717195511, 0.11206457018852234, 0.06091700494289398, 0.06762412190437317, -0.04179903864860535, 0.0340881384909153, -0.06542330980300903, -0.08239290118217468, 0.08565624803304672, -0.02290276065468788, 0.004162648692727089, 0.19891582429409027]]},
"000106": {"landmarks": [{"left_eyebrow": [[-1.6370338562446145, -1.3905251551006255], [-1.2981646637110134, -1.5795757758821671], [-0.895885037724581, -1.614380276498081], [-0.5236871940462555, -1.5559877312472943], [-0.11993171858863357, -1.435955771909104]], "left_eye": [[-1.1692776075456854, -1.0543124916151654], [-0.9539824130811296, -1.2112151408289347], [-0.6749816152695045, -1.1829043778862551], [-0.48711167406491435, -0.9679043533159372], [-0.7038827180006599, -0.9658381640562718], [-0.9828835158122851, -0.9941489269989513]], "right_eye": [[0.5345137917379339, -1.0086122518166092], [0.7185465243174312, -1.1961870231269613], [0.9659896903497597, -1.2295156742716855], [1.152974121871636, -1.10741752567383], [0.9990231716002459, -1.013039800230178], [0.7825472975587382, -0.9800063189796917]], "nose_tip": [[-0.22786171226306928, 0.23745867517217048], [0.020466963451972905, 0.29703189999990876], [0.2071562250796114, 0.3881627566069436], [0.42304175933264326, 0.29319469137481585], [0.5769927096040335, 0.19881696593116388]], "nose_bridge": [[0.22454570193548812, -1.0366278448650506], [0.25905503265716384, -0.6653155108694391], [0.3245316553696605, -0.2942983467680655], [0.3590409860913362, 0.07701398722754609]], "right_eyebrow": [[0.4997092911220203, -1.4108918778030417], [0.8084967013475144, -1.5067454527178832], [1.055644697485605, -1.5710413958534282], [1.3337599856145161, -1.6356325088832109], [1.4903674649340475, -1.4513046064094757]], "chin": [[-2.2551990164840787, -1.260752589252584], [-2.187656204511917, -0.6729643812154646], [-2.089146100548934, -0.08547134307258333], [-1.9602590443836063, 0.4397919411944185], [-1.6768306981584125, 0.93261208399941], [-1.301090815749232, 1.362612133140046], [-0.8637115192526481, 1.7610545505013857], [-0.3965456103421949, 2.035332630005204], [0.0685541093085928, 2.092839665573277], [0.4383905938330149, 1.9034938748974972], [0.6819965512402504, 1.4675904278721026], [0.894930386550903, 1.062949442731767], [1.1388315138523764, 0.6580132876971932], [1.3830278110480878, 0.2840444246534405], [1.50276460049204, -0.15067834279500233], [1.5298946838577683, -0.5535483085699106], [1.5257623053384373, -0.9870903964414016]], "bottom_lip": [[0.7654529905970995, 0.4757515744831235], [0.5846671268542193, 1.0039665576925043], [0.3392901500815563, 1.2540662527729742], [0.0921421539434657, 1.318362195908519], [-0.15559618198310066, 1.3207235550624223], [-0.5912044591142571, 1.1080848896460076], [-0.9678298512061514, 0.5851829645329092], [-0.8436655133486302, 0.6149695769467783], [-0.12728541904042107, 1.0417227572507974], [0.08978079478956237, 1.0706238599819526], [0.33663362103341504, 0.9753606248555869], [0.64246933231653, 0.5698341300325376]], "top_lip": [[-0.9678298512061514, 0.5851829645329092], [-0.534878103123136, 0.5191160020319368], [-0.10104084535740696, 0.5459509155034268], [0.11602536847257654, 0.5748520182345821], [0.3322060726198463, 0.510851244993275], [0.5796492386521747, 0.477522593848551], [0.7654529905970995, 0.4757515744831235], [0.64246933231653, 0.5698341300325376], [0.33368192209103587, 0.665687704947379], [0.1172060480495282, 0.6987211861978652], [-0.09956499588621738, 0.7007873754575307], [-0.8436655133486302, 0.6149695769467783]], "transform": {"scale": 32.290669040742486, "angle": 0.009531377681404973, "center": [122.43055555555556, 164.40277777777777]}}], "url": "http://i.imgur.com/E13mu9l.jpg", "embedding": [[-0.1327303647994995, 0.1422620564699173, 0.06348934024572372, -0.09565719962120056, -0.053371135145425797, 0.046333301812410355, -0.05770445615053177, -0.08113013207912445, 0.2472112625837326, -0.1677980273962021, 0.21082213521003723, -0.062070611864328384, -0.26301196217536926, 0.021824603900313377, 0.04715525358915329, 0.14033597707748413, -0.19235554337501526, -0.1022321805357933, -0.10123290866613388, -0.012557566165924072, 0.05816565454006195, 0.0345967635512352, -0.04808726906776428, 0.10663490742444992, -0.12692242860794067, -0.38847026228904724, -0.07504066079854965, -0.08985723555088043, -0.030653610825538635, -0.1175483912229538, 0.02390401065349579, -0.02895621955394745, -0.1631164848804474, -0.007167605683207512, -0.009629786014556885, 0.0796981081366539, -0.037153467535972595, -0.11763026565313339, 0.1328955590724945, -0.045276887714862823, -0.1960199773311615, 0.018036123365163803, 0.11514852941036224, 0.21614982187747955, 0.22322610020637512, 0.05974686145782471, -0.012913815677165985, -0.06738155335187912, 0.20048710703849792, -0.3194020390510559, 0.009779050014913082, 0.15031130611896515, -0.006321122869849205, 0.14346376061439514, 0.1716313511133194, -0.23207171261310577, 0.016756270080804825, 0.0824589878320694, -0.2083715796470642, 0.03416139632463455, -0.019077282398939133, 0.0368286594748497, -0.0034010056406259537, -0.04107149317860603, 0.2564430832862854, 0.1301029473543167, -0.14068609476089478, -0.19220690429210663, 0.15793868899345398, -0.1896311342716217, -0.022587738931179047, 0.09471362084150314, -0.1582101732492447, -0.22639840841293335, -0.19910016655921936, 0.05187287926673889, 0.3199511468410492, 0.16179125010967255, -0.11821889877319336, 0.12018870562314987, -0.07639673352241516, -0.09221179783344269, -0.07132571935653687, 0.11714379489421844, 0.04725351184606552, 0.009248405694961548, -0.018505757674574852, 0.06341158598661423, 0.20695814490318298, 0.011987642385065556, 0.07276485115289688, 0.3782096207141876, -0.02588849887251854, -0.06801135092973709, -0.010040966793894768, 0.04735806956887245, -0.18319042026996613, -0.01506432332098484, -0.13552305102348328, -0.0887124091386795, 0.09358320385217667, -0.0059686386957764626, 0.01613546535372734, 0.10764180123806, -0.3003102242946625, 0.2338949292898178, -0.05879276990890503, 0.03637680783867836, 0.017795465886592865, 0.01141891535371542, -0.0602545365691185, 0.036600787192583084, 0.18252800405025482, -0.30745354294776917, 0.21171687543392181, 0.12225400656461716, 0.06284864246845245, 0.12909963726997375, -0.010984896682202816, 0.04620729014277458, 0.07205581665039062, 0.01747116819024086, -0.18580149114131927, -0.07730606943368912, -0.013225194998085499, -0.047231294214725494, -0.051172997802495956, 0.04234035313129425]]},
"000108": {"url": "http://i.imgur.com/HXumWjj.jpg", "embedding": [[-0.11700905114412308, 0.1958523392677307, 0.17601659893989563, -0.15569807589054108, -0.20684228837490082, 0.05713587999343872, -0.04631298780441284, -0.0622028224170208, 0.2352343499660492, -0.11746182292699814, 0.17172221839427948, -0.09444912523031235, -0.3458881080150604, 0.032894402742385864, -0.03645370528101921, 0.24044322967529297, -0.1599634438753128, -0.221742644906044, -0.1095753088593483, -0.06663617491722107, -0.005054261535406113, 0.14690598845481873, 0.009611666202545166, 0.016597136855125427, -0.16617700457572937, -0.3749506175518036, -0.030055712908506393, -0.04412533715367317, -0.0016788300126791, -0.11589373648166656, 0.05814670771360397, 0.11016955971717834, -0.1654866635799408, -0.02076510526239872, 0.08416078984737396, 0.1501842886209488, -0.05795701593160629, -0.20591594278812408, 0.08016568422317505, 0.020431457087397575, -0.2551249861717224, -0.09815862774848938, 0.1294904202222824, 0.3090517520904541, 0.13538670539855957, -0.008197957649827003, 0.05173473432660103, -0.08750314265489578, 0.12218531966209412, -0.38364705443382263, -0.018101967871189117, 0.12413312494754791, -0.016557849943637848, 0.07906228303909302, 0.15158399939537048, -0.27732986211776733, 0.12453552335500717, 0.1179712787270546, -0.16526955366134644, 0.10141128301620483, 0.14188943803310394, -0.11194458603858948, 0.03232361748814583, -0.05400268733501434, 0.2646878659725189, 0.05212193727493286, -0.11803218722343445, -0.16186097264289856, 0.21385161578655243, -0.0576111301779747, -0.014463678933680058, 0.1341252326965332, -0.13674303889274597, -0.11965053528547287, -0.2471224069595337, -0.07757943868637085, 0.5052412748336792, 0.0923646092414856, -0.11326505988836288, -0.005244147032499313, -0.14255431294441223, 0.05351392179727554, -0.05767282843589783, 0.08951569348573685, -0.03356195241212845, -0.08539287000894547, -0.19853202998638153, 0.04517575353384018, 0.3259432911872864, -0.07752120494842529, 0.030430717393755913, 0.2902024984359741, 0.042348358780145645, -0.048947714269161224, -0.03559743985533714, 0.05686591938138008, -0.20194987952709198, 0.016725309193134308, -0.10164417326450348, -0.03222496435046196, 0.006101510487496853, -0.13498403131961823, -0.046251535415649414, 0.1678420901298523, -0.25693413615226746, 0.16859908401966095, 0.03371462970972061, 0.0009187329560518265, -0.006712283939123154, 0.005403043702244759, -0.07121708989143372, -0.009219810366630554, 0.21075010299682617, -0.2658497393131256, 0.17196662724018097, 0.231584832072258, 0.10841879993677139, 0.1392015516757965, 0.05707579851150513, 0.0646425262093544, 0.037505410611629486, -0.0818546861410141, -0.1149243414402008, -0.13371819257736206, -0.05947420001029968, -0.08201996237039566, -0.09918984770774841, 0.112173892557621]], "landmarks": [{"left_eyebrow": [[-1.5506149320703544, -1.412286297161042], [-1.2775626997662841, -1.592820305638475], [-0.9745946367868404, -1.6824523505062396], [-0.6115640181399409, -1.6508048124555428], [-0.3095195324273366, -1.4983394801198044]], "chin": [[-2.0060483273855363, -1.020609766580673], [-1.917224412626256, -0.5058064985481645], [-1.8285159450253305, 0.03925894163478202], [-1.7699542024164885, 0.5539467625089357], [-1.6204904961979774, 1.0387187527077164], [-1.2892228627601297, 1.4636590815557506], [-0.8970845435463413, 1.7980437882691809], [-0.4136979192478195, 2.0117261478559247], [0.04000376869203882, 2.073982199532124], [0.4942826924236717, 1.984927390456134], [0.8887299548045582, 1.7140686541608068], [1.192621595050841, 1.3823392320895393], [1.4362197853129577, 0.9898545714006862], [1.5591156284483876, 0.5061216056270997], [1.65174929943338, 0.022273192695158497], [1.7141207982679343, -0.46169066739513775], [1.8068699164112814, -0.975801252477517]], "top_lip": [[-0.8924666572121449, 0.5875569022516659], [-0.5289742499318257, 0.49815575170061116], [-0.19597490911865412, 0.46916349829207726], [0.01574484877605612, 0.5002338005509994], [0.257957673137914, 0.4708952056674009], [0.5605793946422929, 0.47204967725094993], [0.8324771553628141, 0.5941373902778956], [0.7113130196027078, 0.623937773794914], [0.2574958845044944, 0.5919438942691524], [0.01528306014263649, 0.6212824891527511], [-0.19643669775207373, 0.5902121868938287], [-0.7715334157687482, 0.6182808630355235]], "right_eye": [[0.4753343417920148, -0.9808809274451329], [0.6878622297952094, -1.1616458302392758], [0.9603372263075052, -1.1908689779645196], [1.1715951955687958, -1.0387499871038457], [0.9895603740327489, -0.9183939814522236], [0.717200824678808, -0.9194330058774178]], "transform": {"angle": -0.003814881421398698, "scale": 33.04431414828978, "center": [124.41666666666667, 166.47222222222223]}, "nose_bridge": [[0.0521257203193041, -1.103545876263853], [0.05085580157740011, -0.7706619826090363], [0.049470435677141225, -0.40751591680378185], [0.04820051693523724, -0.07463202314896523]], "bottom_lip": [[0.8324771553628141, 0.5941373902778956], [0.5888789651006973, 0.9866220509667488], [0.285680007804544, 1.136778440135389], [0.04346718344268604, 1.1661170350189878], [-0.19851474660246207, 1.1349312856017106], [-0.5610835766159421, 0.9822350589492623], [-0.8924666572121449, 0.5875569022516659], [-0.7715334157687482, 0.6182808630355235], [-0.19770661649397772, 0.9230960805486453], [0.01401314140073251, 0.9541663828075676], [0.28648813791302835, 0.9249432350823239], [0.7113130196027078, 0.623937773794914]], "left_eye": [[-1.1585920600149209, -1.0476394182971736], [-0.9461796191700812, -1.1981421489408788], [-0.6738200698161403, -1.1971031245156847], [-0.46279299487155945, -0.984459789354135], [-0.7051212663917723, -0.9248590223200984], [-0.9773653685873582, -0.9561602188957306]], "nose_tip": [[-0.28526061251135393, 0.07540891886132017], [-0.13429609323422928, 0.16677267110440833], [0.047046045351688166, 0.22798969835541355], [0.19858780042058738, 0.16804258984631232], [0.3502450026478415, 0.07783330918677323]], "right_eyebrow": [[0.4470347713336103, -1.4954533011609317], [0.7199715564793258, -1.645725137487927], [1.0227087251420595, -1.6748328380548159], [1.2948373801792905, -1.6132694693287457], [1.536357521591019, -1.461035031309717]]}]},
"000109": {"url": "http://i.imgur.com/7qA0Smt.jpg", "landmarks": [{"right_eyebrow": [[0.22733047714991958, -1.4534701345668648], [0.5890200074634439, -1.5411360975311472], [0.9201904114802785, -1.5688447567703243], [1.2507122461761484, -1.5062931757613616], [1.489892891755605, -1.2939564303264632]], "nose_tip": [[-0.3854301362940748, 0.07663015417841833], [-0.23586116164179408, 0.19805809004421226], [-0.02590250371709861, 0.2898316587079358], [0.1552665461001457, 0.20086855710172466], [0.3366517856910448, 0.0818187087461335]], "top_lip": [[-0.7207081460103506, 0.6759870016558152], [-0.5094523494437263, 0.5872400898232588], [-0.23867162869930647, 0.589185797786152], [-0.0284967810009562, 0.6508726197004956], [0.18232663601835847, 0.6222992013666993], [0.45310735676277836, 0.6242449093295924], [0.7234556979598885, 0.6863641107912455], [0.6028925211887138, 0.7155860984460064], [0.21176481344677406, 0.712775631388494], [-0.029145350321920595, 0.7411328599486355], [-0.23953638779392566, 0.709532784783672], [-0.6306640955358654, 0.7067223177261596]], "left_eyebrow": [[-1.5185655934087388, -1.3456621544413232], [-1.3365317844968754, -1.5549722430450543], [-1.0051451907063857, -1.6127676490336116], [-0.6746233560105155, -1.5502160680246488], [-0.34453390086195484, -1.427490993516926]], "transform": {"center": [125.79166666666667, 165.36111111111111], "angle": -0.007185424691913756, "scale": 33.236367935581995}, "left_eye": [[-1.1289512140823823, -1.132244460138151], [-0.9475659744914833, -1.2512943084937422], [-0.6767852537470634, -1.249348600530849], [-0.46747516514333237, -1.0673147916189853], [-0.708385328912027, -1.0389575630588437], [-0.9490793029070669, -1.0406870812480822]], "right_eye": [[0.43534342711172186, -1.0909158451587215], [0.646815413452001, -1.2097495037406578], [0.8877255772206957, -1.2381067323007995], [1.0974680453717365, -1.1162464168876958], [0.9162989955544921, -1.0272833152814846], [0.6756050215594522, -1.029012833470723]], "nose_bridge": [[-0.04582833110470304, -1.1244616282865783], [-0.04842260838856063, -0.7634206672940184], [-0.021146328696693032, -0.3720767697784238], [-0.023740605980550618, -0.01103580878586403]], "bottom_lip": [[0.7234556979598885, 0.6863641107912455], [0.48016744668099115, 1.045675553594567], [0.20852196684195207, 1.1640768326291937], [-0.03238819692674258, 1.1924340611893351], [-0.27286598114812766, 1.160617796250717], [-0.5425657530242736, 1.008238354540924], [-0.7207081460103506, 0.6759870016558152], [-0.6306640955358654, 0.7067223177261596], [-0.27113646295888927, 0.919923822255677], [-0.030658678737504188, 0.9517400871942955], [0.18016473828181048, 0.923166668860499], [0.6028925211887138, 0.7155860984460064]], "chin": [[-1.6999508329996376, -1.2266123060857321], [-1.7036260591517691, -0.7151376113462723], [-1.6471277918051408, -0.20323053705950309], [-1.5906295244585127, 0.3086765372272662], [-1.4438710168637443, 0.821232180835], [-1.2066360792471813, 1.304349647014318], [-0.8784923320615137, 1.6978554422664607], [-0.4899589016034315, 2.0617068703165327], [-0.009219522934316165, 2.1554261469431495], [0.5031199308997627, 2.038754386097761], [0.9567992196506653, 1.7110430184594034], [1.3505212046764625, 1.3528125245243559], [1.6847182655244644, 0.903889410793859], [1.8388272254234959, 0.39349566492267324], [1.902892134848042, -0.1476333970188568], [1.936654107749554, -0.6588919019846617], [1.9405455236753404, -1.2004533434735014]]}], "embedding": [[-0.08560791611671448, 0.11572428047657013, 0.16317661106586456, -0.08893956989049911, -0.16107675433158875, 0.09132057428359985, -0.05118747055530548, 0.00813230499625206, 0.21060964465141296, -0.0711575523018837, 0.14207309484481812, 0.00703473761677742, -0.20363320410251617, -0.06110847741365433, 0.01897037774324417, 0.1418045163154602, -0.15197499096393585, -0.12988516688346863, -0.048576973378658295, -0.13050994277000427, -0.021552905440330505, 0.07804542034864426, -0.06067120283842087, -0.09616154432296753, -0.19678592681884766, -0.34669241309165955, -0.08413402736186981, -0.09002479910850525, 0.17643579840660095, -0.15567094087600708, 0.03233324736356735, -0.0429503433406353, -0.14121434092521667, 0.0003957170993089676, -0.007843568921089172, 0.03957713022828102, -0.10402180254459381, -0.12046463042497635, 0.1497289091348648, 0.012019269168376923, -0.15011391043663025, 0.0420585572719574, -0.06892327219247818, 0.2769242525100708, 0.13433849811553955, -0.003204911947250366, 0.07956057786941528, -0.06217498332262039, 0.1563740372657776, -0.255402535200119, 0.12077422440052032, 0.13290509581565857, 0.0375388041138649, 0.06328676640987396, 0.16480964422225952, -0.14490456879138947, 0.004038159269839525, 0.197315514087677, -0.254843533039093, 0.1460702270269394, 0.06354183703660965, -0.018932290375232697, -0.09132063388824463, -0.05347185581922531, 0.14212603867053986, 0.1006493866443634, -0.11450540274381638, -0.21397791802883148, 0.19034770131111145, -0.09324579685926437, 0.0102930199354887, 0.1057160422205925, -0.07255810499191284, -0.10716128349304199, -0.32107701897621155, 0.06884147971868515, 0.3786199390888214, 0.10902871936559677, -0.21537820994853973, -0.06743080914020538, -0.04512714222073555, 0.03362104296684265, 0.07132191956043243, 0.033847056329250336, -0.11247460544109344, -0.08465445041656494, -0.08471233397722244, 0.031119897961616516, 0.14913949370384216, 0.0029410626739263535, -0.05137266591191292, 0.16445809602737427, 0.06098753586411476, -0.030351635068655014, -0.04962519183754921, 0.10521607846021652, -0.1407546103000641, -0.06441780924797058, -0.024840548634529114, -0.05380511283874512, 0.1694387048482895, -0.09219121187925339, -0.03812260553240776, 0.20016583800315857, -0.2085254192352295, 0.32101520895957947, 0.019074922427535057, -0.013151336461305618, -0.01796722412109375, -0.026434237137436867, -0.06611111015081406, 0.08724786341190338, 0.22828640043735504, -0.31096741557121277, 0.20889848470687866, 0.21623243391513824, -0.00553443469107151, 0.11516767740249634, 0.01496353093534708, -0.024377819150686264, -0.05800628289580345, -0.052802808582782745, -0.1600957214832306, -0.12944519519805908, -0.08424752950668335, -0.07791872322559357, -0.03061002492904663, 0.080292709171772]]},
"000110": {"url": "http://i.imgur.com/HILX8ol.jpg", "embedding": [[-0.14379459619522095, -0.10773003846406937, 0.0631919875741005, -0.09799781441688538, -0.12247371673583984, -0.08975385874509811, 0.06803947687149048, -0.012518402189016342, 0.17435289919376373, -0.08676549047231674, 0.1477689892053604, 0.029545480385422707, -0.2183392494916916, 0.01808621734380722, -0.02635040692985058, 0.16723404824733734, -0.12026189267635345, -0.22816170752048492, -0.10560403764247894, -0.031464267522096634, -0.053015440702438354, -0.021021602675318718, -0.006013542413711548, 0.13273073732852936, -0.08652806282043457, -0.29131394624710083, -0.09927008301019669, -0.06332404911518097, -0.09981906414031982, -0.0169023759663105, 0.04089612513780594, 0.14151915907859802, -0.1406622976064682, -0.02250468172132969, 0.059028711169958115, 0.04320083558559418, -0.0800904631614685, -0.13919341564178467, 0.23488415777683258, 0.06711713969707489, -0.27843889594078064, 0.003384185954928398, 0.0754893347620964, 0.2904585301876068, 0.23743285238742828, 0.00032205134630203247, 0.012385912239551544, -0.03215626999735832, 0.1910557597875595, -0.36856094002723694, 0.028682634234428406, 0.14979535341262817, 0.11788950115442276, 0.033775512129068375, 0.0935778021812439, -0.09754197299480438, 0.07484864443540573, 0.19503989815711975, -0.23106715083122253, 0.04190779849886894, -0.04732535034418106, -0.111678346991539, 0.025880277156829834, -0.14157602190971375, 0.2396838217973709, 0.1649526059627533, -0.16555969417095184, -0.09803397208452225, 0.25454533100128174, -0.17154042422771454, -0.13767032325267792, 0.05747618153691292, -0.1609022319316864, -0.2202543467283249, -0.2924227714538574, 0.03077300637960434, 0.37186798453330994, 0.1574191153049469, -0.08982846140861511, 0.1079285591840744, -0.04673077166080475, 0.007311858236789703, -0.08016809821128845, 0.18402916193008423, -0.10605132579803467, -0.0163995660841465, -0.030135435983538628, -0.06470607221126556, 0.2341661900281906, 0.0629379004240036, -0.06193532049655914, 0.23480843007564545, 0.012616299092769623, -0.013610515743494034, 0.0554836206138134, 0.024882908910512924, -0.004816675558686256, -0.031735144555568695, -0.17033788561820984, 0.01897515170276165, -0.05696096643805504, -0.05841244384646416, 0.022101953625679016, 0.09071779251098633, -0.20501306653022766, 0.12825867533683777, -0.07113438099622726, 0.003842705860733986, -0.0661865696310997, 0.0047216396778821945, -0.037421178072690964, 0.020692015066742897, 0.04488753899931908, -0.2989102005958557, 0.18387730419635773, 0.15629811584949493, 0.09806929528713226, 0.11506102234125137, 0.020348673686385155, -0.028127267956733704, -0.003176456317305565, -0.04324056953191757, -0.16334781050682068, -0.055040694773197174, 0.11919667571783066, -0.03065655753016472, 0.06100575625896454, 0.10980645567178726]], "landmarks": [{"nose_tip": [[-0.5044775585636302, 0.1978177415928301], [-0.2889321618122723, 0.3246485683427725], [-0.04197483760701541, 0.4208562122617132], [0.23836627560938403, 0.33135289763740033], [0.45706665085233145, 0.21004328324773966]], "bottom_lip": [[0.9494038100170504, 0.5265287916554224], [0.6038726080241608, 0.863383802796441], [0.2603132675885145, 1.0451510382252076], [-0.01963347331643633, 1.1036367977070702], [-0.26737954214459064, 1.06946426407303], [-0.6062064148428525, 0.8790208377923923], [-1.004702163957323, 0.5016833360341547], [-0.881420688010419, 0.5652959355648502], [-0.26461893596444974, 0.8523413780758776], [-0.01687286713629546, 0.8865139117099174], [0.2630738737686553, 0.828028152228055], [0.8249392171358003, 0.5559688575520781]], "top_lip": [[-1.004702163957323, 0.5016833360341547], [-0.6014739471054682, 0.5068101760829877], [-0.29129839568096455, 0.5107538991974746], [-0.04394669916425889, 0.5759439879739651], [0.23600004174069186, 0.5174582284921024], [0.5771931483076461, 0.5217963239180381], [0.9494038100170504, 0.5265287916554224], [0.8249392171358003, 0.5559688575520781], [0.23442255249489707, 0.641528449061904], [-0.045524188410053665, 0.7000142085437665], [-0.293270257238208, 0.6658416749097266], [-0.881420688010419, 0.5652959355648502]], "left_eye": [[-1.2963422167437382, -0.9600854787754999], [-1.0466242863583406, -1.0810007208537118], [-0.7678606623877358, -1.046433814908223], [-0.5216920828053763, -0.8881910607043817], [-0.7698325239449793, -0.8913460391959712], [-1.0489905202270327, -0.8948953899990095]], "transform": {"scale": 32.237201678618156, "center": [125.18055555555556, 163.41666666666666], "angle": -0.012713802249325409}, "nose_bridge": [[0.0067894715506262495, -0.974539396837105], [0.0016626315017932115, -0.5713111799852502], [-0.03408739137804151, -0.19949489058729433], [-0.03881985911542585, 0.17271577112211015]], "left_eyebrow": [[-1.819302558739459, -1.3079829146370818], [-1.5063664011348143, -1.5211620775197476], [-1.133761367113961, -1.5474471649248136], [-0.7627338223389027, -1.4496620317600781], [-0.42390694964064074, -1.25921860547944]], "right_eye": [[0.5643167194918357, -0.9054055849461278], [0.8458409496425812, -1.0879615649977916], [1.0939813907821843, -1.0848065865062022], [1.3413330872988898, -1.0196164977297117], [1.123027084367391, -0.9293244384825017], [0.843474715773889, -0.9018562341430895]], "right_eyebrow": [[0.44458459434796976, -1.2481761807588767], [0.7885383070950647, -1.4609609713300935], [1.1933440131927144, -1.579904351851062], [1.5655546749021187, -1.5751718841136777], [1.8419520650040313, -1.354499647313487]], "chin": [[-2.0065910065285073, -1.2172964830784228], [-1.9520489701611319, -0.6271741907489683], [-1.834683078885958, -0.09829826408151714], [-1.7169228152993357, 0.39956010744348364], [-1.5057155139739136, 0.8675840407603801], [-1.2002724302867942, 1.2437384255842716], [-0.8323998640033252, 1.58966399988861], [-0.4327209979545086, 1.8739488362194965], [0.0007360294168992712, 1.941505158864679], [0.4365592906569993, 1.8229561506551593], [0.8441256029347897, 1.486889884137038], [1.2206743600701302, 1.1504292453074683], [1.535582379232018, 0.7821623067125507], [1.7582264775894525, 0.35067714089838636], [1.8575890999999825, -0.14442062444647355], [1.956951722410513, -0.6395183897913335], [2.0256911619900415, -1.1660280825900924]]}]},
"000111": {"embedding": [[-0.07870758324861526, 0.06964943557977676, 0.07977458834648132, -0.14909566938877106, -0.07585060596466064, -0.00029968004673719406, -0.02389673888683319, -0.13918979465961456, 0.2910160422325134, -0.10976390540599823, 0.19254058599472046, -0.031792402267456055, -0.2278815358877182, -0.030382007360458374, -0.13786330819129944, 0.10312231630086899, -0.1254223734140396, -0.23669308423995972, -0.03313766047358513, -0.05853366479277611, 0.05252564698457718, 0.08696704357862473, 0.02633078768849373, 0.042534202337265015, -0.11729438602924347, -0.3476221561431885, -0.08769983053207397, -0.15225261449813843, 0.048573751002550125, -0.06162230297923088, 0.054961007088422775, 0.09517751634120941, -0.24868854880332947, -0.021403685212135315, 0.0395413301885128, 0.07118448615074158, -0.01531149260699749, -0.021691326051950455, 0.20107759535312653, -0.027392154559493065, -0.22402323782444, -0.12460441887378693, 0.14439401030540466, 0.20598377287387848, 0.19026191532611847, 0.03438694775104523, -0.02590111643075943, -0.057916514575481415, 0.045545682311058044, -0.20367926359176636, -0.006649242248386145, 0.17263263463974, 0.15606030821800232, 0.08311854302883148, 0.08481353521347046, -0.2191559076309204, -0.014199068769812584, 0.049237918108701706, -0.16502593457698822, 0.07250811904668808, -0.0314900167286396, -0.08712808042764664, -0.022173065692186356, 0.0013945791870355606, 0.27165624499320984, 0.006398458033800125, -0.11342931538820267, -0.1194627657532692, 0.26908186078071594, -0.17684513330459595, 0.014828220009803772, 0.1524333357810974, -0.12361510097980499, -0.12969379127025604, -0.15686112642288208, -0.10327913612127304, 0.4481716752052307, 0.039055824279785156, -0.10568882524967194, 0.10191402584314346, -0.18847186863422394, -0.05759775638580322, -0.11467288434505463, -0.008678245358169079, -0.06322133541107178, 0.05119340866804123, -0.08303229510784149, 0.009761892259120941, 0.2557292878627777, -0.05737427622079849, 0.027283012866973877, 0.2146151214838028, -0.07808224856853485, 0.022382929921150208, -0.00417536124587059, 0.025386959314346313, -0.08957099914550781, 0.011147961020469666, -0.12309534847736359, -0.06150681525468826, -0.059430837631225586, -0.0720219686627388, 0.002422742545604706, 0.08772444725036621, -0.24162979423999786, 0.08174939453601837, 0.05246178060770035, -0.042358413338661194, -0.025740284472703934, 0.07709021866321564, -0.07382079213857651, -0.10538867861032486, 0.2230389565229416, -0.27091264724731445, 0.23410780727863312, 0.14325636625289917, 0.02353552356362343, 0.17468518018722534, 0.02020157501101494, 0.06719084084033966, 0.02311394363641739, -0.10233169794082642, -0.10636381059885025, -0.09412245452404022, -0.009330335073173046, -0.07875967025756836, 0.0271688774228096, 0.05698458105325699]], "landmarks": [{"chin": [[-1.5021868068498205, -1.1438246165088501], [-1.5420037052019924, -0.6915098392569466], [-1.4912293837692434, -0.23727109698693685], [-1.380060915813213, 0.2182502886284771], [-1.2084983013339028, 0.6750543175892952], [-0.9765415403313114, 1.1331409898955178], [-0.7137463843943774, 1.5616719106128019], [-0.41883019017769685, 1.9002529332178666], [0.0007222271217578249, 2.060216802943898], [0.48515804265340795, 2.010083803183851], [0.9747244315666749, 1.718374217330681], [1.4051793173020655, 1.3649878416088261], [1.8067197731212197, 0.9505659976909882], [2.058557505977576, 0.47254339888635916], [2.1902482674600736, -0.03824155987071875], [2.2326304525030536, -0.6113446301691836], [2.2448155642843934, -1.1850890221403505]], "right_eyebrow": [[0.10467129274414011, -1.4118053004720421], [0.44004570698569473, -1.5557361283805209], [0.8030519077980812, -1.578237341569736], [1.1647754652650637, -1.5403444082356705], [1.494377984452299, -1.412501576789386]], "nose_tip": [[-0.6540485141884402, 0.17324786225004682], [-0.47479003963670435, 0.26768701207118056], [-0.2351374185616877, 0.36340880523771846], [0.00836313254954157, 0.2779481588344142], [0.25186368366077083, 0.19248751243110993]], "left_eye": [[-1.1411045710555403, -1.0757346099131442], [-0.9586394881402939, -1.1322808264002122], [-0.7479012969815134, -1.097594501429657], [-0.5088899975791987, -0.9716756350014787], [-0.7504665836723218, -0.9768062083830955], [-0.9920431697654447, -0.9819367817647123]], "left_eyebrow": [[-1.463652551843053, -1.5357452472374729], [-1.2497077523207618, -1.6520442885751196], [-1.0074898445549367, -1.6771107884551433], [-0.7376401502182798, -1.580747673615903], [-0.49927017248866723, -1.4246317339260843]], "transform": {"angle": -0.021234682947155685, "scale": 33.10832622516727, "center": [128.52777777777777, 164.80555555555554]}, "right_eye": [[0.4272192735316526, -0.9517946631477135], [0.6411640730539436, -1.0680937044853605], [0.8827406591470666, -1.0629631311037435], [1.1230346018947854, -0.997438411198846], [0.9097311240451965, -0.9113364431228396], [0.6681545379520735, -0.9164670165044564]], "bottom_lip": [[1.029291728390995, 0.5715267550610491], [0.6264686292264368, 1.0463427455021674], [0.19922035185455683, 1.248743754915821], [-0.07319462917290859, 1.2731689331231422], [-0.3436856451822677, 1.2070028915455424], [-0.6109700528281163, 0.9898514836597412], [-0.8731238870923481, 0.5311234896808166], [-0.7536182373911907, 0.5940829228949056], [-0.3379137501279488, 0.9352292321907792], [-0.09761980738023003, 1.000753952095677], [0.1741538519745333, 1.0065258471499958], [0.9078621136717316, 0.599158541631881]], "nose_bridge": [[-0.20563662161739094, -1.0256565647977385], [-0.24417087662415862, -0.6337359340691159], [-0.3122608832198646, -0.2726536982748356], [-0.3507951382266323, 0.11926693245378715]], "top_lip": [[-0.8731238870923481, 0.5311234896808166], [-0.6309059793265229, 0.5060569898007931], [-0.35913231997175965, 0.511828884855112], [-0.11883837722404095, 0.5773536047600095], [0.1542179254761266, 0.5227313532910477], [0.5769769511390919, 0.5317098567088772], [1.029291728390995, 0.5715267550610491], [0.9078621136717316, 0.599158541631881], [0.15165263878531818, 0.6435196463376092], [-0.12076234224214726, 0.6679448245449308], [-0.36169760666256806, 0.6326171779016735], [-0.7536182373911907, 0.5940829228949056]]}], "url": "http://i.imgur.com/osMVI8T.jpg"},
"000114": {"landmarks": [{"right_eye": [[0.5032937196669939, -0.9600404574888215], [0.7154893400230198, -1.1451205112271143], [0.9598046026039081, -1.147227490430116], [1.1748973193640613, -0.9963740581196873], [0.9924509896295209, -0.903175600249603], [0.7178596916263967, -0.870265840823615]], "right_eyebrow": [[0.2545011262797269, -1.4771034112702075], [0.6199205305495584, -1.6024215113651543], [0.9558540165982798, -1.6053186077692816], [1.2923142474477516, -1.5471368885281866], [1.5384731168312666, -1.3354680129729113]], "chin": [[-1.9111631051219045, -1.153009892617457], [-1.876146366492915, -0.6341033320334445], [-1.8105902200413142, -0.11546014384980732], [-1.7144946657671025, 0.4029196719334546], [-1.557583668248044, 0.8902333350933551], [-1.2482390040163052, 1.3456907284287685], [-0.9091450491630814, 1.7092665258959736], [-0.4786962432423994, 2.0415127983394425], [-0.019815008702108273, 2.129180435801647], [0.4066832112129454, 2.00333559090595], [0.8010617889031367, 1.6945176714749617], [1.1335714337469802, 1.2946082733768907], [1.435541670768213, 0.8949622476791953], [1.6145641592978757, 0.4047514881151674], [1.7019684243597053, -0.08466915424773483], [1.7891093170211598, -0.6046292044332481], [1.8459741742603784, -1.093786474395775]], "top_lip": [[-0.7040604836171862, 0.6996224609471831], [-0.4299959304148125, 0.6056338858759729], [-0.15566800481206353, 0.5421847186273739], [0.027831814523977906, 0.5711438920477337], [0.24108092448150473, 0.5082214695998851], [0.5161989672853793, 0.5363905258191192], [0.7918437548900042, 0.6256383976835755], [0.6699494959999353, 0.6572312951076873], [0.2421344140830056, 0.6303791008903293], [0.028621931725103546, 0.6627621155155669], [-0.15461451521056266, 0.6643423499178182], [-0.5816394799263668, 0.7291083791682932]], "transform": {"center": [124.25, 165.29166666666666], "angle": 0.008623804131075748, "scale": 32.743359695771396}, "left_eyebrow": [[-1.608139378499171, -1.4304982870247083], [-1.396997247744646, -1.7377359720534453], [-1.061590506496675, -1.8017118841027946], [-0.6945908678245922, -1.7437935372620752], [-0.35734051977399467, -1.5939935945531474]], "bottom_lip": [[0.7918437548900042, 0.6256383976835755], [0.5501622163128681, 0.9331394551126875], [0.3076905605346063, 1.1490222890739665], [0.06363867035409321, 1.1816686760995792], [-0.15013718440418403, 1.1835122829022058], [-0.42630871680955945, 1.0331855953925273], [-0.7040604836171862, 0.6996224609471831], [-0.5816394799263668, 0.7291083791682932], [-0.15224416360718573, 0.9391970203213175], [0.06179506355146671, 0.9678928213413021], [0.2750441735089936, 0.9049703988934534], [0.6699494959999353, 0.6572312951076873]], "nose_tip": [[-0.3728677007752186, 0.14701602373605696], [-0.18910450903880194, 0.20651460497902774], [-0.005077944902010056, 0.29655259404460954], [0.20790779265514153, 0.20309076377414997], [0.3906174947900573, 0.1404317137266766]], "left_eye": [[-1.1776905725784894, -1.0982520145812398], [-0.9652315798220881, -1.2527926604969217], [-0.6898501646178383, -1.1940841964550766], [-0.4742307030569346, -0.9821519484994258], [-0.7182825932374477, -0.9495055614738129], [-0.9934006360413222, -0.9776746176930471]], "nose_bridge": [[-0.016929702918894673, -1.0777207579728871], [-0.014032606514767322, -0.7417872719241656], [-0.010872137710264757, -0.37531437805283324], [0.022827738916848844, -0.009104856581876007]]}], "url": "http://i.imgur.com/T3Q0LXr.jpg", "embedding": [[-0.10480885207653046, 0.09202725440263748, 0.026979316025972366, -0.02375856414437294, -0.15557114779949188, 0.09747181832790375, -0.012600980699062347, -0.10128781199455261, 0.20889979600906372, -0.12800714373588562, 0.17258945107460022, -0.04187195003032684, -0.21952775120735168, -0.023712925612926483, -0.044309455901384354, 0.13414573669433594, -0.0301191546022892, -0.2519995868206024, -0.14551381766796112, -0.12952639162540436, 0.08540590852499008, 0.050339095294475555, -0.05853145569562912, 0.06362444907426834, -0.2568385601043701, -0.267406702041626, -0.14499333500862122, -0.13821518421173096, 0.04047363996505737, -0.12776236236095428, -0.024824809283018112, -0.01109461672604084, -0.14626269042491913, -0.030068974941968918, 0.06381163001060486, 0.12765680253505707, -0.06377799063920975, -0.07658395171165466, 0.24736371636390686, 0.05915793776512146, -0.12480811029672623, 0.08498959243297577, 0.06342774629592896, 0.2782156765460968, 0.08777691423892975, 0.020825644955039024, 0.024667907506227493, -0.12902775406837463, 0.18044240772724152, -0.20794203877449036, 0.14765200018882751, 0.1927456110715866, 0.18631859123706818, 0.20519474148750305, 0.16044218838214874, -0.12906204164028168, 0.07550797611474991, 0.15901663899421692, -0.22443541884422302, 0.08334526419639587, 0.047695670276880264, -0.0002218298614025116, -0.00606920151039958, -0.08851698040962219, 0.19160127639770508, 0.11289437860250473, -0.08926080167293549, -0.10590537637472153, 0.09696219861507416, -0.15602801740169525, -0.062455885112285614, 0.07531071454286575, -0.11677902191877365, -0.1644713282585144, -0.2640894055366516, 0.09948001801967621, 0.4880722463130951, 0.23814453184604645, -0.2474290281534195, 0.005987569689750671, -0.017215702682733536, -0.04645692557096481, 0.07207494229078293, -0.019961055368185043, -0.16147994995117188, 0.031791627407073975, -0.06501654535531998, 0.06396355479955673, 0.2400815337896347, 0.00342426635324955, 0.012393169105052948, 0.24183836579322815, 0.09071429073810577, 0.067571260035038, 0.09131781756877899, 0.007557526230812073, -0.11112518608570099, -0.10286775231361389, -0.08686289191246033, -0.009198546409606934, -0.06347997486591339, -0.052623726427555084, 0.01101292297244072, -0.020487170666456223, -0.15797676146030426, 0.1835460364818573, 0.020430251955986023, -0.07946155965328217, -0.19791719317436218, 0.04639054834842682, -0.2180945724248886, 0.028620116412639618, 0.2031906098127365, -0.2946471571922302, 0.14258140325546265, 0.10284827649593353, 0.007037002593278885, 0.1508408784866333, 0.14235568046569824, 0.06429262459278107, -0.05531102791428566, -0.0446552075445652, -0.0669315978884697, -0.07909317314624786, 0.13945303857326508, -0.021984398365020752, 0.091294065117836, 0.0517289899289608]]},
"000115": {"landmarks": [{"transform": {"center": [126.01388888888889, 166.29166666666666], "scale": 33.03237691088421, "angle": -0.009370866608338442}, "top_lip": [[-0.6137208201602061, 0.833109046325669], [-0.40068209173063135, 0.7140068309632298], [-0.24847104525636093, 0.6246092486483958], [-0.06740641525054207, 0.6868553464637944], [0.11479294744335224, 0.6280134467126222], [0.3561178930604378, 0.7210989102637013], [0.6277148380691661, 0.8144680569867992], [0.5063431573305762, 0.8436053236903668], [0.11309084841123908, 0.8096454430624787], [-0.06882483111063636, 0.8382153434220084], [-0.2501731442884741, 0.8062412449982523], [-0.49263282259363506, 0.8342437790137445]], "chin": [[-1.7153453914697625, -1.1450671914958084], [-1.659340323438779, -0.6601478348854867], [-1.6039026217518326, -0.11468447949187918], [-1.547897553720849, 0.3702348771184428], [-1.4619041694702413, 0.8857099162924263], [-1.1934277393537205, 1.3120710563235949], [-0.8641236272818952, 1.7087275633071581], [-0.4734244669107278, 2.015135438459831], [0.01007647383949984, 2.110490367387061], [0.49499583044982187, 2.054485299356077], [0.9519126530446518, 1.7560205530199327], [1.3488528432002342, 1.3964444415564645], [1.625556085305302, 0.9449175992299929], [1.7514666967961936, 0.4314283422601412], [1.7868449932841757, -0.1131839636174097], [1.8830509717274624, -0.6875009025425657], [1.9184292682154447, -1.2321132084201165]], "nose_bridge": [[-0.049818058585372804, -1.1900086158180567], [-0.05322225664959911, -0.8267446231183436], [-0.05662645471382542, -0.4634806304186305], [-0.06003065277805173, -0.10021663771891735]], "right_eye": [[0.49451056412015926, -1.1243583199384317], [0.6775609763301101, -1.2740162178645325], [0.8894649720716095, -1.2720304356604006], [1.0702459189054094, -1.179512338453359], [0.918034872431139, -1.090114756138525], [0.7061308766896397, -1.092100538342657]], "left_eyebrow": [[-1.43977688205277, -1.4755060362557095], [-1.196466154231553, -1.5943245684461294], [-0.9237344765347489, -1.6220434192896025], [-0.6212981657903401, -1.588934588177771], [-0.34998490395363074, -1.4652934420630306]], "left_eye": [[-1.049077721681603, -1.1690981611030362], [-0.8665946758156897, -1.2582120602458517], [-0.6546906800741904, -1.2562262780417197], [-0.4741934164124092, -1.1334361814430352], [-0.6563927791063036, -1.074594281691863], [-0.8682967748478029, -1.076580063895995]], "bottom_lip": [[0.6277148380691661, 0.8144680569867992], [0.3838367439039108, 0.9938305879605052], [0.14080969925471212, 1.0823771207592823], [-0.0713779796588061, 1.1106633379467934], [-0.22245429344500106, 1.078972922695056], [-0.4032352402788011, 0.9864548254880148], [-0.6137208201602061, 0.833109046325669], [-0.49263282259363506, 0.8342437790137445], [-0.2201848280688502, 0.8367969275619142], [-0.06910851428265523, 0.8684873428136511], [0.11280716523922021, 0.8399174424541216], [0.5063431573305762, 0.8436053236903668]], "nose_tip": [[-0.3647364288986114, 0.1088505263023934], [-0.2139437982844353, 0.17081294094577326], [-0.06315116767025919, 0.23277535558915308], [0.11904819502363513, 0.1739334558379807], [0.2706918751538678, 0.1450798723064322]], "right_eyebrow": [[0.25573876705124343, -1.489891778014296], [0.5593098104837276, -1.5778709444690355], [0.862597170744193, -1.6355781115321326], [1.1650334814886019, -1.6024692804203013], [1.466902425888973, -1.5088164505251844]]}], "url": "http://i.imgur.com/MYOrZl0.jpg", "embedding": [[-0.029437139630317688, 0.18514719605445862, 0.06299241632223129, -0.0851597860455513, -0.1394367516040802, 0.10319213569164276, 0.050466593354940414, -0.10630960762500763, 0.19829906523227692, -0.11134908348321915, 0.20319101214408875, -0.004014374688267708, -0.3380964994430542, -0.05234073847532272, 0.09886844456195831, 0.1437162607908249, -0.1417054533958435, -0.14325760304927826, -0.12503579258918762, -0.05717303976416588, -0.05470805987715721, 0.03620380163192749, -0.0038577504456043243, 0.023162856698036194, -0.043867096304893494, -0.29821521043777466, -0.03439006954431534, -0.10399114340543747, 0.07186788320541382, -0.21322038769721985, -0.02529120445251465, 0.013552599586546421, -0.09552263468503952, -0.005593474954366684, -0.03721436858177185, 0.024787839502096176, -0.10152703523635864, -0.06459728628396988, 0.19930535554885864, -0.0241084061563015, -0.1854727864265442, 0.011951271444559097, 0.01140085980296135, 0.2532363831996918, 0.22862744331359863, -0.04330465570092201, 0.025149092078208923, -0.11307041347026825, 0.13908173143863678, -0.2567599415779114, 0.07822300493717194, 0.1176915392279625, 0.11258495599031448, 0.053060341626405716, 0.014235459268093109, -0.18782702088356018, -0.03981788083910942, 0.13106729090213776, -0.2544935643672943, 0.156277135014534, 0.21114614605903625, -0.11304931342601776, -0.14197781682014465, -0.0118755754083395, 0.17221605777740479, 0.09752929955720901, -0.15123529732227325, -0.21651871502399445, 0.10811447352170944, -0.19537216424942017, -0.06474269926548004, 0.07412654161453247, -0.13087867200374603, -0.1792873591184616, -0.201136514544487, 0.10128848254680634, 0.32197070121765137, 0.10347416996955872, -0.18098260462284088, -0.0812317281961441, -0.04954100027680397, -0.035037241876125336, 0.020828939974308014, 0.08193963021039963, -0.09210814535617828, -0.14393939077854156, -0.11321195960044861, 0.0725192055106163, 0.17736250162124634, -0.04087924584746361, 0.030171092599630356, 0.26095160841941833, 0.02460714429616928, -0.019013497978448868, -0.04625893011689186, 0.10193750262260437, -0.09462625533342361, 0.033547766506671906, -0.13794222474098206, -0.007845118641853333, 0.04298556223511696, -0.17845569550991058, -0.010033637285232544, 0.10914991796016693, -0.1968228965997696, 0.27272048592567444, -0.02818555198609829, 0.015669798478484154, 0.03950624167919159, -0.09413990378379822, -0.10358868539333344, 0.0026195980608463287, 0.26851651072502136, -0.20686104893684387, 0.1924319863319397, 0.20225758850574493, 0.12298371642827988, 0.05425744503736496, 0.045431774109601974, 0.08875706046819687, 0.056498218327760696, -0.032746873795986176, -0.24449755251407623, -0.023879744112491608, 0.046715542674064636, -0.0843280702829361, -0.01652752421796322, 0.0385931171476841]]},
"000116": {"url": "http://i.imgur.com/kbEX9hl.jpg", "landmarks": [{"left_eyebrow": [[-1.6166990176313734, -1.2395422414860087], [-1.375797887440723, -1.509778227317816], [-1.0148967714178143, -1.599456374361248], [-0.6241029397137615, -1.5688341493970441], [-0.2935665747904473, -1.4481046542817257]], "chin": [[-1.8575143232004867, -1.0294349855026352], [-1.8282223798700978, -0.4882335045559608], [-1.7387587943805065, 0.022989436088032937], [-1.6793595738151323, 0.5341694644212586], [-1.5296814338555706, 0.9853494998383547], [-1.2597029218883726, 1.4066368195743069], [-0.9295098554512042, 1.7678812340833614], [-0.5089949573090802, 2.0390612907520693], [-0.028136767764680926, 2.160005347421229], [0.4831719975008493, 2.010413032083204], [0.9044593172368014, 1.7404345201160059], [1.2657466440566243, 1.3801770887546205], [1.5369696130361004, 0.9295978256882793], [1.717999487242926, 0.4788898256896337], [1.7788148140636517, -0.002054188476302003], [1.8697374181193622, -0.5130196552556865], [1.9305956572508562, -1.024028034345839]], "nose_bridge": [[0.006562126722504142, -1.0869031520834391], [0.0061330036148219145, -0.7862595028412693], [0.03576824543135669, -0.485572941288331], [0.03529621001290624, -0.15486492712194397]], "nose_tip": [[-0.38599110972304584, 0.11511358484525398], [-0.17562637987506324, 0.17554270086906554], [0.004673985048702339, 0.23592890458210894], [0.21525327645052605, 0.14603619598483547], [0.42578965554158155, 0.08620785231177899]], "left_eye": [[-1.1660768422542638, -0.9983836374307491], [-0.95549755085244, -1.0882763460280223], [-0.7149826314587041, -1.0879330475418765], [-0.5047037262322579, -0.9673752016696313], [-0.7452186456259939, -0.9677185001557771], [-0.9556692000955129, -0.9680188863311546]], "bottom_lip": [[0.9061758096675303, 0.5378599231473258], [0.5749957600826928, 0.8680959018952622], [0.24407318436246458, 1.017945691097897], [-0.026591924577024906, 1.077688210149417], [-0.29712829658420975, 1.0472376344282859], [-0.627664661507524, 0.9265081393129673], [-0.9879650051796776, 0.5952851774173616], [-0.8677504577935778, 0.6255211915846516], [-0.29691373503036866, 0.8969158098072009], [-0.02633445071241557, 0.8973020206041148], [0.2442877459163057, 0.8676238664768118], [0.815939802584111, 0.567795551139238]], "transform": {"angle": -0.0014273470181179, "scale": 33.26193597839525, "center": [124.83333333333333, 166.15277777777777]}, "right_eye": [[0.5175275935018886, -0.9959805480277286], [0.7281497972144806, -1.115937621549219], [0.9686647166082166, -1.1155943230630732], [1.178986534145431, -1.0251008421150447], [0.9684930673651437, -0.9953368633662053], [0.7279781479714077, -0.9956801618523511]], "top_lip": [[-0.9879650051796776, 0.5952851774173616], [-0.59704243654332, 0.5357143076089146], [-0.26629151006616475, 0.5061219781031479], [0.004244861941020111, 0.536572553824279], [0.24480269364552437, 0.5068514873862077], [0.5755107078119115, 0.5073235228046581], [0.9061758096675303, 0.5378599231473258], [0.815939802584111, 0.567795551139238], [0.2446739567132197, 0.5970445821588588], [0.004116125008715442, 0.6267656485969301], [-0.26642024699846945, 0.596315072875799], [-0.8677504577935778, 0.6255211915846516]], "right_eyebrow": [[0.36789236585309515, -1.4772249483690418], [0.6987720292625551, -1.5970103726474594], [1.0596302329746956, -1.6566241547666747], [1.3902095102087781, -1.5659590245755732], [1.6003167661921514, -1.3251437190064599]]}], "embedding": [[-0.07646231353282928, 0.11297585070133209, -0.013879731297492981, -0.002704523503780365, -0.10827787965536118, 0.07027902454137802, -0.021822936832904816, -0.14603814482688904, 0.11403556168079376, -0.16194729506969452, 0.1813548505306244, -0.0014879461377859116, -0.2549632489681244, -0.03208021819591522, 0.022463779896497726, 0.06637905538082123, -0.1276395469903946, -0.23241272568702698, -0.06417012959718704, -0.09585992991924286, 0.05552198365330696, 0.115445576608181, 0.03823922574520111, 0.09189833700656891, -0.1725640594959259, -0.400941401720047, -0.07555079460144043, -0.138682022690773, 0.0342743918299675, -0.17648403346538544, -0.010467191226780415, 0.01472766138613224, -0.16311484575271606, 0.06765896081924438, -0.021843846887350082, 0.07408644258975983, -0.07222367078065872, -0.06625038385391235, 0.2048652619123459, 0.0976085290312767, -0.1834762841463089, -0.000887654721736908, -0.08544889837503433, 0.3474971652030945, 0.19703906774520874, -0.06477215886116028, 0.024677999317646027, -0.11036095768213272, 0.14946147799491882, -0.2233441174030304, 0.12029119580984116, 0.18939176201820374, 0.10375843942165375, 0.09525962173938751, 0.06835340708494186, -0.11782912909984589, -0.02617977000772953, 0.09898649156093597, -0.1334187388420105, 0.0664549469947815, 0.054174866527318954, -0.017599888145923615, 0.061860352754592896, -0.0910085141658783, 0.14223454892635345, 0.01205524057149887, -0.08402658998966217, -0.11772006750106812, 0.06522047519683838, -0.1949356347322464, -0.11329992115497589, 0.09466341137886047, -0.1737012267112732, -0.2415734827518463, -0.2797257900238037, 0.08927666395902634, 0.36360594630241394, 0.20440810918807983, -0.15616470575332642, -0.021556537598371506, -0.03310117870569229, -0.0036364570260047913, 0.12457524985074997, 0.07984412461519241, -0.06045059487223625, -0.025386735796928406, -0.10237151384353638, 0.13903777301311493, 0.2200789749622345, -0.020611517131328583, -0.13215714693069458, 0.2330179512500763, -0.04162665456533432, 0.09217724204063416, 0.08024078607559204, 0.07843440771102905, -0.08560885488986969, 0.032410796731710434, -0.09813579171895981, 0.03883393108844757, -0.054346926510334015, -0.03888897970318794, -0.029863867908716202, 0.11343026161193848, -0.11574284732341766, 0.2085665911436081, -0.01656780019402504, -0.007961161434650421, -0.05416566878557205, -0.01117166131734848, -0.2025814950466156, -0.026051796972751617, 0.1532573103904724, -0.2771473526954651, 0.16965189576148987, 0.1986902505159378, 0.07107865810394287, 0.1609070599079132, 0.04248137027025223, -0.0010155669879168272, -0.05114681273698807, -0.06059027463197708, -0.23437024652957916, -0.00716325081884861, 0.1325063705444336, 0.04092361032962799, -0.01435345970094204, -0.017004918307065964]]},
"000117": {"landmarks": [{"left_eyebrow": [[-1.4157401893778243, -1.6323839280038355], [-1.2836461688906637, -1.853404631737632], [-1.0275731936113304, -1.8803418375881815], [-0.7420660691906817, -1.7789304378877189], [-0.522293837102268, -1.582974232536398]], "transform": {"center": [127.31944444444444, 165.23611111111111], "scale": 31.311455004617283, "angle": -0.019546976616152737}, "chin": [[-1.3631142493221078, -1.056375792581008], [-1.4037846432718666, -0.6099647343545757], [-1.3486617599253847, -0.1616809686600693], [-1.2290524558920513, 0.25592017624773944], [-1.0781362952493285, 0.7060766494103199], [-0.8952890421745258, 1.1568573583955917], [-0.6792622250222597, 1.544400118339394], [-0.36681789475106186, 1.9018844933191903], [0.07834469182998782, 2.00641707213311], [0.5585595499565744, 1.9519184246093195], [1.0112129664099203, 1.6732778942382758], [1.400628433821797, 1.3614577997897692], [1.6961233314055066, 0.9519717205769477], [1.8651423309062778, 0.47612651320920046], [1.9709233813655802, -0.03289825823600977], [2.044773339392802, -0.5425472655039113], [2.0547611125558634, -1.0534447444171955]], "nose_bridge": [[-0.18041535768975517, -1.097141252005589], [-0.1860334800939772, -0.8097614201168667], [-0.25551378736235975, -0.5236300598735271], [-0.2617561455892731, -0.2043191355527244]], "top_lip": [[-0.6968358935324392, 0.8093607565788568], [-0.53343501643589, 0.6208953810998318], [-0.3399757543753344, 0.528847518739739], [-0.14963767142823547, 0.5964551185400476], [0.04319735480962878, 0.536338348612035], [0.36125980748504877, 0.606442891703109], [0.6768253168697034, 0.8042718045225039], [0.5491009471413824, 0.8017748612317386], [0.0707587964828697, 0.7604802314592881], [-0.12082775810961188, 0.7567348165231401], [-0.31241431270209347, 0.7529894015869921], [-0.5697357596268096, 0.8437887923017023]], "right_eye": [[0.4557095476610848, -0.9569321658234413], [0.681724137976412, -1.080286884792923], [0.9371728774330541, -1.0752929982113923], [1.1594420528122333, -1.0070611625883925], [0.9334274624969061, -0.8837064436189109], [0.677978723040264, -0.8887003302004416]], "nose_tip": [[-0.490891915018057, 0.07869104557715863], [-0.3644160169351186, 0.1450501737320845], [-0.17345369816532838, 0.1807266811003128], [0.019381328072535894, 0.12060991117230029], [0.21221635431040015, 0.060493141244287764]], "right_eyebrow": [[0.24405238126765832, -1.5679925727918058], [0.5358018639152201, -1.7858920974121455], [0.8882923523134857, -1.8428876882267013], [1.2389101332436772, -1.8040900017450165], [1.555099878451023, -1.6381921813577016]], "bottom_lip": [[0.6768253168697034, 0.8042718045225039], [0.41450998336345657, 1.1505199346938562], [0.09207787992919725, 1.3039330386273442], [-0.09950867466328434, 1.3001876236911962], [-0.3224020858651549, 1.2638868805002765], [-0.5114916971668712, 1.1324170958358073], [-0.6968358935324392, 0.8093607565788568], [-0.5697357596268096, 0.8437887923017023], [-0.3161597276382415, 0.9445759561794738], [-0.12519740886845124, 0.9802524635477021], [0.06701338154672169, 0.9520667860517698], [0.5491009471413824, 0.8017748612317386]], "left_eye": [[-1.140220838120237, -1.0200750493900885], [-0.9786926684917616, -1.1127471475728725], [-0.723868164857811, -1.0758221685592617], [-0.5028474611240145, -0.9437281480721011], [-0.7595446722260392, -0.8848598497894714], [-0.983062319250601, -0.8892295005483107]]}], "url": "http://i.imgur.com/FtRvN4S.jpg", "embedding": [[-0.15612059831619263, 0.0484539233148098, 0.030123166739940643, -0.13323535025119781, 0.07283923029899597, -0.037516940385103226, -0.01723378710448742, -0.09740801155567169, 0.2292206734418869, -0.036277804523706436, 0.25648367404937744, -0.1106044203042984, -0.24122348427772522, -0.03861333802342415, -0.04642263054847717, 0.1601552516222, -0.21821074187755585, -0.09721827507019043, -0.04846041649580002, -0.13682883977890015, 0.03226901590824127, 0.061112288385629654, -0.022283125668764114, 0.14881229400634766, -0.12482673674821854, -0.2823021411895752, -0.05703682452440262, -0.18212608993053436, 0.04960431158542633, -0.11708509176969528, 0.08066757023334503, 0.09049620479345322, -0.2413649559020996, 0.018843404948711395, 0.02849152311682701, 0.10792069137096405, 0.015073157846927643, -0.05138511210680008, 0.1121782660484314, -0.049343355000019073, -0.13363108038902283, -0.13519148528575897, 0.06803398579359055, 0.2194450944662094, 0.167220801115036, -0.05509189888834953, -0.0717783123254776, -0.10749942809343338, 0.08952661603689194, -0.18006576597690582, -0.09514237195253372, 0.13563381135463715, 0.11437633633613586, 0.0864795371890068, -0.009208578616380692, -0.16763582825660706, 0.010051282122731209, 0.0910775363445282, -0.20195627212524414, -0.004327207803726196, -0.009789228439331055, -0.10410378873348236, -0.06420259177684784, -0.06539333611726761, 0.22183921933174133, 0.036830730736255646, -0.18779490888118744, -0.11540980637073517, 0.15977607667446136, -0.1425323188304901, 0.06319217383861542, 0.1178450882434845, -0.09157369285821915, -0.1994345635175705, -0.1995660811662674, -0.026339653879404068, 0.32757771015167236, 0.013113662600517273, -0.16475987434387207, 0.14015614986419678, -0.17240352928638458, -0.0358043797314167, -0.045817580074071884, 0.06843224912881851, -0.05778392404317856, 0.06927400827407837, -0.03379686921834946, 0.03816936910152435, 0.16364088654518127, -0.053390637040138245, 0.09696181118488312, 0.2007225751876831, -0.13601058721542358, 0.03655920550227165, -0.00030578114092350006, 0.00019985437393188477, -0.11701960861682892, 0.0004011094570159912, -0.07618018984794617, -0.03349408507347107, -0.08807623386383057, -0.05375097692012787, 0.013204894959926605, 0.016733326017856598, -0.19450953602790833, 0.16101594269275665, 0.12018369138240814, -0.0235952939838171, 0.035405367612838745, 0.04125051945447922, -0.03993525356054306, -0.11056386679410934, 0.21739427745342255, -0.28913623094558716, 0.18121235072612762, 0.12843820452690125, 0.05529554933309555, 0.198171004652977, 0.00654978072270751, 0.1416873037815094, -0.06375142931938171, -0.028124865144491196, -0.14112263917922974, 0.04976098611950874, 0.07165791839361191, -0.07864783704280853, -0.025823291391134262, -0.07012993097305298]]},
"000118": {"landmarks": [{"right_eye": [[0.5261875957281984, -0.9279742420192957], [0.7351449898319748, -1.1788058615873884], [1.0107204787991795, -1.2162112985129558], [1.2286154499804538, -1.09861586867172], [1.0795729679319825, -0.9106783535180986], [0.8039974789647777, -0.873272916592531]], "nose_tip": [[-0.14942752729156325, 0.347948532861114], [0.03627559359268395, 0.40488425255725313], [0.25342576668416666, 0.4917774282810448], [0.4054474410918038, 0.4266489295971993], [0.525277265202414, 0.3008607207682572]], "chin": [[-2.4039329110452314, -1.4098589976030969], [-2.3897817473391934, -0.8265161693716602], [-2.3134812773084756, -0.2139606832023624], [-2.145818843015217, 0.3656581545801168], [-1.8875392425492092, 0.8816380898583335], [-1.4465357135581205, 1.331744728362913], [-0.9471068686913096, 1.6575527542181336], [-0.41846536588663763, 1.9212114737486747], [0.042813243964814396, 1.9407417565192464], [0.43821855704262935, 1.7775481107647366], [0.6741542148148923, 1.3724604225196326], [0.8793876184697113, 0.9681175323643195], [1.0853658202143215, 0.5944768963264507], [1.2606417678414878, 0.22158105837837336], [1.434428119289071, -0.21271928780459207], [1.4854054542668784, -0.6440404416283916], [1.4749782810097976, -1.073871999272608]], "right_eyebrow": [[0.5779097287957973, -1.3285931417256511], [0.8190589731966006, -1.5187650511486475], [1.0916552698046393, -1.6789795045439908], [1.3357837065646088, -1.7463423974972108], [1.5229764236284387, -1.6280021695661835]], "top_lip": [[-0.8481313910948611, 0.6721014301007586], [-0.38759757933320066, 0.6609294587538863], [-0.0191705299238722, 0.6519918816763884], [0.16578779287058348, 0.6782253472550834], [0.3178094672782206, 0.6130968485712379], [0.5319804480105375, 0.5771810078252535], [0.7161939727152017, 0.5727122192865046], [0.5948745524250085, 0.6370959198805586], [0.32227825581696956, 0.7973103732759022], [0.16951178331954092, 0.8317366178423037], [-0.0454039955025673, 0.8369502044708441], [-0.693130524328058, 0.7297819478866892]], "left_eye": [[-1.2268200813252776, -1.008329767370957], [-0.9841812407448911, -1.137097168559065], [-0.6457116473632153, -1.1145876934293275], [-0.42483748382277514, -0.8741832471183155], [-0.6996681747001885, -0.8060755560753039], [-1.0074355139644202, -0.8293298292948331]], "bottom_lip": [[0.7161939727152017, 0.5727122192865046], [0.5394284289084523, 0.8842035489996938], [0.3589388946527456, 1.042183608125663], [0.17621496612766432, 1.1080569048992999], [-0.03870081269444389, 1.1132704915278404], [-0.41010705446293827, 0.999399052135562], [-0.8481313910948611, 0.6721014301007586], [-0.693130524328058, 0.7297819478866892], [-0.0454039955025673, 0.8369502044708441], [0.16951178331954092, 0.8317366178423037], [0.32227825581696956, 0.7973103732759022], [0.5948745524250085, 0.6370959198805586]], "nose_bridge": [[0.21916505455375812, -0.9205262611213808], [0.25880488574870003, -0.5528440098018438], [0.2984447169436419, -0.18516175848230695], [0.36878680225602795, 0.18177569474743852]], "transform": {"scale": 32.56131887505044, "angle": 0.024253985954080595, "center": [121.13888888888889, 163.79166666666666]}, "left_eyebrow": [[-1.639355750468297, -1.5512879663176602], [-1.2739078934181343, -1.683034559864934], [-0.8740337918015703, -1.6620146809147796], [-0.5018827519432845, -1.5174409874050574], [-0.15968916811265113, -1.3414202416880994]]}], "url": "http://i.imgur.com/x15c5ba.jpg", "embedding": [[-0.10754673928022385, 0.09260065853595734, 0.08226761221885681, -0.05688345432281494, -0.17432458698749542, -0.0292145237326622, -0.03902822732925415, -0.14004170894622803, 0.22661630809307098, -0.1575145423412323, 0.1358184665441513, -0.0026691891252994537, -0.1989879012107849, 0.05853847786784172, -0.13466033339500427, 0.2168753743171692, -0.11260195076465607, -0.19373849034309387, -0.08334416151046753, -0.12452375888824463, 0.10049304366111755, 0.06775668263435364, 0.01862536370754242, 0.10590413212776184, -0.23492345213890076, -0.25228822231292725, -0.03470854088664055, -0.014795014634728432, 0.0018287822604179382, -0.12234696745872498, 0.007635998073965311, 0.08786863088607788, -0.1948969066143036, 0.05056598410010338, -0.019598357379436493, 0.15765608847141266, -0.06737099587917328, -0.17464995384216309, 0.13515065610408783, 0.10117132216691971, -0.3024378716945648, -0.07715054601430893, 0.0017803758382797241, 0.2834615707397461, 0.2294592410326004, -0.10288991779088974, 0.06945335865020752, -0.09725216031074524, 0.08365954458713531, -0.3347822427749634, 0.06161808595061302, 0.14508198201656342, 0.01517295092344284, 0.09606699645519257, 0.03089601919054985, -0.1566222757101059, -0.008164448663592339, 0.13283689320087433, -0.14678767323493958, 0.0031480956822633743, 0.12486902624368668, -0.11123336106538773, -0.012328293174505234, -0.10017033666372299, 0.19051019847393036, 0.20748832821846008, -0.15109312534332275, -0.06409159302711487, 0.12022454291582108, -0.19911988079547882, -0.04918438196182251, 0.0338788703083992, -0.11015461385250092, -0.22075633704662323, -0.2743918299674988, 0.03667987883090973, 0.46500352025032043, 0.22690396010875702, -0.11992164701223373, 0.030941765755414963, -0.014555972069501877, 0.09814807772636414, 0.09411530941724777, 0.22580355405807495, -0.015956910327076912, 0.09662742912769318, -0.04205765947699547, 0.14386165142059326, 0.1649787724018097, -0.06318540871143341, -0.07320801913738251, 0.25757452845573425, -0.0020663850009441376, -0.02250783145427704, 0.018861424177885056, 0.09857644140720367, -0.12095960229635239, 0.03196272253990173, -0.05232348293066025, 0.008716393262147903, 0.0043337284587323666, 0.04415891319513321, 0.06513766199350357, 0.06402252614498138, -0.039186760783195496, 0.19569474458694458, -0.020699970424175262, -0.00037619099020957947, -0.0219919104129076, -0.04081067070364952, -0.06278527528047562, -0.06926748156547546, 0.09881868213415146, -0.1690140962600708, 0.148812934756279, 0.1299026757478714, -0.04583699256181717, 0.21856842935085297, 0.09550435841083527, 0.14411035180091858, 0.04956170916557312, -0.04185979813337326, -0.03622623160481453, 0.0150138009339571, 0.056671906262636185, -0.039065826684236526, 0.09071413427591324, 0.0016606021672487259]]},
"000121": {"landmarks": [{"left_eye": [[-1.2566930742781355, -1.0390684863446105], [-1.040731433095406, -1.1928079578439978], [-0.7325653728554001, -1.1923171598145468], [-0.5171436095050665, -1.0070739650499276], [-0.7637746173029614, -0.9458333914254873], [-1.0411240715189667, -0.946275109651993]], "chin": [[-1.9653277734213135, -1.1326471398843492], [-1.9352964442444343, -0.6395323636973947], [-1.843631903019554, -0.14631942790455027], [-1.721150755770673, 0.34694258769123937], [-1.5678039226948464, 0.8094370770659736], [-1.2911415857200725, 1.2413112796284873], [-0.9219803508703516, 1.642516115575836], [-0.4601729787368487, 1.9206017668360176], [0.0019288722143247284, 2.0137877819521957], [0.4951418080071693, 1.9221232407273152], [0.8962975641515727, 1.583778611901595], [1.23586918805092, 1.214519217445984], [1.5138075999022664, 0.845161663384483], [1.6686268270664457, 0.3831579720391996], [1.7618128421826238, -0.07894387891197384], [1.8550479371017468, -0.5718623358871477], [1.8558822937518134, -1.0957446382951577]], "right_eyebrow": [[0.34635939660523585, -1.4063156088794726], [0.6855383820810225, -1.529042155143079], [1.0554358139749196, -1.5900864095557392], [1.4251369266570366, -1.527864239872397], [1.6713752960313706, -1.3425719653048327]], "bottom_lip": [[0.8978681178458155, 0.5976472191335764], [0.5583455737494132, 0.9360900075651869], [0.24993411449468203, 1.0896822396557388], [0.0033521864997322678, 1.1201062072561787], [-0.2123149758653267, 1.0889460426115625], [-0.5202847168935522, 0.9651888204861094], [-0.8586784255222175, 0.5948496703657065], [-0.7046935550081048, 0.6567282814284331], [-0.21187325763882092, 0.8115965883955574], [0.0037939047262380557, 0.8427567530401736], [0.2503758327211878, 0.8123327854397338], [0.7436869281199224, 0.6590350321668522]], "nose_tip": [[-0.39579129772392263, 0.19496998909787525], [-0.21098982118580933, 0.25689767996354695], [0.004579181573359457, 0.3496910566561643], [0.18962605712619818, 0.2575357174018331], [0.40548953870303756, 0.16542945795044695]], "nose_bridge": [[0.006836852508833485, -1.0678728204478625], [0.006247894873492434, -0.6980735481598555], [-0.02510858898290411, -0.35913996169879414], [-0.02569754661824516, 0.010659310589212823]], "top_lip": [[-0.8586784255222175, 0.5948496703657065], [-0.48887915323421055, 0.5954386280010475], [-0.21152969901820529, 0.5958803462275533], [0.004137463346853668, 0.6270405108721695], [0.21995186512074788, 0.565750857444784], [0.5588854515818091, 0.5971073413011805], [0.8978681178458155, 0.5976472191335764], [0.7436869281199224, 0.6590350321668522], [0.2503758327211878, 0.8123327854397338], [0.0037939047262380557, 0.8427567530401736], [-0.21187325763882092, 0.8115965883955574], [-0.7046935550081048, 0.6567282814284331]], "transform": {"center": [124.83333333333333, 164.65277777777777], "scale": 32.449995660465, "angle": -0.001592640065873703}, "left_eyebrow": [[-1.656769074757747, -1.378689190046903], [-1.4099908275510167, -1.5323795817433452], [-1.0709590814840655, -1.5626563099349495], [-0.7012088889990036, -1.5312507462756082], [-0.36242254194677753, -1.4074444443472096]], "right_eye": [[0.530571915508008, -0.9745886457257942], [0.7466807960995728, -1.2207779352971833], [1.0548468563395785, -1.2202871372677322], [1.2703176994928573, -1.0658605485271138], [1.0544051381130728, -0.9429376830517271], [0.7770556838970676, -0.9433794012782328]]}], "url": "http://i.imgur.com/4u2oeCE.jpg", "embedding": [[-0.08935846388339996, 0.06089793145656586, 0.043140918016433716, -0.08350304514169693, -0.13414068520069122, -0.008587384596467018, -0.12791807949543, -0.04446837678551674, 0.24540287256240845, -0.08855798095464706, 0.12953247129917145, -0.025618895888328552, -0.16339178383350372, 0.12528285384178162, -0.05328408256173134, 0.12163399159908295, -0.20388273894786835, -0.20461270213127136, 0.03571787476539612, -0.08858586847782135, 0.04829854518175125, 0.10042154788970947, -0.020716894418001175, 0.1326642483472824, -0.19542749226093292, -0.3157701790332794, -0.012692384421825409, -0.14132115244865417, -0.007010752335190773, -0.07102570682764053, -0.014621998183429241, 0.0630350187420845, -0.19278275966644287, 0.005310572683811188, 0.12200663983821869, 0.22956351935863495, 0.07411325722932816, -0.07684393227100372, 0.0654454156756401, 0.03587396442890167, -0.2860371172428131, -0.048733294010162354, 0.10418186336755753, 0.23407889902591705, 0.20598243176937103, 0.07047569751739502, -0.04492144286632538, -0.05977592244744301, 0.09824727475643158, -0.29881376028060913, 0.0342567041516304, 0.16383448243141174, 0.14049315452575684, 0.019664838910102844, 0.09200286120176315, -0.25848188996315, 0.027756862342357635, 0.05376748740673065, -0.18377473950386047, 0.040877047926187515, 0.058287620544433594, 0.022572331130504608, 0.15415804088115692, -0.035543929785490036, 0.2598819136619568, 0.10532035678625107, -0.12310506403446198, -0.11451002210378647, 0.15473197400569916, -0.2207249402999878, -0.08913327753543854, 0.10787125676870346, -0.10946563631296158, -0.25637659430503845, -0.2350151389837265, -0.018831035122275352, 0.35108914971351624, 0.18894441425800323, -0.13271284103393555, 0.07342460751533508, -0.0078889736905694, 0.009271346032619476, -0.04749974235892296, 0.13920138776302338, -0.035864315927028656, 0.0711367055773735, -0.09577140212059021, 0.007200233638286591, 0.2843979299068451, -0.004500109702348709, 0.019959820434451103, 0.23306068778038025, -0.1020188257098198, 0.020913004875183105, -0.004551606252789497, 0.08840931206941605, -0.16103306412696838, 0.04651555418968201, -0.15434175729751587, -0.06532376259565353, -0.057737696915864944, 0.0399758443236351, 0.011602666229009628, 0.19714303314685822, -0.25291118025779724, 0.03647056967020035, -0.12489122152328491, -0.1226564273238182, -0.09382806718349457, 0.08380551636219025, -0.032753411680459976, -0.0793665200471878, 0.19543109834194183, -0.2310572862625122, 0.17428024113178253, 0.22188526391983032, 0.06910723447799683, 0.1728910207748413, 0.02532033994793892, 0.004552198573946953, 0.09493806958198547, -0.06270422041416168, -0.154696524143219, -0.06593704223632812, -0.051223549991846085, -0.15126067399978638, -0.03424292802810669, 0.043352529406547546]]},
"000122": {"embedding": [[-0.07049579173326492, 0.012646685354411602, 0.0412735715508461, -0.08451251685619354, -0.07121199369430542, -0.011460965499281883, -0.008564086630940437, -0.111981101334095, 0.22082331776618958, -0.1482793688774109, 0.0948423519730568, -0.12987791001796722, -0.32551947236061096, 0.15168042480945587, -0.11928519606590271, 0.1533014476299286, -0.1751372367143631, -0.15241442620754242, -0.07677874714136124, -0.05626680701971054, 0.06422186642885208, 0.16592241823673248, -0.010387875139713287, 0.0421416237950325, -0.10238375514745712, -0.33749058842658997, -0.07414587587118149, -0.07818898558616638, 0.0005788197740912437, -0.01381753385066986, -0.013898874633014202, 0.11370980739593506, -0.21585914492607117, 0.0066451989114284515, 0.01543397456407547, 0.12433236092329025, -0.06742578744888306, -0.13066180050373077, 0.1448913812637329, 0.018228743225336075, -0.1717768907546997, -0.02516152709722519, 0.12459155917167664, 0.170272558927536, 0.1853114813566208, -0.09677084535360336, -0.04153037816286087, -0.10907984524965286, 0.07894330471754074, -0.3263336420059204, -0.09198781847953796, 0.164354145526886, 0.13164472579956055, 0.21332719922065735, 0.03957062214612961, -0.1849423497915268, -0.007023554295301437, 0.16750690340995789, -0.21985845267772675, 0.13808712363243103, -0.014916612766683102, -0.06480208039283752, 0.07326961308717728, -0.04927115887403488, 0.18249116837978363, 0.06310176849365234, -0.14364342391490936, -0.14792485535144806, 0.16462354362010956, -0.18616601824760437, -0.020309418439865112, 0.10184289515018463, -0.1243022009730339, -0.2304677814245224, -0.18092970550060272, -0.016087215393781662, 0.3698402941226959, 0.10795919597148895, -0.0642203688621521, 0.07810600101947784, -0.140895813703537, -0.09915776550769806, -0.08028795570135117, 0.03682622313499451, 0.04762393981218338, -0.0745944157242775, -0.07598725706338882, 0.08921860158443451, 0.24163345992565155, -0.09957330673933029, -0.0026451535522937775, 0.2571594715118408, -0.08165072649717331, 0.06568755954504013, -0.04948337376117706, 0.13807308673858643, -0.19204510748386383, 0.028185252100229263, -0.10098546743392944, -0.0253429114818573, -0.08150187134742737, -0.09078289568424225, 0.020112646743655205, 0.10984303057193756, -0.0792251005768776, 0.15405073761940002, -0.024596337229013443, -0.02707819640636444, 0.013954691588878632, 0.04435933381319046, -0.05937374383211136, -0.04043952003121376, 0.18271242082118988, -0.24763599038124084, 0.23367419838905334, 0.13492289185523987, -0.019134370610117912, 0.17289870977401733, -0.0496063195168972, 0.09508001804351807, 0.008132831193506718, -0.015915632247924805, -0.17281679809093475, -0.06909167021512985, 0.004190440289676189, 0.04629054665565491, -0.07094895839691162, 0.05591878294944763]], "landmarks": [{"chin": [[-1.810147321502973, -1.0076439713751677], [-1.7803265978775673, -0.5174059836271983], [-1.6892325004965747, -0.02706600047268012], [-1.5980874054123082, 0.43263729580404453], [-1.445719934275729, 0.9230792743651111], [-1.2012894093959465, 1.32176418540262], [-0.8955345130573028, 1.689914404968884], [-0.4670798760976626, 1.9663585547148648], [0.02295412083720997, 2.0590845786006327], [0.4826574171139346, 1.9679394835163664], [0.8813933258547177, 1.6928722717587903], [1.249543545420982, 1.387117375420147], [1.4953000105858947, 0.9892484276350259], [1.6492484105239757, 0.5299531129844951], [1.7420254321130182, 0.009282429171829056], [1.8041657668242672, -0.5114392523441113], [1.8356184169544485, -1.0015752446855324]], "right_eyebrow": [[0.4271467838283377, -1.4941081290808431], [0.7338196388259177, -1.6774182733148613], [1.0403904984169492, -1.7994550437932928], [1.3466553717883354, -1.7376716930049634], [1.5607041983066956, -1.4922212140596958]], "transform": {"scale": 32.640559945402025, "center": [125.13888888888889, 165.79166666666666], "angle": -0.001664594359531105}, "bottom_lip": [[0.9139169277536584, 0.5593658549837067], [0.6067850934266101, 1.018406181117866], [0.2694755515512366, 1.20166532764861], [-0.00625463034890456, 1.2012063483191417], [-0.25129712766797796, 1.1701616798151544], [-0.5574090079295413, 1.0164682683934447], [-0.8630109111583623, 0.5564079881938003], [-0.7405661590537369, 0.6178853527624842], [-0.250889146041784, 0.9250681847928067], [-0.00584664872271058, 0.9561128532967943], [0.23929784400291135, 0.9258841480451947], [0.7606314979581426, 0.6203842402229224]], "right_eye": [[0.48750219892498814, -0.9425457698740123], [0.7022139955859136, -1.0953722203400598], [0.9473074906082612, -1.0949642387138656], [1.130974618765199, -1.00274819186084], [0.9470015043886157, -0.9111441174471051], [0.7325446962440615, -0.9115011013700248]], "top_lip": [[-0.8630109111583623, 0.5564079881938003], [-0.5566440423804276, 0.5569179652265428], [-0.2502261758992188, 0.5267912553814917], [-0.0052346762834196104, 0.5884726107632727], [0.23996081414547657, 0.5276072186338797], [0.5463276829234112, 0.5281171956666222], [0.9139169277536584, 0.5593658549837067], [0.7606314979581426, 0.6203842402229224], [0.23960383022255682, 0.742064026778434], [-0.005489664799790848, 0.74165604515224], [-0.2505831598221385, 0.741248063526046], [-0.7405661590537369, 0.6178853527624842]], "left_eye": [[-1.1361912078947909, -0.975885335025341], [-0.9521670958149332, -1.098126096316869], [-0.7070736007925855, -1.0977181146906752], [-0.5235084680421961, -0.9442286940820624], [-0.7380672715932988, -0.8833123042493953], [-0.9524730820345787, -0.9143059750501085]], "left_eyebrow": [[-1.5336011763504438, -1.4973719820903948], [-1.3494240711607635, -1.7115228040153034], [-1.04295520697628, -1.7722862007381481], [-0.7367413313081683, -1.679866163072025], [-0.4612661379243984, -1.5262237493535895]], "nose_bridge": [[-0.03301549177785521, -1.1272328520964352], [-0.03357646651387193, -0.7902292964407073], [-0.034188438953162904, -0.42258905390718565], [-0.034698415985905375, -0.11622218512925114]], "nose_tip": [[-0.3414222686867597, 0.0977246459825606], [-0.21897751658213435, 0.15920201055124453], [-0.0352593907219221, 0.22078137052647692], [0.11802603907359369, 0.15976298528726124], [0.2713114688691095, 0.09874460004804556]]}], "url": "http://i.imgur.com/uy24Die.jpg"},
"000125": {"url": "http://i.imgur.com/3EExHKh.jpg", "landmarks": [{"left_eyebrow": [[-1.5662466092497307, -1.1836389811777361], [-1.3624730342939817, -1.4435823751776655], [-1.0144091841810259, -1.5581310004356008], [-0.666897580860464, -1.5278371037439358], [-0.3197173256153384, -1.4106376938825105]], "left_eye": [[-1.1610188958662861, -1.0951871769892736], [-0.9866556227343721, -1.2393670027880015], [-0.7259390832250916, -1.238372958561693], [-0.5818697067848426, -1.0350411810398588], [-0.7557911824828416, -1.0067353728008113], [-0.9875392176022021, -1.0076189676686411]], "bottom_lip": [[0.8311809455294726, 0.6505440921409631], [0.5120855998064372, 0.7652031667573771], [0.22229010654875786, 0.7930671775625097], [-0.009457928570602604, 0.7921835826946797], [-0.24120596368996303, 0.7912999878268497], [-0.5307805582306848, 0.7612269898521422], [-0.8491027584443691, 0.6731065337391158], [-0.7332287408846889, 0.6735483311730308], [-0.24065371689756931, 0.6464574658772495], [-0.009016131136687614, 0.6763095651349995], [0.22284235334115157, 0.6482246556129094], [0.7153069279697924, 0.6501022947070482]], "transform": {"center": [126.22222222222223, 167.65277777777777], "scale": 34.51999862085673, "angle": -0.0038127209398404766}, "nose_bridge": [[-0.0598843809738879, -1.1778956145368413], [-0.06120977327563287, -0.8302735618578008], [-0.09139322060881913, -0.5117304629271588], [-0.09282906226904285, -0.13513990585819827]], "nose_tip": [[-0.470082315488876, 0.03723527882109836], [-0.296602637224792, 0.12480348814173099], [-0.06507550082238903, 0.1836240917894011], [0.13803537798248758, 0.09749172412899215], [0.3410358074288855, 0.04032786085850328]], "right_eye": [[0.5188230106736408, -1.0018756010277463], [0.7222652375539536, -1.1749134818579152], [0.954013272673314, -1.1740298869900851], [1.1562405566103606, -1.0284142195311339], [0.9822086315538827, -0.9711399069021662], [0.7504605964345223, -0.9720235017699962]], "chin": [[-1.8571465960921973, -0.8660899264734032], [-1.801087226406496, -0.3734044531278048], [-1.7450278567207946, 0.11928102021779363], [-1.6889684870350934, 0.611966493563392], [-1.574861659211073, 1.0759043612360282], [-1.315580961362016, 1.4534889625312974], [-0.969063402267763, 1.7444993987322428], [-0.5354194312867923, 1.9779041742287844], [-0.014207250985188737, 2.0378292714612423], [0.5074467267503298, 1.9818803511340193], [1.0007948962468007, 1.7520099551087975], [1.43631650632191, 1.4929501559766982], [1.756516345629733, 1.088606037461084], [1.9320945617049134, 0.6257726633732354], [1.9919092095788926, 0.13352898746155203], [2.051723857452871, -0.35871468845013144], [2.082680450295409, -0.8800373181102137]], "top_lip": [[-0.8491027584443691, 0.6731065337391158], [-0.5300074127213337, 0.5584474591227019], [-0.2402119194636543, 0.5305834483175693], [-0.03765328745117143, 0.5892936026067606], [0.22328415077506658, 0.5323506380532292], [0.5128587453157883, 0.5624236360279368], [0.8311809455294726, 0.6505440921409631], [0.7153069279697924, 0.6501022947070482], [0.22295280269963033, 0.6192561512229894], [-0.03787418616812892, 0.6472306113866007], [-0.26962222128748936, 0.6463470165187707], [-0.7332287408846889, 0.6735483311730308]], "right_eyebrow": [[0.17296814773026, -1.466697063568212], [0.5789690066230557, -1.5810247901091898], [0.9845280680819364, -1.5794784990904873], [1.3896453321069022, -1.4620581905121046], [1.6201784242829964, -1.1425210473551541]]}], "embedding": [[-0.09210960566997528, 0.1497548669576645, 0.07779642939567566, -0.1678539663553238, -0.07632654905319214, -0.0032595107331871986, -0.042331792414188385, -0.054279446601867676, 0.12296250462532043, -0.018373455852270126, 0.11717735230922699, 0.09789036214351654, -0.2549055814743042, 0.09761547297239304, -0.10168498754501343, 0.013488076627254486, -0.25282368063926697, -0.07451540231704712, -0.15685822069644928, -0.11330071836709976, 0.018888752907514572, 0.1052141934633255, 0.01932184025645256, -0.03393764793872833, -0.1587125062942505, -0.18001750111579895, -0.06296895444393158, -0.1473052203655243, 0.07109740376472473, -0.15945829451084137, 0.044943928718566895, -0.04022257775068283, -0.20755678415298462, -0.034039393067359924, -0.034459058195352554, -0.025946849957108498, -0.09877233952283859, -0.10340791195631027, 0.20606005191802979, 0.08689489215612411, -0.13498538732528687, 0.0639001652598381, 0.03907262906432152, 0.2908070385456085, 0.32077261805534363, 0.011986872181296349, -0.052679531276226044, -0.049047596752643585, 0.1490081548690796, -0.3392629027366638, 0.11743178218603134, 0.13580340147018433, 0.11325369030237198, 0.07880856096744537, 0.1353958249092102, -0.2066754847764969, 0.06534964591264725, 0.08667723834514618, -0.17164702713489532, 0.10183203965425491, 0.04870867729187012, -0.1168898418545723, -0.0066010309383273125, 0.009579737670719624, 0.13161398470401764, 0.03387491777539253, -0.10487379133701324, -0.07636119425296783, 0.19498038291931152, -0.10359399020671844, -0.04520239308476448, 0.08298515528440475, -0.0680600255727768, -0.12652423977851868, -0.22717884182929993, 0.06821420788764954, 0.3624633550643921, 0.16467535495758057, -0.11712966859340668, 0.06944185495376587, -0.15702606737613678, -0.06989380717277527, -0.009301151148974895, 0.015736041590571404, -0.15769366919994354, -0.062287360429763794, -0.0575212687253952, 0.08277789503335953, 0.18461772799491882, -0.005297621246427298, -0.06673616170883179, 0.24526427686214447, -0.006016254425048828, -0.039793625473976135, 0.05202791094779968, 0.04218859225511551, -0.16692383587360382, -0.03799247369170189, -0.11263975501060486, -0.011619910597801208, 0.10807488858699799, -0.16060718894004822, -0.05860874429345131, 0.18802571296691895, -0.22010022401809692, 0.1404045671224594, 0.006329353898763657, -0.07782839238643646, -0.016926342621445656, -0.10257588326931, -0.09440015256404877, 0.036043114960193634, 0.21217548847198486, -0.2737501859664917, 0.25722962617874146, 0.21039961278438568, 0.013625496998429298, 0.08856520056724548, 0.09608624875545502, -0.07041037082672119, 0.031306978315114975, 0.011498969048261642, -0.19756515324115753, -0.1162104606628418, 0.05376766249537468, -0.018735509365797043, 0.03108896315097809, 0.07441212981939316]]},
"000126": {"embedding": [[-0.1183549165725708, 0.15212588012218475, 0.008343316614627838, -0.10384440422058105, -0.18278498947620392, 0.004093244671821594, -0.06642121076583862, -0.0964927226305008, 0.1563851237297058, -0.02237929031252861, 0.12057924270629883, -0.08245760947465897, -0.22181394696235657, 0.055044494569301605, -0.13038069009780884, 0.1674639880657196, -0.18891851603984833, -0.15954969823360443, -0.05867334455251694, -0.11528056859970093, 0.046974919736385345, -0.04096244275569916, 0.015835504978895187, 0.15840460360050201, -0.16911160945892334, -0.2948203682899475, -0.06000608205795288, -0.11650122702121735, -0.014769693836569786, -0.24015216529369354, 0.05238153040409088, 0.0823167935013771, -0.23285384476184845, -0.01807960495352745, -0.03399059548974037, 0.0791175439953804, -0.031707290560007095, -0.12339325249195099, 0.12990586459636688, -0.00798024982213974, -0.15792478621006012, -0.06487113237380981, 0.1338229477405548, 0.3182545602321625, 0.29163774847984314, 0.02482181414961815, 0.044246427714824677, -0.0523420125246048, 0.11189816147089005, -0.28094282746315, -0.005365393590182066, 0.14729583263397217, 0.02919635735452175, 0.09037753194570541, 0.02490050718188286, -0.10316039621829987, 0.05139809101819992, 0.04069886356592178, -0.21078713238239288, 0.11612728238105774, 0.0872960165143013, -0.08873341232538223, -0.034272368997335434, -0.08036620914936066, 0.34297725558280945, 0.13149839639663696, -0.1358574777841568, -0.16285072267055511, 0.23755598068237305, -0.25182679295539856, -0.09600438177585602, 0.04634116590023041, -0.10396063327789307, -0.17740561068058014, -0.3128061890602112, -0.03464054316282272, 0.310547798871994, 0.18561914563179016, -0.11749870330095291, 0.10392914712429047, -0.09871678799390793, -0.029547326266765594, -0.07410896569490433, 0.2109343707561493, -0.02220059372484684, 0.0625942274928093, -0.07674847543239594, 0.10754726827144623, 0.2634797692298889, -0.04366043210029602, -0.013757674023509026, 0.3145025372505188, 7.212720811367035e-05, -0.07509461790323257, 0.005710193887352943, 0.11342881619930267, -0.17646314203739166, -0.010950995609164238, -0.11604097485542297, -0.0228751078248024, 0.016971495002508163, 0.009106104262173176, 0.013764554634690285, 0.15409119427204132, -0.13045677542686462, 0.15979918837547302, -0.09665725380182266, 0.016412576660513878, -0.11175898462533951, -0.06744846701622009, -0.08482799679040909, -0.06772933900356293, 0.19346697628498077, -0.24965916574001312, 0.15440680086612701, 0.16577008366584778, 0.062620609998703, 0.05395807698369026, 0.03692776337265968, 0.07318102568387985, 0.09364572167396545, -0.03371695801615715, -0.12483461946249008, -0.016190599650144577, 0.001443249173462391, -0.13210228085517883, -0.016584008932113647, 0.08021773397922516]], "landmarks": [{"nose_bridge": [[-0.14923721369291693, -0.9548902556030318], [-0.187341580584371, -0.624041613141075], [-0.2563126591751449, -0.2637737900182253], [-0.32455997224670535, 0.06635108692451804]], "transform": {"scale": 33.165698268944475, "angle": -0.0240064946322146, "center": [127.70833333333333, 164.54166666666666]}, "right_eyebrow": [[0.13218201919702843, -1.3703776124516003], [0.4673732547742657, -1.5131309226407845], [0.8018407248322895, -1.6257412866498624], [1.1650036100319932, -1.677341992779514], [1.5252714331548427, -1.6083709141887401]], "top_lip": [[-0.7875606477365024, 0.5076387968379124], [-0.5765600244757577, 0.5127051554724064], [-0.3361402205541202, 0.5486382258062201], [-0.1560063089926953, 0.5831237651016071], [0.08513726044815571, 0.5889138892553145], [0.4769955607895386, 0.598322841005089], [0.8989968073110278, 0.608455558274077], [0.8372633839123882, 0.6672939195958629], [0.08151843285208858, 0.7396286201558464], [-0.15962513658876243, 0.733838496002139], [-0.3699019943302937, 0.6986291911875386], [-0.6993031057538235, 0.6002389319358719]], "left_eyebrow": [[-1.5220611931127552, -1.5608994469088706], [-1.278746327114264, -1.6455381612954822], [-1.00818357701252, -1.6088813254424552], [-0.7089254117690964, -1.5112148317100018], [-0.44053395822499275, -1.3841291573166554]], "bottom_lip": [[0.8989968073110278, 0.608455558274077], [0.4962820241814435, 1.0511907992258982], [0.10008113072478012, 1.2226395245567618], [-0.14106243871607088, 1.2168494004030546], [-0.3807584771184951, 1.1507733838891343], [-0.6168356879248521, 0.9339826364746823], [-0.7875606477365024, 0.5076387968379124], [-0.6993031057538235, 0.6002389319358719], [-0.37496835296478764, 0.9096298144482833], [-0.1352723145623635, 0.9757058309622034], [0.10587125487848753, 0.9814959551159108], [0.8372633839123882, 0.6672939195958629]], "left_eye": [[-1.202069033439, -1.070650887315821], [-0.988897113620615, -1.156013367221646], [-0.7477535441797639, -1.1502232430679387], [-0.5410955140342998, -0.9642992073528063], [-0.7822390834751508, -0.9700893315065137], [-1.023382652916002, -0.975879455660221]], "chin": [[-1.5652319186387034, -1.0190501811861692], [-1.5753646359076914, -0.5970489346646799], [-1.52593522633568, -0.1434572109246573], [-1.3860769782233495, 0.31230580937300556], [-1.1844853067123793, 0.7092304683488825], [-0.9520269235020894, 1.0767359466638664], [-0.7195685402917994, 1.4442414249788504], [-0.4576909764206166, 1.8426136149931542], [-0.03858479197598104, 1.9733181169825675], [0.44514987794414784, 1.9246124729297698], [0.9346746720179842, 1.6347632594361208], [1.3947802854309277, 1.314047334243152], [1.8261904837021914, 0.932321751170757], [2.109781013149777, 0.4264055557818694], [2.2433805772160444, -0.11327241338319176], [2.317418014441312, -0.6845408597667861], [2.3605887399672603, -1.2263901254894876]], "right_eye": [[0.5139076022694233, -0.9389674141803364], [0.7285270531262351, -1.0846157864463744], [1.000537334266406, -1.1082448429535598], [1.208642895450297, -0.9826066995986404], [0.9954709756319119, -0.8972442196928151], [0.7543274061910609, -0.9030343438465226]], "nose_tip": [[-0.5090364769234107, 0.21272322470976937], [-0.3906359887606255, 0.3060471253269422], [-0.21122584271841408, 0.37067561080243555], [-0.028920634599348967, 0.31473231155750336], [0.1835275196998225, 0.25951277783178456]]}], "url": "http://i.imgur.com/SViKMnc.jpg"},
"000129": {"embedding": [[-0.10075654834508896, 0.09012744575738907, 0.040517162531614304, -0.07649515569210052, -0.14584794640541077, 0.1445818394422531, 0.020578576251864433, 0.04788147658109665, 0.24968726933002472, -0.0674358382821083, 0.1592080146074295, 0.10050944238901138, -0.2538948059082031, 0.07249902188777924, -0.08937305957078934, 0.0918549969792366, -0.25304606556892395, -0.036404818296432495, -0.06960518658161163, -0.06611514091491699, 0.03107931837439537, 0.13116374611854553, 0.02968442812561989, -0.012767445296049118, -0.15988430380821228, -0.2681616246700287, -0.047853514552116394, -0.11365582048892975, 0.12019911408424377, -0.17613929510116577, 0.04144725203514099, 0.029277874156832695, -0.14857028424739838, -0.0064596571028232574, -0.0473189502954483, -0.003514748066663742, -0.07881268858909607, -0.09983732551336288, 0.1760973334312439, 0.04444647952914238, -0.13333754241466522, 0.07131445407867432, -0.021660342812538147, 0.33075350522994995, 0.14355675876140594, 0.01922472193837166, -0.0034932373091578484, -0.06923449039459229, 0.11165197938680649, -0.3251150846481323, 0.0890553891658783, 0.1737646907567978, 0.03654669597744942, 0.025950804352760315, 0.05568283423781395, -0.18962590396404266, 0.015834050253033638, 0.16016040742397308, -0.17014183104038239, 0.11877092719078064, 0.08942493796348572, 0.04643940180540085, -0.006124299950897694, -0.029354380443692207, 0.1023499071598053, 0.050237346440553665, -0.1282428503036499, -0.11546092480421066, 0.08123049885034561, -0.11600622534751892, 0.02274838089942932, 0.08258561044931412, -0.138087660074234, -0.22951728105545044, -0.16982121765613556, 0.10727765411138535, 0.3271414041519165, 0.1707347184419632, -0.07455918192863464, 0.007763246074318886, -0.058554794639348984, 0.0034125186502933502, 0.012891263701021671, 0.07808217406272888, -0.14840102195739746, -0.07286351919174194, -0.07428154349327087, 0.1195601299405098, 0.11547485738992691, 0.013769085519015789, -0.014911597594618797, 0.25963571667671204, 0.06087696552276611, -0.11201067268848419, -0.01754819042980671, 0.07911581546068192, -0.14228147268295288, -0.0051424261182546616, -0.09588150680065155, 0.0021747201681137085, 0.12076966464519501, -0.11239999532699585, -0.031997717916965485, 0.16617105901241302, -0.21002574265003204, 0.22073635458946228, -0.05778425931930542, -0.06073319911956787, 0.05369007959961891, -0.08786959946155548, -0.09388858079910278, 0.05427632853388786, 0.22910842299461365, -0.2087405025959015, 0.1759718805551529, 0.193365216255188, 0.035870179533958435, 0.1438330113887787, 0.06628815829753876, 0.03885829448699951, -0.024683883413672447, 0.03417063504457474, -0.2047780454158783, -0.06828291714191437, 0.04294072836637497, -0.1052771806716919, 0.004502809606492519, -0.017544899135828018]], "url": "http://i.imgur.com/8md74Q1.jpg", "landmarks": [{"left_eyebrow": [[-1.546355486639007, -1.2190203724995199], [-1.3646834237277312, -1.5159741696782905], [-1.0059713657634328, -1.5725856883990927], [-0.6778811010886621, -1.5399051982836747], [-0.32097040284701756, -1.3875682431457446]], "nose_bridge": [[-0.0548957360610111, -1.0867543894184297], [-0.08783356327966553, -0.7288143427638402], [-0.09092160851850112, -0.37061695900601427], [-0.12411677284039184, 0.017172869628394188]], "chin": [[-1.6966337449510465, -1.1009079300964262], [-1.7007511386028273, -0.623311418419325], [-1.6451689682949706, -0.1452002325357512], [-1.619951254173405, 0.3923531802042239], [-1.475077075029328, 0.9010861593773255], [-1.210289093759503, 1.3511489230037343], [-0.855437092343749, 1.7422841339802146], [-0.4704779718449399, 2.1038269000801124], [0.006346528522452415, 2.19749363967135], [0.5145648334890813, 2.1123190244869106], [0.9949920533017818, 1.7880888163606843], [1.4162343833613174, 1.4036443700683476], [1.71859225970805, 0.9584710114034284], [1.8719585632589248, 0.4821611852425086], [1.9064404130969972, -0.054877553290993905], [1.940407588728597, -0.5322167278648587], [1.974632101463433, -1.0394056844185426]], "right_eye": [[0.4824003395757278, -1.0821223215601763], [0.6627857169708222, -1.2298272088398525], [0.9015839728093727, -1.2277685120139623], [1.0498035342955216, -1.1070826985785056], [0.900039950189955, -1.0486698201350495], [0.6910914763312233, -1.0504711798577036]], "transform": {"scale": 33.49983732916097, "center": [126.15277777777777, 166.38888888888889], "angle": -0.008620857879306684}, "bottom_lip": [[0.8864010837184311, 0.5333686247953484], [0.5547080995983521, 0.9185850823973939], [0.19522403032434477, 1.0647459470576526], [-0.04383156261744215, 1.0925370322115808], [-0.2823724813527565, 1.0606285534058717], [-0.5497338336549443, 0.9090636095776508], [-0.8448862711110607, 0.518443072807643], [-0.726001817398258, 0.579171985180226], [-0.281085795836575, 0.9113796435067775], [-0.042544877101260654, 0.9432881223124866], [0.19651071584052626, 0.9154970371585582], [0.7664872815926832, 0.5920388403420409]], "top_lip": [[-0.8448862711110607, 0.518443072807643], [-0.5466457884161088, 0.5508662258198248], [-0.2782550877009757, 0.5830320417287704], [-0.039971506068897655, 0.6447903025142984], [0.1692343048930704, 0.6167418802571337], [0.49809658087755004, 0.5598730244330953], [0.8864010837184311, 0.5333686247953484], [0.7664872815926832, 0.5920388403420409], [0.19856941266641667, 0.6766987813200076], [-0.04048618027537026, 0.7044898664739361], [-0.2790270990106846, 0.6725813876682268], [-0.726001817398258, 0.579171985180226]], "left_eye": [[-1.069530986271615, -1.1253536329082827], [-0.9189953908563393, -1.2733158572911953], [-0.6804544721210251, -1.2414073784854862], [-0.5026424657582934, -1.0906144459669742], [-0.7118482767202615, -1.0625660237098096], [-0.9207967505789934, -1.0643673834324636]], "nose_tip": [[-0.4236439410515253, 0.1339986265153065], [-0.2751670424621401, 0.22483465797094446], [-0.09684036189293602, 0.3159280265298187], [0.08303034129568583, 0.22792270320978006], [0.2629010444843077, 0.1399173798897414]], "right_eyebrow": [[0.1867332279131388, -1.4130432943705464], [0.5758097420637286, -1.52909703994775], [0.9345218000280273, -1.5857085586685518], [1.3217969544559631, -1.4928138303870235], [1.5582791763653872, -1.2221070957427635]]}]},
"000131": {"landmarks": [{"nose_bridge": [[-0.26385392524791984, -1.0461942926773315], [-0.32120292315373034, -0.7182672534758167], [-0.37835180024802795, -0.3605650508580757], [-0.43550067734232556, -0.002862848240334705]], "chin": [[-1.3945096518184663, -0.9194890481749358], [-1.4512582872897382, -0.5022365187247423], [-1.4486567167400701, -0.11515939431380076], [-1.3565295351302107, 0.3010925310788282], [-1.1750768632716724, 0.7167440940369184], [-0.9640491488084205, 1.1024203727672695], [-0.6936712283242292, 1.4579212464583686], [-0.42329330784003794, 1.8134221201494674], [-0.005240295143792734, 1.9892714092856443], [0.5009374829320539, 1.9858693554899247], [1.0061146569503356, 1.833591484613074], [1.4807161843063397, 1.5624130808828312], [1.8653918589791263, 1.202509549338448], [2.1599415601571827, 0.7241057265636985], [2.3048149610080557, 0.12760185418160874], [2.3307878290055366, -0.43832637153820325], [2.297210370170565, -1.0038543556349893]], "top_lip": [[-0.7294500160858429, 0.5648664647830935], [-0.5807743198162244, 0.5340906973093026], [-0.3723481759026406, 0.5326898516287122], [-0.1932969537822572, 0.5910394535920873], [0.04470423273604003, 0.5596633236837578], [0.46155652056320773, 0.556861632322577], [0.9679344194505671, 0.5832347419430838], [0.849033886597175, 0.6138103886053617], [0.04570483679360459, 0.7085391407648891], [-0.16252118630846638, 0.7397151498617057], [-0.37134757184507605, 0.6815656687098435], [-0.609949120797912, 0.6236163083694943]], "nose_tip": [[-0.6131510537821186, 0.14721369370987408], [-0.46347475345493555, 0.2653137433172146], [-0.28442353133455217, 0.32366334528058965], [-0.04682258643928079, 0.23273688853980756], [0.19097847926750353, 0.17158559521525174]], "transform": {"center": [128.625, 166.19444444444446], "angle": 0.006720963894088892, "scale": 33.58427963697551}, "left_eyebrow": [[-1.3983119472372114, -1.4852171530832348], [-1.2206615707974187, -1.6352936950334436], [-0.9824602634676084, -1.6368946615255469], [-0.7436585937032596, -1.5491701377689715], [-0.5342318457321111, -1.4016951663684305]], "bottom_lip": [[0.9679344194505671, 0.5832347419430838], [0.5237084179453281, 0.9435385151104927], [0.1080568549872379, 1.1249911869690312], [-0.12994433153105933, 1.1563673168773605], [-0.33877071706766904, 1.0982178357254984], [-0.5485977066618433, 0.8911925374925049], [-0.7294500160858429, 0.5648664647830935], [-0.609949120797912, 0.6236163083694943], [-0.3405718043712852, 0.830241364979462], [-0.1615205822509018, 0.8885909669428371], [0.07668072507890833, 0.8869900004507338], [0.849033886597175, 0.6138103886053617]], "left_eye": [[-1.1271335435069687, -1.010615625727231], [-0.9492830462556627, -1.130917004261213], [-0.7110817389258526, -1.1325179707533164], [-0.5016549909547041, -0.9850429993527756], [-0.7396561774730014, -0.953666869444446], [-0.9776573639912985, -0.9222907395361165]], "right_eyebrow": [[0.030895896741649127, -1.4948229520358545], [0.3869971328672868, -1.6758753822713672], [0.7736740156552026, -1.7380272796534875], [1.190726424293883, -1.711053807598442], [1.5490289893461628, -1.5645794402554656]], "right_eye": [[0.3618247481158575, -0.99084650288665], [0.6286004939928165, -1.171298570687624], [0.8668018013226265, -1.1728995371797273], [1.1355787553147145, -1.0555999708184383], [0.8979778104194432, -0.9646735140776562], [0.6300013396734069, -0.96287242677404]]}], "embedding": [[-0.07969161868095398, 0.07456126809120178, 0.01492840051651001, -0.07560904324054718, -0.0870971530675888, 0.018281064927577972, -0.07115504145622253, -0.07909564673900604, 0.19172686338424683, -0.12324481457471848, 0.14460842311382294, -0.09376740455627441, -0.2618083953857422, 0.09815298020839691, -0.0658639520406723, 0.16627900302410126, -0.1521674394607544, -0.14907261729240417, 0.02067040279507637, -0.02461223118007183, 0.08253675699234009, -0.020668910816311836, 0.01832510158419609, 0.13189905881881714, -0.15925048291683197, -0.35953065752983093, -0.08712604641914368, -0.06774122267961502, 0.046383198350667953, -0.08221076428890228, -0.052191004157066345, -0.009786652401089668, -0.24591556191444397, 0.005286915227770805, 0.10073234140872955, 0.10176239907741547, -0.03062577173113823, -0.15596875548362732, 0.20324136316776276, -0.04188177362084389, -0.2186318039894104, -0.16319777071475983, 0.17792999744415283, 0.24094374477863312, 0.1868862509727478, 0.021058009937405586, -0.0007234225049614906, -0.09973450005054474, 0.10331910103559494, -0.2903103232383728, 0.11139985918998718, 0.11889176070690155, 0.07825778424739838, 0.12538033723831177, 0.04518415033817291, -0.17915304005146027, 0.06734679639339447, 0.13532386720180511, -0.16078421473503113, 0.04679583013057709, 0.07431905716657639, 0.004171291366219521, -0.010890748351812363, -0.006463366560637951, 0.3378293812274933, 0.09397214651107788, -0.16680970788002014, -0.1281069815158844, 0.20697487890720367, -0.18654397130012512, 0.006909484509378672, 0.013862289488315582, -0.11839575320482254, -0.23487335443496704, -0.2752935290336609, 0.012742100283503532, 0.39493894577026367, 0.2190241664648056, -0.1556674689054489, 0.10544413328170776, -0.04063930734992027, -0.003792122006416321, 0.06024185195565224, 0.18782095611095428, -0.03604749217629433, 0.057797640562057495, -0.049372926354408264, 0.10480187833309174, 0.24866461753845215, -0.04734546318650246, -0.005312258377671242, 0.22951674461364746, -0.02496180683374405, -0.013949825428426266, 0.030949529260396957, 0.10791332274675369, -0.17048941552639008, -0.04748252034187317, -0.22159002721309662, -0.06978315114974976, 0.03158833831548691, 0.08355626463890076, 0.018297255039215088, 0.25945690274238586, -0.2376914620399475, 0.11490706354379654, -0.02052733115851879, -0.11555542051792145, 0.02676130086183548, 0.025828221812844276, -0.09063873440027237, -0.15220825374126434, 0.0718010663986206, -0.23711106181144714, 0.11020933091640472, 0.12215840816497803, 0.08690816909074783, 0.15130400657653809, 0.04221188277006149, 0.06983684748411179, 0.15857815742492676, -0.04011058807373047, -0.16996020078659058, -0.02620595693588257, 0.052910033613443375, -0.03333643451333046, 0.013806948438286781, -0.009698133915662766]], "url": "http://i.imgur.com/G7HXmPf.jpg"},
"000132": {"landmarks": [{"nose_tip": [[-0.5012290741167058, 0.17351259197524127], [-0.3204690072326137, 0.2359376007491055], [-0.16994420081982853, 0.29803686155109466], [0.04235411842307078, 0.23984657641160578], [0.25432668969409505, 0.21189155174342397]], "right_eye": [[0.44779092748131316, -0.9048585978636863], [0.6613922386117126, -1.0839899248884033], [0.9338353308253509, -1.1112934536128354], [1.174414422708307, -0.9877464279526067], [0.9617903554935329, -0.8993208823418108], [0.6893472632798945, -0.872017353617379]], "chin": [[-1.7278448345652935, -1.0492534937239164], [-1.7629663146147259, -0.5960503346261856], [-1.7077077612221119, -0.11163467114152303], [-1.5919786868868844, 0.37343248828688963], [-1.3848923351939855, 0.7990063706883133], [-1.0562134456721084, 1.165412724034623], [-0.7275345561502312, 1.5318190773809326], [-0.39918141460022916, 1.9284606911985496], [-0.007751768332612761, 2.08387171718946], [0.4165191221813108, 1.997726407381789], [0.8736312569415416, 1.6700247617755373], [1.3307433917017724, 1.3423231161692852], [1.7582717619344463, 0.9538252016485441], [2.0050400652830276, 0.5029022783539387], [2.1318445706620066, -0.04002941824208787], [2.137708034155757, -0.5842641067256145], [2.1435714976495075, -1.128498795209141]], "left_eyebrow": [[-1.572108060602508, -1.4709184004628395], [-1.3585067494721086, -1.6500497274875567], [-1.0558283967871631, -1.6770275082401134], [-0.7242177755184107, -1.582738499135567], [-0.4537291711360225, -1.4286304650321566]], "nose_bridge": [[-0.1253760295860204, -1.03198885121454], [-0.1292850052485207, -0.6691657255588555], [-0.16310349341045302, -0.3369036083463531], [-0.19724772954426034, 0.025593769337456353]], "right_eyebrow": [[0.2719170801753464, -1.420812513707156], [0.6061336852190989, -1.5684055883730659], [0.9696083068185335, -1.62496713365318], [1.3018704240310357, -1.5911486454912473], [1.6025942888847309, -1.4367148634159619]], "bottom_lip": [[0.8850324359571675, 0.6117906452797909], [0.5478840991665397, 1.0315010641874642], [0.18343223365148018, 1.178768390881499], [-0.05877559809085112, 1.206397667577806], [-0.3003319338894324, 1.1735564233314986], [-0.5399337818567636, 0.9593036162573492], [-0.7775811419928444, 0.5636392463553576], [-0.6267305876081843, 0.5955032466860397], [-0.2970744541706822, 0.8712038186184283], [-0.0857533788434079, 0.9037193148928605], [0.1863639653983554, 0.9066510466397357], [0.7640913940719394, 0.6104876533922908]], "left_eye": [[-1.213845406553074, -1.043715778202041], [-1.0008955913664244, -1.1623765842841436], [-0.7291039950965361, -1.1292095920659617], [-0.519737407600512, -0.9152825329636871], [-0.7616194913709683, -0.9178885167386873], [-1.0334110876408567, -0.9510555089568695]], "top_lip": [[-0.7775811419928444, 0.5636392463553576], [-0.5350475622786381, 0.5057747091877436], [-0.29283973053630685, 0.4781454324914368], [-0.0818444031809076, 0.5408961892371761], [0.16036342856142372, 0.5132669125408692], [0.5231865542171081, 0.5171758882033695], [0.8850324359571675, 0.6117906452797909], [0.7640913940719394, 0.6104876533922908], [0.1590604366739236, 0.6342079544260973], [-0.08314739506840771, 0.6618372311224042], [-0.29414272242380696, 0.599086474376665], [-0.6267305876081843, 0.5955032466860397]], "transform": {"scale": 33.07204741494015, "angle": -0.01077336077219118, "center": [126.51388888888889, 165.08333333333334]}}], "url": "http://i.imgur.com/7z7dNHs.jpg", "embedding": [[-0.09168960154056549, 0.05757950618863106, 0.04356180131435394, -0.10924094915390015, -0.1254529505968094, 0.0007415669970214367, -0.044362232089042664, -0.15668997168540955, 0.1946859061717987, -0.12090351432561874, 0.20273357629776, 0.0031952466815710068, -0.27024516463279724, 0.019305795431137085, -0.12695010006427765, 0.18322888016700745, -0.05178393796086311, -0.17299224436283112, -0.03844120725989342, -0.024281319230794907, 0.023290056735277176, 0.013984359800815582, 0.07413183152675629, 0.10458733141422272, -0.13165125250816345, -0.368042916059494, -0.058804504573345184, -0.031982436776161194, -0.11386057734489441, -0.0860639214515686, 0.004400215111672878, 0.11057977378368378, -0.20525456964969635, 0.05403571575880051, -0.002375878393650055, 0.05071643739938736, -0.0321391336619854, -0.1339118778705597, 0.17241932451725006, 0.061636000871658325, -0.2769935727119446, -0.049489960074424744, -0.019880644977092743, 0.276088148355484, 0.17782744765281677, -0.0037739663384854794, 0.05171480029821396, -0.1530967354774475, 0.06415033340454102, -0.25723788142204285, 0.09869334846735, 0.12458258867263794, 0.007056478410959244, -0.009466130286455154, 0.0012521278113126755, -0.14497096836566925, 0.022941626608371735, 0.08671693503856659, -0.15304842591285706, -0.039012566208839417, 0.012292740866541862, -0.05819036811590195, -0.05701928585767746, -0.14743605256080627, 0.2691623270511627, 0.21118754148483276, -0.14031308889389038, -0.051677312701940536, 0.18118548393249512, -0.17630097270011902, -0.03981255367398262, -0.018733540549874306, -0.1562630981206894, -0.23294705152511597, -0.2525322735309601, -0.003169124945998192, 0.3036304712295532, 0.18173711001873016, -0.20312440395355225, 0.05873320251703262, -0.03642822057008743, 0.11632613837718964, 0.07193314284086227, 0.23706987500190735, -0.03249625116586685, 0.06664648652076721, -0.0005328240804374218, 0.03018849715590477, 0.18352240324020386, -0.05083345249295235, -0.07136919349431992, 0.34491148591041565, -0.01874484121799469, -0.02081993967294693, 0.05700007453560829, 0.06615882366895676, -0.048875801265239716, 0.0245196670293808, -0.0815705806016922, 0.015944726765155792, 0.05404486507177353, 0.03805360570549965, 0.043843865394592285, 0.14605487883090973, -0.21762686967849731, 0.1282569020986557, -0.05742655694484711, 0.03520314022898674, 0.1320919543504715, -0.02566666528582573, 0.026394566521048546, -0.17860902845859528, 0.07084143906831741, -0.24202899634838104, 0.14501343667507172, 0.1423494666814804, -0.010332131758332253, 0.19133692979812622, 0.026690125465393066, 0.12466098368167877, 0.042235635221004486, -0.0366038978099823, -0.16668179631233215, 0.025557013228535652, 0.12030360102653503, -0.03739885985851288, 0.018155355006456375, 0.028538621962070465]]},
"000133": {"url": "http://i.imgur.com/6hGGlwu.jpg", "embedding": [[-0.0011622430756688118, 0.0769229456782341, 0.09449495375156403, -0.07648897171020508, -0.12455478310585022, -0.00011034891940653324, -0.01926150545477867, -0.11333505809307098, 0.2718358337879181, -0.08748456090688705, 0.21089915931224823, 0.0764736533164978, -0.20565922558307648, -0.020124848932027817, 0.02546612173318863, 0.12960490584373474, -0.13576853275299072, -0.14005793631076813, -0.11873845756053925, -0.030697369948029518, -0.04842963069677353, -0.0033031022176146507, 0.07861237227916718, 0.09466808289289474, -0.19036218523979187, -0.28791412711143494, -0.03622788190841675, -0.0706709772348404, 0.02054595574736595, -0.15066830813884735, 0.044895656406879425, 0.09809742867946625, -0.18675053119659424, 0.009969621896743774, 0.007138758897781372, 0.026432782411575317, -0.08792330324649811, -0.11444733291864395, 0.257537841796875, -0.0033652419224381447, -0.2316405177116394, -0.03671647608280182, 0.01933370530605316, 0.25734782218933105, 0.3477018475532532, -0.01479337178170681, 0.06401296705007553, -0.10713415592908859, 0.20017917454242706, -0.319790244102478, 0.12720641493797302, 0.1363903284072876, 0.028314979746937752, 0.03256147727370262, 0.1286851167678833, -0.13984139263629913, -0.04368751868605614, 0.1638004332780838, -0.21109004318714142, 0.09210751205682755, 0.02352597564458847, -0.05120884254574776, -0.04796840250492096, -0.08029444515705109, 0.3029879331588745, 0.13105884194374084, -0.17595495283603668, -0.10756714642047882, 0.2135499268770218, -0.19599516689777374, -0.08681821078062057, 0.07497347146272659, -0.14380231499671936, -0.20012922585010529, -0.3145810067653656, 0.0013065272942185402, 0.3867760896682739, 0.14744548499584198, -0.24752435088157654, 0.07057640701532364, -0.07946818321943283, -0.03828899562358856, -0.01618480309844017, 0.19985370337963104, -0.004472572356462479, -0.04459753260016441, -0.03866560757160187, -0.0010057687759399414, 0.2642647624015808, -0.0054955738596618176, -0.042033687233924866, 0.33351433277130127, 0.017739102244377136, -0.1124303787946701, 0.0007355092093348503, 0.02829892560839653, -0.11551421135663986, -0.0545358881354332, -0.19010818004608154, -0.10896351933479309, 0.01753312163054943, 0.04828931763768196, 0.011122660711407661, 0.15148772299289703, -0.21309751272201538, 0.24453356862068176, -0.0157329048961401, 0.008321473374962807, 0.060937874019145966, -0.053297366946935654, -0.07709790766239166, -0.10014058649539948, 0.16948667168617249, -0.2942095994949341, 0.19831128418445587, 0.05724368244409561, 0.07449112087488174, 0.12545062601566315, -0.015930796042084694, 0.11615501344203949, 0.06625626236200333, 0.031200431287288666, -0.07484070956707001, -0.029786664992570877, 0.03653017804026604, -0.06137113273143768, 0.08502857387065887, 0.06777720898389816]], "landmarks": [{"left_eyebrow": [[-1.549446927893474, -1.4305120541804053], [-1.2706324392591133, -1.5834319199533125], [-0.9617711442993224, -1.5817532736122146], [-0.6223594491117722, -1.5181345036450489], [-0.31400174805431064, -1.4237974688160135]], "chin": [[-1.9826920640077301, -1.2784315115780467], [-1.9237735037956383, -0.7530315808781829], [-1.8650228082176563, -0.19674552068233978], [-1.7752181185095854, 0.328822274651634], [-1.5925871756794676, 0.8240075343919581], [-1.286075985597214, 1.258091993676763], [-0.9176246718888922, 1.6616260527338087], [-0.4560113757903038, 1.9730053172052464], [0.006776972747052988, 2.0681816752048303], [0.43985424422719926, 1.9469872620984512], [0.8433883032842447, 1.5785359483901293], [1.1853179679834418, 1.178862775917609], [1.465475373690681, 0.7788538741768689], [1.622591855316333, 0.28551512541175267], [1.6872178130881577, -0.2392133467516721], [1.7207897767298932, -0.7332235540532277], [1.7855835991358278, -1.2888381557126316]], "right_eyebrow": [[0.3963792303532082, -1.4199365822314884], [0.7060798484835479, -1.572688583370286], [1.0154447373456679, -1.6636683255171252], [1.355192161801438, -1.6618218145419177], [1.6016097392328315, -1.5369343794851227]], "left_eye": [[-1.150109484689173, -1.0268101304892499], [-0.9330672550467707, -1.1800657255303766], [-0.6552599542170686, -1.1476688143274094], [-0.4709503650458529, -0.9613448495468763], [-0.687489000785926, -0.9007476429936866], [-0.965296301615628, -0.9331445541966538]], "top_lip": [[-0.8808632801990705, 0.5807793850086505], [-0.5105654555155411, 0.6445660196099262], [-0.20170416055575024, 0.6462446659510241], [0.01416301664788373, 0.7091919773817507], [0.23070165238795687, 0.6485947708285612], [0.5088446824858783, 0.6192194230395701], [0.8180417067138889, 0.5591258103887099], [0.693993594827643, 0.651112740340208], [0.2301980584856275, 0.7412531593164984], [0.013827287379664151, 0.7709642363737088], [-0.20237561909218943, 0.7697891839349403], [-0.7578223561174835, 0.6741092320330269]], "right_eye": [[0.5174057788254777, -0.955973181255363], [0.7347837377360997, -1.171001035288448], [0.9820406383380421, -1.2005442477115489], [1.1975720862734565, -1.0758246772888638], [1.0115838507611428, -0.9532873471096064], [0.7643269501592006, -0.9237441346865055]], "bottom_lip": [[0.8180417067138889, 0.5591258103887099], [0.5377164363725401, 0.9900208416254289], [0.2587340831040696, 1.1738268368943152], [0.011477182502127096, 1.2033700493174162], [-0.20455785933561668, 1.1713088673826684], [-0.5434659606208376, 1.0150317089275653], [-0.8808632801990705, 0.5807793850086505], [-0.7578223561174835, 0.6741092320330269], [-0.20338280689684815, 0.9551059609108149], [0.012652234940895624, 0.9871671428455625], [0.2600770001769479, 0.9267378009264827], [0.693993594827643, 0.651112740340208]], "transform": {"angle": -0.005434898578869935, "center": [124.41666666666667, 164.04166666666666], "scale": 32.37651487232339}, "nose_bridge": [[0.05461743028812082, -1.051149539254947], [0.05260305467880334, -0.6805159853031981], [0.05042081443537608, -0.27899630185547003], [0.0484064388260586, 0.09163725209627889]], "nose_tip": [[-0.35378470315810856, 0.21299952983676795], [-0.16897152008456348, 0.30666510612936393], [0.04672779248496071, 0.4004985470560697], [0.23254816336316453, 0.3088473463727912], [0.41836853424136844, 0.2171961456895127]]}]},
"000134": {"landmarks": [{"top_lip": [[-0.7600366674971426, 0.6348269897812232], [-0.6699278447599587, 0.5819496854660964], [-0.49469152217689594, 0.5629830176454903], [-0.29550720888192217, 0.6324647315982997], [-0.03182250452544383, 0.5895500730657828], [0.40377764048656084, 0.585527373919091], [0.8087880309315814, 0.608773547411847], [0.7186792081943976, 0.6616508517269736], [-0.012855836704837732, 0.7647863956488457], [-0.3021489727369953, 0.7481819860111628], [-0.4757248543562898, 0.7382193402285532], [-0.7054989222182477, 0.6960064989151912]], "nose_bridge": [[-0.28765001475677776, -1.0214874666763032], [-0.392702806167876, -0.7082463399322347], [-0.4704867249395269, -0.3644154586211822], [-0.5771999573143934, -0.022245018273897906]], "right_eye": [[0.3165446889832166, -0.9287595792307379], [0.46783302085436845, -1.0361746288247593], [0.6976070887163263, -0.9939617875113976], [0.9852397837847156, -0.948428064270499], [0.719894638464469, -0.8765840921347663], [0.48679968867497464, -0.8609383062416968]], "transform": {"angle": -0.05733358283376501, "center": [130.93055555555554, 164.625], "scale": 34.5102166613359}, "nose_tip": [[-0.8169366709589608, 0.10911802203203466], [-0.6516629941585076, 0.2637272358307231], [-0.39462005365710245, 0.3365298317110691], [-0.15820422194007158, 0.26302541861156803], [0.10548048241640678, 0.220110760079051]], "right_eyebrow": [[-0.11809683228417482, -1.4471249659056982], [0.23735713577325565, -1.5718462423565576], [0.6456884081458127, -1.6064586960702332], [1.0440570347357603, -1.4674952681646145], [1.352316838588524, -1.275654535943869]], "left_eye": [[-0.9802931002701878, -1.0902673634099576], [-0.8595945229660198, -1.1704135403645317], [-0.6876790823104935, -1.1315215809787063], [-0.5190845235825038, -1.0347709943864494], [-0.6959812871293348, -0.9868750129626276], [-0.8678967277848612, -1.025766972348453]], "chin": [[-1.067081041079835, -1.0952486863012625], [-1.1498462827427907, -0.6646298641805626], [-1.176413338163083, -0.20176084652911047], [-1.0583338255672967, 0.269410375941183], [-0.8790748038375421, 0.6860438531325815], [-0.6692260275408036, 1.0754084576845324], [-0.46103769220783347, 1.4937023758396994], [-0.3073871021537583, 1.8508167848608983], [0.03312289722975771, 1.9864593308389804], [0.4993127968087464, 1.9551677590528413], [1.036644851304313, 1.6957625603685127], [1.5806186696549522, 1.3206401072713212], [2.095663174402376, 0.9438572132103612], [2.443773561385578, 0.4413944189539286], [2.594360076037575, -0.1594794028585291], [2.6275688953129404, -0.7380656749228444], [2.660777714588306, -1.3166519469871594]], "bottom_lip": [[0.8087880309315814, 0.608773547411847], [0.46233808491214734, 1.082307028065064], [0.04404416675698057, 1.290495363398034], [-0.2179800966357295, 1.3044807083273355], [-0.4477541644976873, 1.2622678670139735], [-0.6097069593706038, 1.0498000260088534], [-0.7600366674971426, 0.6348269897812232], [-0.7054989222182477, 0.6960064989151912], [-0.45509774557191546, 0.8845263492084002], [-0.25591343227694174, 0.9540080631612097], [0.007771272079536651, 0.9110934046286927], [0.7186792081943976, 0.6616508517269736]], "left_eyebrow": [[-1.0628015354076852, -1.6754953993293458], [-0.9726927126705013, -1.7283727036444725], [-0.8569754582576382, -1.7217309397893994], [-0.715649772169096, -1.6555701077641265], [-0.5487156544048746, -1.5298902075686538]]}], "url": "http://i.imgur.com/LoEAWyF.jpg", "embedding": [[-0.18073178827762604, 0.12364906817674637, 0.12561890482902527, 0.03813701495528221, -0.04069177061319351, -0.05846812576055527, 0.016825951635837555, -0.02747654914855957, 0.14594371616840363, -0.04671419784426689, 0.2811703383922577, 0.0017279237508773804, -0.12780092656612396, -0.12734352052211761, 0.10888718068599701, 0.12331513315439224, -0.2334260791540146, -0.12112492322921753, -0.03575736656785011, -0.10786471515893936, 0.05368281155824661, 0.0033692121505737305, 0.01490035280585289, 0.05029084533452988, -0.20224446058273315, -0.2896771728992462, -0.04175717011094093, -0.1684766709804535, 0.1977296769618988, -0.09608802944421768, 0.011007125489413738, 0.012514475733041763, -0.16934797167778015, -0.004997411742806435, -0.055304981768131256, 0.07261314988136292, 0.0068715778179466724, 0.028053369373083115, 0.18598923087120056, -0.02915714494884014, -0.1819097250699997, -0.09447206556797028, -0.0705290138721466, 0.32355308532714844, 0.24085164070129395, 0.05797247588634491, 0.011866258457303047, 0.047097571194171906, 0.05703965947031975, -0.22706525027751923, 0.04351605847477913, 0.15254972875118256, 0.13819627463817596, 0.06007141247391701, -0.1176643893122673, -0.1151752769947052, -0.041934117674827576, 0.03465292975306511, -0.20752516388893127, 0.06713414937257767, 0.11906856298446655, -0.14584359526634216, -0.1009218841791153, 0.00568305142223835, 0.2752573490142822, 0.06778538227081299, -0.15365329384803772, -0.14558251202106476, 0.147926464676857, -0.1840430200099945, -0.06768577545881271, 0.0861741304397583, -0.1735607236623764, -0.11940431594848633, -0.3344981074333191, 0.04777877777814865, 0.37198734283447266, 0.0554564893245697, -0.16427350044250488, -0.033024970442056656, -0.15548977255821228, 0.07759431004524231, 0.02372114360332489, 0.09719052165746689, -0.0859157145023346, -0.01914384216070175, -0.13483455777168274, 0.04881099611520767, 0.1451500803232193, -0.08066248893737793, -0.040387533605098724, 0.16815845668315887, 0.025844793766736984, 0.03317169100046158, -0.05905510112643242, 0.021451741456985474, 0.00432317890226841, -0.013464059680700302, -0.03809785842895508, -0.03375022113323212, 0.08525729924440384, 0.0010008029639720917, 0.03741057217121124, 0.1540052890777588, -0.1798810362815857, 0.24942174553871155, 0.045011620968580246, 0.07336767017841339, 0.08385246992111206, 0.057763658463954926, -0.12334003299474716, -0.14300495386123657, 0.1838730275630951, -0.16626012325286865, 0.16771060228347778, 0.2754456102848053, 0.06104558706283569, 0.10434714704751968, 0.05843226611614227, 0.10905010253190994, -0.05423583462834358, 0.04189049080014229, -0.1883072406053543, 0.01494519878178835, 0.03024642914533615, -0.08319637179374695, 0.031628869473934174, 0.04038942605257034]]},
"000135": {"url": "http://i.imgur.com/qreYJqv.jpg", "landmarks": [{"bottom_lip": [[0.7974240211628899, 0.6935726527717919], [0.5236471116540875, 0.9398094816937272], [0.2797338026973312, 1.063553459222243], [0.035105564520519925, 1.064983317662353], [-0.20970140596130515, 1.035834646330362], [-0.5163803652073882, 0.8847293205199926], [-0.8545315157506415, 0.58091007815413], [-0.7318599320522082, 0.6413522084782777], [-0.18055273462931393, 0.7910276758485368], [0.03367570608040975, 0.820355079485542], [0.27812521195220724, 0.7883466912733302], [0.7058671641515994, 0.7246873794589347]], "chin": [[-2.087860448020483, -1.1549168266550995], [-2.0542434690631475, -0.6352605528343894], [-1.9900479603337107, -0.11578301131869294], [-1.9258524516042734, 0.4036945301970035], [-1.708943026319343, 0.8916998804155298], [-1.4006554763281365, 1.3180119741748118], [-1.0009898016306527, 1.6826308114748498], [-0.5711030617710952, 1.9859138569256711], [-0.05073185873032981, 2.0746109970567415], [0.4379884207082515, 1.9800156908602167], [0.8029647226183169, 1.6415070757069359], [1.075669238297037, 1.211799068152392], [1.3483737539757568, 0.7820910605978482], [1.4985854182610574, 0.3225194524912582], [1.5872825583921273, -0.19785175054950718], [1.645401168751096, -0.7180442212852588], [1.6425414518708756, -1.2073006976388814]], "right_eye": [[0.512208244133206, -1.0172164237207633], [0.725364291012847, -1.1713601987163667], [0.9698137968846445, -1.2033685869285784], [1.1538211724322942, -1.1127053914423568], [1.0016434527918423, -0.9894976108288822], [0.7570152146150311, -0.988067752388772]], "right_eyebrow": [[0.32605608092539096, -1.474821976472202], [0.6613475145884238, -1.660259210459962], [0.9973538774715117, -1.7233823253593163], [1.3338964372696411, -1.6947698509423663], [1.5189762066473735, -1.420635476823536]], "transform": {"scale": 32.70212550195597, "center": [123.05555555555556, 165.16666666666666], "angle": 0.005844959550520822}, "nose_tip": [[-0.306441499817995, 0.18017200962656368], [-0.09167686219323004, 0.30123500257987296], [0.15366630520363636, 0.42211926322816845], [0.39775834646540636, 0.328953815471754], [0.5499360661058583, 0.20574603485827947]], "left_eye": [[-1.1084538337881689, -1.0077436115550333], [-0.8949403222985003, -1.1007303270064341], [-0.6504908164267028, -1.1327387152186457], [-0.43572617880193787, -1.0116757222653363], [-0.6494184225966201, -0.949267536586037], [-0.8940466607734314, -0.9478376781459269]], "top_lip": [[-0.8545315157506415, 0.58091007815413], [-0.4568318964083093, 0.6091650879610523], [-0.15086786638228136, 0.6379562946830161], [0.06353930663245606, 0.6978622280921224], [0.30798881250425364, 0.6658538398799109], [0.5526170506810649, 0.6644239814398006], [0.7974240211628899, 0.6935726527717919], [0.7058671641515994, 0.7246873794589347], [0.3088824740293225, 0.818746488740418], [0.06425423585251117, 0.8201763471805281], [-0.15015293716222627, 0.7602704137714217], [-0.7318599320522082, 0.6413522084782777]], "left_eyebrow": [[-1.629718698354003, -1.2493334005466106], [-1.356299253455228, -1.5567272890127486], [-0.9593145633329511, -1.6507863982942321], [-0.5308576819135037, -1.5921315910202218], [-0.13262186565613027, -1.4721409918969952]], "nose_bridge": [[0.14472968995294774, -1.1068072253769023], [0.17781047199524197, -0.6788865408724961], [0.180133991960421, -0.28136565383517786], [0.2132147740027152, 0.14655503066922815]]}], "embedding": [[-0.1108868196606636, 0.14749222993850708, 0.10873900353908539, 0.002355854958295822, -0.06808021664619446, 0.0181540846824646, -0.0887814611196518, -0.05898532271385193, 0.1529655158519745, -0.1295406073331833, 0.14067557454109192, -0.004090927541255951, -0.24326597154140472, 0.0783701092004776, -0.08259999006986618, 0.08748187124729156, -0.13757766783237457, -0.03130950406193733, -0.08826641738414764, -0.027004633098840714, 0.05082692950963974, 0.10014408826828003, 0.0653425008058548, 0.038694582879543304, -0.13836705684661865, -0.31811952590942383, -0.08516866713762283, -0.10578847676515579, -0.04066399484872818, -0.10659992694854736, -0.01992785930633545, 0.001433374360203743, -0.1199951246380806, 0.00018830597400665283, -0.016740713268518448, 0.027729254215955734, -0.0004009399563074112, 0.052429184317588806, 0.11138100922107697, -0.0341782309114933, -0.1947592794895172, -0.00031104497611522675, 0.09036785364151001, 0.2590477168560028, 0.19431054592132568, 0.1661011278629303, -0.03713410347700119, -0.06444404274225235, 0.06830565631389618, -0.25959330797195435, 0.09229022264480591, 0.08733808994293213, 0.04972681403160095, 0.06879740953445435, 0.14207985997200012, -0.14649614691734314, -0.010256600566208363, 0.051769305020570755, -0.08222370594739914, 0.04234769940376282, 0.053518444299697876, 0.06807788461446762, 0.0653962641954422, 0.02052280865609646, 0.2721032500267029, 0.0849711000919342, -0.14018981158733368, -0.088979072868824, 0.10167794674634933, -0.2337917685508728, -0.06985309720039368, 0.07183631509542465, -0.07430260628461838, -0.14077413082122803, -0.2532493770122528, 0.026536669582128525, 0.4357083737850189, 0.1575336456298828, -0.10336660593748093, 0.007423222064971924, -0.06837935000658035, -0.08418717980384827, 0.03617459908127785, 0.07051525264978409, -0.13633188605308533, 0.0021197348833084106, -0.023400697857141495, 0.04646985977888107, 0.22752942144870758, 0.015290359035134315, -0.03023155778646469, 0.23496535420417786, 0.01809723675251007, 0.01265476644039154, -0.008623525500297546, 0.014114663004875183, -0.13492289185523987, -0.0003421064466238022, -0.15303680300712585, -0.006972428411245346, 0.017092688009142876, 0.0048819296061992645, -0.014729175716638565, 0.174341082572937, -0.20353539288043976, 0.15682430565357208, -0.04326286166906357, -0.04668083041906357, 0.03734170272946358, 0.15461969375610352, -0.18228879570960999, -0.06225402653217316, 0.16334709525108337, -0.22904855012893677, 0.1411982774734497, 0.13726051151752472, 0.056373633444309235, 0.06578932702541351, 0.07473063468933105, 0.06256149709224701, 0.06769857555627823, 0.07809145748615265, -0.15583257377147675, -0.0956718772649765, 0.11667980998754501, -0.13036485016345978, 0.057063136249780655, 0.02176663838326931]]},
"000137": {"landmarks": [{"right_eye": [[0.49993599901354857, -0.9735960032233073], [0.6969428909277875, -1.0618537608093837], [0.8669933925992944, -1.0646244808810887], [0.9822075404281027, -0.953104626481221], [0.84049878903518, -0.9507956930881333], [0.6704482873636731, -0.9480249730164281]], "nose_bridge": [[0.2992348136703694, -1.1120722478659073], [0.35915082097786116, -0.9146035692730508], [0.4190668282853529, -0.7171348906801944], [0.4794446222714622, -0.4913244618087534]], "right_eyebrow": [[0.5469219793197494, -1.569696332430817], [0.7443906579126058, -1.6296123397383087], [0.9994664104198662, -1.6337684198458664], [1.199705809084428, -1.5236339254818512], [1.2034001025133683, -1.296899923253175]], "left_eye": [[-1.0026385524300474, -0.9774630595351627], [-0.7772899102372239, -1.0661826037998565], [-0.57935944496575, -1.0977568608287638], [-0.3791200463011884, -0.9876223664647483], [-0.5770505115726623, -0.9560481094358411], [-0.8037845138013383, -0.9523538160069008]], "left_eyebrow": [[-1.4895279606307765, -1.281371939063094], [-1.153121250716703, -1.5136473814351805], [-0.7869874304881921, -1.6613593596501308], [-0.3906647132666267, -1.6961661234293608], [0.035846900947993365, -1.6180676727728702]], "transform": {"center": [119.80555555555556, 165.05555555555554], "angle": 0.016292071441062664, "scale": 35.2789533924851}, "chin": [[-2.557278737644637, -0.6969890397039378], [-2.5201630404723194, -0.1589575710894499], [-2.482585556621384, 0.4074156478036225], [-2.332564645013346, 0.9152582194250558], [-2.0426821287268555, 1.3074248565390634], [-1.5836726841260933, 1.640137273024197], [-1.0126815984468454, 1.885977291959107], [-0.49791222664614926, 2.1610826345298357], [-0.04305886215294464, 2.2387192985077093], [0.3518784950327682, 2.1188872838927257], [0.5730710571180337, 1.7750919871207715], [0.7938018325246818, 1.4029549400702328], [0.9573873206955433, 1.0033997160983446], [1.0642893083092357, 0.6047680654836913], [1.142849545644344, 0.20659820154765582], [1.1935298193794852, -0.16276812543117775], [1.1317666653575231, -0.4736038051383722]], "top_lip": [[-0.8355315337131605, 0.5790242723938971], [-0.3574160724061643, 0.34443989662872304], [0.06678660841536807, 0.28082959589229106], [0.2944441840012792, 0.3338188030205198], [0.4919128625941356, 0.27390279571302806], [0.6907669012228446, 0.29901203924128983], [0.7790246588089208, 0.49601893115552864], [0.6939994079731673, 0.49740429119138124], [0.4658800457086387, 0.41607333378456807], [0.26794958043716477, 0.4476475908134753], [0.04075379152987124, 0.42300013396383107], [-0.6942845689988557, 0.5483735887222249]], "nose_tip": [[-0.05304540619961538, -0.11410776129342179], [0.14580863242909364, -0.08899851776516002], [0.31678270745783565, -0.035085737279696216], [0.4580296721721407, -0.06573642095136839], [0.5983530635292107, -0.15307060518020957]], "bottom_lip": [[0.7790246588089208, 0.49601893115552864], [0.6716608845166107, 0.8663088314915973], [0.448621175716875, 1.0967371271492137], [0.22234896016681657, 1.1287731708567386], [-0.0048468287404769585, 1.1041257140070941], [-0.4322820163123321, 0.9693437627934346], [-0.8355315337131605, 0.5790242723938971], [-0.6942845689988557, 0.5483735887222249], [0.02026241478778481, 0.905271675378385], [0.24745820369507834, 0.9299191322280294], [0.4732686325665193, 0.86954133824192], [0.6939994079731673, 0.49740429119138124]]}], "url": "http://i.imgur.com/QcwDX3U.jpg", "embedding": [[-0.11916136741638184, 0.13673363626003265, 0.10519155859947205, -0.02638278156518936, -0.14713811874389648, 0.05152571573853493, 0.012276004999876022, -0.024797428399324417, 0.14084677398204803, -0.06195920705795288, 0.19498492777347565, -0.023976171389222145, -0.2773686349391937, -0.005127806216478348, -0.0029639452695846558, 0.19588744640350342, -0.1588490605354309, -0.09342785179615021, -0.12600398063659668, -0.09692216664552689, 0.002696659415960312, 0.09653899818658829, -0.05292191356420517, 0.02497439831495285, -0.09711606800556183, -0.3495138883590698, 0.010022690519690514, -0.005116362124681473, 0.047769781202077866, -0.08004912734031677, 0.009395229630172253, 0.084891676902771, -0.09619533270597458, -0.01662498340010643, 0.039897892624139786, 0.07668717950582504, -0.04270337522029877, -0.15663591027259827, 0.12583209574222565, -0.0036174748092889786, -0.10753092914819717, -0.03635101765394211, 0.03671496734023094, 0.33522868156433105, 0.15328529477119446, 0.029115810990333557, 0.05490811914205551, -0.03624262660741806, 0.14239045977592468, -0.3145756423473358, 0.024689044803380966, 0.10343813896179199, 0.07505291700363159, 0.05766923725605011, 0.10560216754674911, -0.14919939637184143, -0.0007911752909421921, 0.14150090515613556, -0.18517209589481354, 0.03727353364229202, 0.0402568019926548, -0.05310502648353577, -0.039603084325790405, -0.19302405416965485, 0.2398645281791687, 0.1001773551106453, -0.14141437411308289, -0.08707254379987717, 0.12174169719219208, -0.12093622237443924, -0.10516111552715302, -0.04687955230474472, -0.10495252907276154, -0.12137456238269806, -0.29412534832954407, 0.02742103859782219, 0.34126386046409607, 0.179212749004364, -0.23989605903625488, -0.04946766421198845, -0.018945319578051567, 0.03913089632987976, 0.07822655886411667, 0.08534456789493561, -0.06125049293041229, -0.10302489995956421, -0.09445106238126755, -0.024065185338258743, 0.21697209775447845, -0.012225751765072346, -0.06257273256778717, 0.21585150063037872, 0.06191058084368706, -0.10567580163478851, -0.017480891197919846, 0.009290575981140137, -0.11361423134803772, -0.02189735509455204, -0.08665932714939117, -0.030055582523345947, 0.06187734007835388, -0.08743391185998917, -0.0037541761994361877, 0.13600799441337585, -0.215988427400589, 0.22179338335990906, -0.012835491448640823, 0.048468660563230515, 0.08461721241474152, -0.017891554161906242, -0.13183675706386566, -0.0027328021824359894, 0.17675766348838806, -0.2330004870891571, 0.13938821852207184, 0.1812574565410614, 0.015324234962463379, 0.16745832562446594, 0.014451474882662296, 0.1030743196606636, -0.018700726330280304, 0.02918718196451664, -0.11028816550970078, -0.15910542011260986, 0.05978929251432419, -0.05127040669322014, 0.007166989613324404, 0.05650743097066879]]},
"000140": {"url": "http://i.imgur.com/b6XN4Pa.jpg", "embedding": [[-0.09338310360908508, 0.06080019474029541, 0.1392545849084854, -0.13714155554771423, -0.17211124300956726, -0.012398040853440762, -0.09790939092636108, -0.018872089684009552, 0.23708882927894592, -0.14528754353523254, 0.1262548267841339, -0.09892268478870392, -0.20974647998809814, 0.09227780997753143, -0.030837489292025566, 0.21007174253463745, -0.2276691496372223, -0.12848499417304993, -0.1118919625878334, -0.09233041852712631, 0.08356687426567078, 0.020798634737730026, -0.026885222643613815, 0.017975270748138428, -0.1731109917163849, -0.36468854546546936, -0.047934286296367645, -0.06930582970380783, -0.005200987681746483, -0.1656767576932907, 0.03950405493378639, 0.1544518619775772, -0.13008557260036469, -0.04663572460412979, 0.029298115521669388, 0.12929582595825195, -0.030945036560297012, -0.16865989565849304, 0.14218325912952423, 0.002353725954890251, -0.21316802501678467, -0.0348164439201355, 0.07685704529285431, 0.21221508085727692, 0.13901877403259277, 0.00864320993423462, 0.07387326657772064, -0.08538368344306946, 0.18958215415477753, -0.3723587989807129, 0.031178642064332962, 0.14279472827911377, 0.04684805870056152, 0.1445150077342987, 0.17172019183635712, -0.19881495833396912, 0.10805007815361023, 0.1169683039188385, -0.16347897052764893, 0.1283043920993805, 0.07145321369171143, -0.09541739523410797, 0.02425597794353962, -0.060761161148548126, 0.21491728723049164, 0.12984733283519745, -0.06780572235584259, -0.18320584297180176, 0.17305628955364227, -0.030147191137075424, -0.08248411118984222, 0.11236043274402618, -0.15083220601081848, -0.17678454518318176, -0.2449135035276413, -0.0897924080491066, 0.3426387906074524, 0.14081405103206635, -0.20778268575668335, 0.0083815548568964, -0.12514425814151764, -0.05763212963938713, -0.023445487022399902, 0.1455536186695099, 0.04122806340456009, -0.0007798224687576294, -0.09203159064054489, 0.075906902551651, 0.2613503336906433, -0.08906596153974533, -0.015269352123141289, 0.2860316038131714, 0.06426624953746796, -0.0069556571543216705, -0.07344835996627808, 0.033608578145504, -0.20062267780303955, -0.01436576060950756, -0.1397109180688858, -0.14282523095607758, 0.11289949715137482, 0.06350456923246384, -0.0755733847618103, 0.13845059275627136, -0.21215584874153137, 0.22729389369487762, -0.05775229632854462, -0.007477117702364922, -0.07674932479858398, -0.06231667101383209, -0.02667020447552204, 0.046468038111925125, 0.20195750892162323, -0.19721004366874695, 0.13450215756893158, 0.235500767827034, 0.0722755417227745, 0.1170407235622406, 0.0110455472022295, -0.01721853017807007, 0.07838279753923416, -0.07086944580078125, -0.16883224248886108, -0.050124187022447586, -0.0036799367517232895, 0.0017370395362377167, -0.11849746853113174, 0.07393515855073929]], "landmarks": [{"nose_bridge": [[0.11464876614536822, -1.0728328452498157], [0.14862084039547058, -0.7674144220965047], [0.15201710963781834, -0.461656372018959], [0.15541337888016613, -0.15589832194141326]], "top_lip": [[-0.6895014728372142, 0.8626127971930612], [-0.3552053792973226, 0.6754220709799513], [-0.08104201500023579, 0.5806380136385746], [0.07217663696277182, 0.6095156840251553], [0.2247160350773099, 0.5772417443962268], [0.4397655509042962, 0.6665917709498471], [0.6558339475039868, 0.847669212526731], [0.5335307274729686, 0.8490277202236701], [0.22709342354695333, 0.7912723794505088], [0.07421439850818048, 0.7929705140716827], [-0.07866462653059236, 0.7946686486928566], [-0.5366224477984413, 0.8609146625718873]], "left_eyebrow": [[-1.6013322104554701, -1.3901475925779685], [-1.2972722949990985, -1.5464228868590888], [-0.9619573206865024, -1.641886198048935], [-0.5950476605934476, -1.6459617211397524], [-0.22711911972768847, -1.558309829207306]], "right_eyebrow": [[0.44588821736714684, -1.5352058165327167], [0.7812031916797428, -1.630669127722563], [1.0869612417572883, -1.6340653969649106], [1.362822740675549, -1.5759704292675145], [1.5788911372752399, -1.3948929876906306]], "transform": {"angle": 0.011107245004395524, "center": [122.86111111111111, 165.04166666666666], "scale": 32.70358098289755}, "bottom_lip": [[0.6558339475039868, 0.847669212526731], [0.44350144707087874, 1.0029256260351471], [0.2301500658650663, 1.0664546245202997], [0.07727104082629349, 1.0681527591414737], [-0.10618378922023392, 1.0701905206868823], [-0.35146948313074006, 1.0117559260652513], [-0.6895014728372142, 0.8626127971930612], [-0.5366224477984413, 0.8609146625718873], [-0.07866462653059236, 0.7946686486928566], [0.07421439850818048, 0.7929705140716827], [0.22709342354695333, 0.7912723794505088], [0.5335307274729686, 0.8490277202236701]], "nose_tip": [[-0.20810001197054095, 0.15393525122694976], [-0.02396592807554398, 0.21304909969705021], [0.12925272388746364, 0.24192677008363092], [0.2512163169942471, 0.2099924573789372], [0.34226447816904126, 0.14782196659072377]], "chin": [[-2.2410467271486727, -1.1689847921147558], [-2.1737818324969376, -0.6192995558236433], [-2.106856564769437, -0.1001901245402852], [-1.9787796870264278, 0.4182400528946034], [-1.7898908261921438, 0.9054151714732678], [-1.418566016084037, 1.29882511348326], [-0.9871084767331252, 1.5998283866215186], [-0.46460277620741935, 1.838661168971564], [0.024949730840888553, 1.863802943191562], [0.45199212017674817, 1.7673207512290117], [0.8464209429594447, 1.4877233561441685], [1.1484430968704076, 1.1479932318165202], [1.3886343869173923, 0.7477907513218328], [1.5058432030848887, 0.28779516850857506], [1.592476214244631, -0.1718607873804478], [1.679109225404373, -0.6315167432694706], [1.7049302534728408, -1.0599176403022694]], "right_eye": [[0.5134927389431168, -0.9549447752338492], [0.7248063586035205, -1.2019286037655292], [0.9999886036733117, -1.2049852460836423], [1.185141568341013, -1.054143982590278], [1.0336210509991794, -0.9301426279380859], [0.7584388059293881, -0.9270859856199729]], "left_eye": [[-1.1997712222638435, -1.0276530824999655], [-0.9572025437472155, -1.2138249279403712], [-0.6816806717531897, -1.1863057652507296], [-0.4652726482292643, -0.974652518666091], [-0.7091998344428313, -0.9107838932567036], [-0.9843820795126224, -0.9077272509385906]]}]},
"000142": {"landmarks": [{"nose_tip": [[-0.2880290824117641, 0.1816275584963063], [-0.12957627003341618, 0.24292750025855905], [0.028876542344931814, 0.30422744202081187], [0.1858940559721857, 0.23933925338082385], [0.3432703942872132, 0.2059980973413961]], "left_eyebrow": [[-1.6011927768622756, -1.5387474223357898], [-1.3506106394966617, -1.6993531828407789], [-1.0035932808904995, -1.7033002544062876], [-0.687046480821577, -1.6122474034823422], [-0.3697820313771076, -1.4581004873572765]], "top_lip": [[-0.6275111225746823, 0.848062314673579], [-0.3769289852090684, 0.6874565541685899], [-0.12562919846790746, 0.5899448588647211], [0.03282361391044053, 0.6512448006269739], [0.2213881601382546, 0.5859977872992125], [0.4432938624054965, 0.6781271122864783], [0.6659172140482854, 0.8333505024748646], [0.5400879083338181, 0.8663328338265189], [0.22425875764044276, 0.838374048103694], [0.034976562037081646, 0.840526996230335], [-0.12275860096571929, 0.8423211196692026], [-0.5013229921724416, 0.8466270159224849]], "transform": {"angle": 0.011373786539654509, "center": [124.19444444444444, 164.34722222222223], "scale": 31.696652165294275}, "left_eye": [[-1.1860578074261638, -1.101753686869003], [-0.966305053285563, -1.1989065574850981], [-0.7139287924810815, -1.2017771549872862], [-0.5224936487510793, -1.0146479075105663], [-0.7426052275794535, -0.9490420694950312], [-0.9953403130717086, -0.9777185045934031]], "nose_bridge": [[0.04463528868345713, -1.08420081709161], [0.04894118493673937, -0.7056364258848877], [0.05324708119002161, -0.3270720346781654], [0.026005944842743652, 0.051851181216330325]], "bottom_lip": [[0.6659172140482854, 0.8333505024748646], [0.44795858334655225, 1.0882385360937608], [0.22856465389372502, 1.2169384393104161], [0.039641282978137404, 1.2506384200376175], [-0.14999973731299723, 1.2212443355636984], [-0.4034524721807993, 1.129473835264206], [-0.6275111225746823, 0.848062314673579], [-0.5013229921724416, 0.8466270159224849], [-0.12239977627794578, 0.8738681522697629], [0.03533538672485517, 0.8720740288308952], [0.2246175823282163, 0.8699210807042542], [0.5400879083338181, 0.8663328338265189]], "chin": [[-1.9768865705668095, -1.282065265278026], [-1.9076924856735393, -0.7464833604440498], [-1.8073101928674826, -0.24280731289840743], [-1.7381161079742122, 0.29277459193556876], [-1.5434515420542483, 0.7638271328173305], [-1.2545047030203773, 1.2022561670352114], [-0.8716344155603729, 1.5765146619886514], [-0.4582935695631287, 1.8557732344526376], [0.015629568820821137, 1.913484929337155], [0.45621155116534323, 1.8138202859066452], [0.7999994875815436, 1.5259499209360945], [1.1111639173338632, 1.1437972828516372], [1.3592342818850625, 0.7623622941427268], [1.5434929318595947, 0.31855088960824307], [1.6642986919452323, -0.15608989815125382], [1.7535574194303103, -0.6303718612229773], [1.779363257026494, -1.1354832075197139]], "right_eyebrow": [[0.4500819915496838, -1.4989769618399482], [0.7325699862036315, -1.6283945144321506], [0.9838697729447923, -1.7259062097360194], [1.267793066349834, -1.729135631925981], [1.52160462590541, -1.6058180990259283]], "right_eye": [[0.518558427067407, -1.0264891222070924], [0.7060464992319005, -1.1863772333365346], [0.9896109679491686, -1.2211536881270564], [1.1803284623036239, -1.0971185058514568], [0.9924815654513568, -0.9687774273225748], [0.7716523372474355, -0.9662656545081602]]}], "embedding": [[-0.08962253481149673, 0.06499455124139786, 0.09797580540180206, -0.042404402047395706, -0.12405811250209808, -0.000537666492164135, 0.01595873385667801, -0.1554691195487976, 0.10437415540218353, -0.017092648893594742, 0.21418344974517822, 0.046996355056762695, -0.22403258085250854, -0.03152540326118469, -0.053176648914813995, 0.09091798216104507, -0.13111738860607147, -0.2156676948070526, -0.05397864431142807, 0.028220195323228836, -0.04247418791055679, -0.08621127903461456, 0.03079766407608986, 0.06984692811965942, -0.05428285151720047, -0.3316943347454071, -0.03004183992743492, 0.02602316252887249, -0.03941377252340317, -0.005190953612327576, 0.02425435557961464, 0.1735847294330597, -0.245490163564682, 0.023651257157325745, 0.0037093348801136017, 0.11417593061923981, -0.03611208498477936, -0.0650218054652214, 0.164066344499588, -0.021453460678458214, -0.26186564564704895, 0.0001644771546125412, 0.13156962394714355, 0.28404465317726135, 0.2909180521965027, -0.010310924611985683, 0.034811291843652725, -0.03900257870554924, 0.11591792851686478, -0.33343401551246643, 0.1093052476644516, 0.1834886372089386, 0.06376679986715317, 0.03107496351003647, 0.0402776300907135, -0.26271480321884155, -0.026141416281461716, 0.08525674790143967, -0.07848313450813293, 0.06701378524303436, 0.03128430247306824, -0.07188189029693604, 0.027776341885328293, -0.17531916499137878, 0.24253006279468536, 0.15941961109638214, -0.15743452310562134, -0.11056838929653168, 0.18404853343963623, -0.13992197811603546, -0.06314583867788315, 0.04992080479860306, -0.17904861271381378, -0.17920756340026855, -0.30958470702171326, 0.033962443470954895, 0.42143145203590393, 0.12545283138751984, -0.1548689901828766, 0.04625428467988968, -0.11441478133201599, 0.011444555595517159, -0.03050834685564041, 0.16128617525100708, -0.012323068454861641, -0.0007503218948841095, -0.13860535621643066, -0.027740858495235443, 0.2601546049118042, 0.05644078180193901, -0.07280320674180984, 0.23895694315433502, -0.022577796131372452, -0.04525196552276611, 0.02198171243071556, 0.09797503054141998, -0.04887095093727112, 0.020524578168988228, -0.263597309589386, -0.004437614232301712, -0.16127648949623108, -0.1000889241695404, -0.036705419421195984, 0.12288464605808258, -0.21033138036727905, 0.13733695447444916, 0.02115507796406746, 0.09518742561340332, -0.010958727449178696, -0.04423810541629791, -0.030817903578281403, -0.002652931958436966, 0.08285142481327057, -0.30644574761390686, 0.24399037659168243, 0.11717596650123596, 0.12626932561397552, 0.15926656126976013, 0.06100413203239441, 0.08702360093593597, 0.03971355780959129, -0.06078920513391495, -0.10524231195449829, -0.04627075791358948, -0.02379271760582924, -0.06746115535497665, 0.014194912277162075, 0.14781403541564941]], "url": "http://i.imgur.com/WGYdsIP.jpg"},
"000143": {"url": "http://i.imgur.com/WQiKhs8.jpg", "landmarks": [{"right_eyebrow": [[0.2596158847545118, -1.5307652891957189], [0.6159579705289753, -1.6517645576442719], [1.0027162664048572, -1.6539276665049107], [1.36038949609356, -1.5369218297990752], [1.6294763833064863, -1.3004142615482055]], "right_eye": [[0.5002832777373791, -1.0560862228011805], [0.7374564179453683, -1.2061705574369126], [0.9754615230997571, -1.207501701351152], [1.1843815620669667, -1.0896638996989167], [0.9764598810354365, -1.0289978724853603], [0.7384547758810477, -1.027666728571121]], "transform": {"angle": 0.005592863371142381, "center": [125.98611111111111, 167.40277777777777], "scale": 33.61219867386479}, "left_eye": [[-1.1953367034983609, -1.016851184267927], [-0.9877478084453903, -1.137018487770081], [-0.7499090962802815, -1.1681002698286187], [-0.5112384191687732, -1.0504288611656638], [-0.7489107383446021, -0.9895964409628272], [-0.9869158434989909, -0.988265297048588]], "nose_tip": [[-0.4455806022768195, 0.050011964194824586], [-0.2964946255767667, 0.10868127553702225], [-0.08790737258811672, 0.1670178009006601], [0.12001430844341365, 0.10635177368710357], [0.3277695964856641, 0.015935108329248444]], "chin": [[-1.7596004703043548, -0.8351858886058173], [-1.697436906187279, -0.35950846427559974], [-1.605689096915185, 0.0862519289210395], [-1.543691925787389, 0.5321787151069586], [-1.4519441165152946, 0.9779391083035979], [-1.2413601476552858, 1.393283291398819], [-0.9121064121966422, 1.7484606262483229], [-0.5238505794172414, 2.0140532606863712], [-0.017590551996325643, 2.100476494301509], [0.48783751047819063, 2.038146537195153], [0.9626829698620089, 1.8272297823565848], [1.3477773358450915, 1.52756029205296], [1.6431206084274386, 1.1391380662842792], [1.8191285424540315, 0.6918801361841209], [1.905551776069169, 0.18562010876320503], [1.9622243715400078, -0.3204735256684309], [2.018730574021567, -0.8563177982443654]], "bottom_lip": [[0.8664425498793571, 0.5782021592638835], [0.5405166742063117, 0.8180375873003511], [0.21375883358686687, 0.9091198246153259], [-0.024079878578241967, 0.9402016066738638], [-0.2620849837326307, 0.941532750588103], [-0.5301735130098778, 0.883529011203025], [-0.8288446453778232, 0.6769384740857338], [-0.709675699811349, 0.7060235402729129], [-0.26308334166831016, 0.7630289217223114], [-0.025078236513921402, 0.7616977778080721], [0.21276047565118744, 0.7306159957495344], [0.7476063902914425, 0.6086183693653017]], "nose_bridge": [[-0.09539505710571247, -1.1717609155927766], [-0.09356473422363351, -0.844503896005492], [-0.12148504948585312, -0.5170804834289277], [-0.14923897175879286, -0.15990643270806465]], "left_eyebrow": [[-1.523758474010605, -1.2232753283959383], [-1.376502820192631, -1.4918630366410253], [-1.049911372562466, -1.6126959121002988], [-0.7228207459644616, -1.6442768731266761], [-0.3947317614307774, -1.4973540052872623]], "top_lip": [[-0.8288446453778232, 0.6769384740857338], [-0.5318374429026769, 0.586022629760039], [-0.2644144855825494, 0.5250238165679226], [-0.055993625583179336, 0.553609703787262], [0.1816786935926496, 0.4927772835844255], [0.5091021061692141, 0.5206975988466451], [0.8664425498793571, 0.5782021592638835], [0.7476063902914425, 0.6086183693653017], [0.18234426554976924, 0.6117798361616199], [-0.05549444661533962, 0.6428616182201577], [-0.26374891362542974, 0.644026369145117], [-0.709675699811349, 0.7060235402729129]]}], "embedding": [[-0.03941347822546959, 0.20887430012226105, 0.0893942192196846, 0.01016324758529663, -0.1646614968776703, -0.013185029849410057, -0.030245188623666763, -0.056578367948532104, 0.11888111382722855, -0.07804665714502335, 0.18469929695129395, 0.09066189080476761, -0.21345891058444977, -0.110335573554039, 0.010735426098108292, 0.08381235599517822, -0.10234344005584717, -0.1985439956188202, -0.14897160232067108, -0.04485117644071579, -0.029796622693538666, -0.004573201760649681, -0.015714723616838455, -0.006041709333658218, -0.14862945675849915, -0.27977868914604187, -0.03439117223024368, 0.0022727474570274353, 0.08772550523281097, -0.11666195094585419, -0.004712379537522793, 0.08673322945833206, -0.18641969561576843, -0.06263606250286102, 0.005249146372079849, 0.10768701881170273, -0.10007334500551224, -0.034835685044527054, 0.19557052850723267, -0.055949993431568146, -0.19345957040786743, 0.14509768784046173, 0.017028015106916428, 0.29305708408355713, 0.23729552328586578, -0.03229810297489166, 0.11167753487825394, -0.027107657864689827, 0.1596737504005432, -0.3106238543987274, 0.01377945952117443, 0.19355744123458862, 0.16416475176811218, 0.09944530576467514, 0.005856976844370365, -0.19370949268341064, 0.054242365062236786, 0.14180061221122742, -0.19457393884658813, 0.09735937416553497, 0.08401007205247879, -0.1697186827659607, -0.04346390441060066, 0.028479596599936485, 0.1573210507631302, 0.06571099162101746, -0.10969389975070953, -0.16563765704631805, 0.1618729531764984, -0.2052089273929596, 0.02973470836877823, 0.1897546499967575, -0.06623679399490356, -0.15083155035972595, -0.22816064953804016, 0.08451232314109802, 0.4924466609954834, 0.19149169325828552, -0.16061678528785706, -0.0148695670068264, -0.11859206110239029, 0.019252000376582146, -0.026936044916510582, 0.02675594948232174, -0.13686510920524597, -0.10050496459007263, -0.21136680245399475, 0.08833018690347672, 0.27149343490600586, 0.04132813215255737, -0.030977368354797363, 0.20743508636951447, 0.1973043531179428, 0.04407621547579765, 0.01629025489091873, 0.05306774377822876, -0.0632089152932167, -0.05370078235864639, -0.0655636340379715, 0.06820861995220184, -0.03952950984239578, -0.1859074831008911, -0.04538796469569206, 0.0831180065870285, -0.11507292091846466, 0.2865014374256134, -0.021542910486459732, 0.07561613619327545, -0.05007024481892586, 0.022253265604376793, -0.011590603739023209, 0.012093622237443924, 0.1309276968240738, -0.2870135009288788, 0.20093731582164764, 0.18942412734031677, 0.03922078385949135, 0.12726281583309174, 0.05033612996339798, 0.06844085454940796, -0.014188958331942558, -0.08975347131490707, -0.10011966526508331, -0.15604320168495178, -0.04419830068945885, -0.11488939821720123, 0.08521436154842377, 0.0680648535490036]]},
"000145": {"embedding": [[-0.13609786331653595, 0.07146632671356201, 0.07006645202636719, -0.05749241262674332, -0.13690738379955292, 0.0697360560297966, 0.022858180105686188, -0.07236944139003754, 0.22936125099658966, -0.18600189685821533, 0.1687726378440857, -0.07743410766124725, -0.24012407660484314, 0.09343622624874115, -0.08268790692090988, 0.17309726774692535, -0.2073633223772049, -0.12478789687156677, -0.04282868653535843, -0.14204120635986328, -0.005576539784669876, -0.005664527416229248, 0.011061452329158783, 0.08399607241153717, -0.22615507245063782, -0.29183629155158997, -0.018313532695174217, -0.0338243693113327, -0.019311267882585526, -0.04556640610098839, -0.01564977318048477, 0.0661439374089241, -0.1292077749967575, 0.11709777265787125, 0.040587928146123886, 0.1438334733247757, -0.12701688706874847, -0.10133863240480423, 0.14887669682502747, -0.02989533171057701, -0.2408309131860733, 0.019192101433873177, 0.058221351355314255, 0.2598190903663635, 0.2496940791606903, -0.039414212107658386, -0.0324598029255867, -0.10006342828273773, 0.1920274794101715, -0.3433968126773834, 0.04681634157896042, 0.19564947485923767, 0.05347444489598274, 0.03463752195239067, 0.15536586940288544, -0.10337510704994202, -0.06310542672872543, 0.20324088633060455, -0.055461253970861435, 0.038146816194057465, 0.0695231631398201, -0.03095121495425701, 0.03851591423153877, -0.15586507320404053, 0.14730292558670044, 0.10471785068511963, -0.20906655490398407, -0.11072031408548355, 0.16638076305389404, -0.17462988197803497, -0.02216612547636032, 0.129192054271698, -0.057485856115818024, -0.3175604045391083, -0.17038074135780334, 0.08466638624668121, 0.4120922088623047, 0.2672223150730133, -0.0757608413696289, 0.030732065439224243, -0.04578299820423126, 0.010615481063723564, 0.021297376602888107, 0.1609053760766983, -0.06777914613485336, -0.040895383805036545, -0.07543299347162247, 0.021519318222999573, 0.21405194699764252, -0.03308243677020073, -0.026570484042167664, 0.29435208439826965, -0.027594424784183502, -0.06287764012813568, -0.05932862311601639, 0.04489883407950401, -0.19871032238006592, 0.03344566375017166, -0.13786156475543976, -0.08862386643886566, 0.022180184721946716, -0.09035733342170715, 0.002198224887251854, 0.08849412202835083, -0.23356877267360687, 0.20985250174999237, -0.09408824145793915, 0.016979288309812546, 0.029588915407657623, 0.006489969789981842, -0.07614897191524506, 0.0670052319765091, 0.14311149716377258, -0.3542307913303375, 0.11038090288639069, 0.13321898877620697, 0.06787879765033722, 0.19183039665222168, 0.10311819612979889, 0.031194603070616722, 0.08300242573022842, -0.04806028679013252, -0.10570941865444183, -0.08322788774967194, 0.013472499325871468, -0.06878937035799026, 0.013903344050049782, 0.012540935538709164]], "landmarks": [{"chin": [[-2.097759095267075, -0.9931091229297848], [-2.081852944435977, -0.431817149100521], [-2.035011423799178, 0.0711824705874837], [-1.9586658875447345, 0.5748977673695171], [-1.7340845961080429, 1.0526874340040502], [-1.389340210918689, 1.4448277621617667], [-0.9841564403059897, 1.7793914132722526], [-0.5178176071759164, 2.026874371717864], [0.011107642659588482, 2.128268606263313], [0.4565305853003627, 2.020987700203168], [0.7896628822227911, 1.6748119608257568], [1.094722517715633, 1.2689125131190289], [1.340774121973187, 0.8615817112242435], [1.5285333720894816, 0.42331553952375667], [1.5989922368292295, -0.0473173561704891], [1.6104430703336894, -0.5193816060527923], [1.5621701955088323, -0.963373194505509]], "bottom_lip": [[0.8780136743132573, 0.46657867469041236], [0.6881073929148762, 0.993356893243831], [0.38662614289217806, 1.2517362628623392], [0.06065061691003711, 1.3028718460633109], [-0.2631778777900176, 1.2654953824113508], [-0.7007283723964758, 1.0482321166774122], [-1.041894372115686, 0.5085717104314761], [-0.92387830964511, 0.5114344188075911], [-0.25745246103778774, 1.0294632574701994], [0.06637603366226702, 1.0668397211221594], [0.392351559644408, 1.0157041379211877], [0.7887859503662967, 0.4939356590259701]], "top_lip": [[-1.041894372115686, 0.5085717104314761], [-0.6252597679985268, 0.3710711116596587], [-0.2122035493515115, 0.38109059097606107], [0.11090926825451448, 0.4479710702456652], [0.3778767630013675, 0.39540413285663584], [0.7031366118894797, 0.37377256527330804], [0.8780136743132573, 0.46657867469041236], [0.7887859503662967, 0.4939356590259701], [0.37501405462525256, 0.5134201953272116], [0.07782686716672685, 0.5947754712398562], [-0.2157819348216552, 0.5286106690642808], [-0.92387830964511, 0.5114344188075911]], "right_eyebrow": [[0.5381177740196389, -1.3424700802082425], [0.7762969302428767, -1.4252567103089442], [0.9849720708484706, -1.5087590175036751], [1.221719872883651, -1.5325376163690891], [1.4261009509250726, -1.439015829857956]], "transform": {"center": [122.875, 165.91666666666666], "scale": 33.88372427631492, "angle": -0.02425218264945874}, "nose_bridge": [[0.17762849276165285, -1.0855220647777917], [0.19854438325095194, -0.7307582002720356], [0.248964289357895, -0.37527865867225063], [0.2698801798471941, -0.020514794166494432]], "left_eye": [[-1.1219795486027386, -1.0580038256797681], [-0.9133044079971445, -1.1415061328744989], [-0.677272283055993, -1.135780716122269], [-0.4728912050145716, -1.042258929611136], [-0.680134991432108, -1.017764653651693], [-0.8866631007556156, -1.0227743933098943]], "left_eyebrow": [[-1.5566673348330817, -1.393283153884283], [-1.2580487931864985, -1.5336464610322154], [-0.9032849286807423, -1.5545623515215143], [-0.5794564339806875, -1.5171858878695543], [-0.25777497056271903, -1.3912973773646622]], "right_eye": [[0.5302453259853228, -1.017925908414159], [0.7396361436849453, -1.1309322312265337], [0.9468799301024818, -1.1554265071859766], [1.1217569925262592, -1.062620397768872], [0.9440172217263669, -1.0374104447154004], [0.7374891124028592, -1.0424201843736016]], "nose_tip": [[-0.20504677841122412, 0.08605043479962156], [-0.0006657003698026737, 0.17957222131075457], [0.20371537767161876, 0.27309400782188764], [0.3828865026595687, 0.18887602353312818], [0.5037652735062594, 0.07372266943866733]]}], "url": "http://i.imgur.com/DWJDawu.jpg"},
"000146": {"landmarks": [{"bottom_lip": [[0.5358730454964511, 0.6356651204123834], [0.5133786537274887, 0.8985336397624883], [0.3979321651444774, 1.0872496323617062], [0.26368610649830454, 1.1088610013959883], [0.09939328190448889, 1.0948020065403867], [-0.2536155352885446, 0.9652965231017737], [-0.652658889521262, 0.6001574872895785], [-0.5212246298462095, 0.6114046831740597], [0.14912264064997394, 0.9004624159989282], [0.3162272642149099, 0.8816628459357665], [0.4204265569134399, 0.8243811130116012], [0.5030144805776879, 0.632853321441263]], "nose_tip": [[0.11240652325833139, 0.16913859087277835], [0.33679287974743266, 0.2545383135081468], [0.5010857043412484, 0.26859730836374834], [0.6710021268773045, 0.21693917338182367], [0.7780132185469549, 0.12679887553889524]], "nose_bridge": [[0.41359447470236177, -1.0297575172947355], [0.5525811085560945, -0.7199714381702659], [0.6587091774910643, -0.41299715801691644], [0.7976958113447972, -0.10321107889244667]], "left_eye": [[-0.9119953179326445, -1.0107952164644955], [-0.6378796026980584, -1.1197350843705856], [-0.4050578492955962, -1.1329110564915064], [-0.2520122205862617, -0.9874178019608524], [-0.4219286431223181, -0.9357596669789277], [-0.6547503965247803, -0.9225836948580067]], "top_lip": [[-0.652658889521262, 0.6001574872895785], [-0.14853321985533394, 0.5109002121813305], [0.2485813581409439, 0.5117832349160112], [0.41287418273475956, 0.5258422297716128], [0.5142616764621692, 0.5014190617662105], [0.6100255722473383, 0.5427130235983346], [0.5358730454964511, 0.6356651204123834], [0.5030144805776879, 0.632853321441263], [0.47015591565892495, 0.6300415224701428], [0.3687684219315152, 0.6544646904755449], [0.20447559733769954, 0.6404056956199433], [-0.5212246298462095, 0.6114046831740597]], "chin": [[-2.823415681163147, -1.1081624269519474], [-2.8740280626433123, -0.5167082584142111], [-2.861735113257072, 0.11322807298452897], [-2.6795257413347757, 0.6915062694013443], [-2.324588147905302, 1.185267765917472], [-1.794110533997532, 1.5616539976141486], [-1.1894803933388751, 1.8450881324967765], [-0.5764148557668568, 2.029946572623115], [-0.015007453176763275, 2.0448885902133966], [0.33044898983758986, 1.8758551904120213], [0.4655780712184433, 1.4571292433814615], [0.5678485876805336, 1.0355914973797815], [0.7001658700902669, 0.649724115267985], [0.8625299184476427, 0.2995270970460718], [1.0248939668050185, -0.05066992117584136], [0.9628716586732933, -0.486266662033123], [0.8623671876805643, -0.8589580720239987]], "transform": {"center": [112.16666666666667, 164.18055555555554], "scale": 30.322646100107185, "angle": -0.08536482509875899}, "right_eye": [[0.479311604539888, -1.0241339193524948], [0.6248048590705422, -1.1771795480618292], [0.791909482635478, -1.195979118124991], [0.8792379815072863, -1.0561094615365776], [0.8078972537275193, -0.9960159296412917], [0.6407926301625834, -0.9772163595781302]], "right_eyebrow": [[0.6060052890073805, -1.3442841716267653], [0.7214517775903918, -1.5330001642259832], [0.8613214341788052, -1.620328663097791], [0.995567492824978, -1.6419400321320732], [1.0913313886101472, -1.600646070299949]], "left_eyebrow": [[-1.3767558020028885, -1.3815578502189316], [-0.998440794069772, -1.547779451049187], [-0.5957026181312537, -1.6126135581520327], [-0.2042116380772164, -1.5460134055798254], [0.18165574403458018, -1.4136961231700924]]}], "embedding": [[-0.07357845455408096, -0.005288461223244667, -0.033877357840538025, -0.08379774540662766, -0.10117332637310028, -0.022073926404118538, -0.06504204124212265, -0.08325573801994
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment