Skip to content

Instantly share code, notes, and snippets.

@EmilyAShaw
Forked from dribnet/.block
Created August 6, 2018 01:44
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 EmilyAShaw/8afe6ff166c147c1dbd50cf31abd8e31 to your computer and use it in GitHub Desktop.
Save EmilyAShaw/8afe6ff166c147c1dbd50cf31abd8e31 to your computer and use it in GitHub Desktop.
PS2 MDDN 342 2018
license: mit

PS2 MDDN 342 2018

hey there! I was unable to add my readmes' using git checkout (it is very late at night), so I have added them all here. sorry about this! :) they go in order from most recent - oldest and there are 6 entries for the 6 purview holder things.)

##Seccond round of testing - FINAL

this is my final: here are my official parameters:

Hair color --> opacity of the ears face width--> length of the whiskers gender--> fluffy for boys, sharp and angular for the girls eye color --> eye color skin color --> deepness of skin color

some things I had to change from the last round of training:

- reduced the number of eye colors to choose from, as the AI can barely see the difference between two.
- made the fur correspond to the skin color of the person I was testing, because hair was very iffy in terms of the AI learning how to do that to.
- opacity of the ears directly corresponds to the darkness of the hair now. 

Some aestheitc changes I made:

I made added shading detail in the female cats, making them look a little 3D and angular. I could not find a way to do this super nicely for the men.

Choice in images:

All three have a different narrative, and are not related in any way

Crazy cat people --> this one is relativly self explanatory, crazy cat people wearing crazy cat mask faces! Kardashians --> pussy power, powerfull women, enough said. Past US presidents --> it'd be nice to view the past presidents as nice fluffy aproachable people rather than big scary men in suits. It represents that everyone has a soft side.

My overall thoughts on the final product:

I do like it, I just wish I had allowed myself more time to work out the kinks in the design and the testing. As I am a perfectionist this is not enough for me, but I think it is adequate/pretty good for the time contraints I have had thoughout project 2 (from other subject, asignments, and work). I like my ps1 better, and I think the two link together well.

##First Round of Training:

Things I have trained:

hair color --> changes the color of the cats fur (i.e. people with dark hair will have black or brown - people with red hair have pink)

Face width --> the length of the cats whiskers (i.e. much like in nature the wider the cat the wider the whiskers).

Gender --> People who present as mascualine become cute and fluffy cats

Facial Hair --> men with facial hair have darker ear inners/eat opacity

Eye color --> I am training at the moment to blue, green, brown, and dark eye colors. This is in a very 'beta' stage. i.e is not working so well. In my next iteration I will definitly be changing the colors to more like: 'light, medium, and dark' to try and confuse the AI a little bit less

The other thing which is currently in beta is the hair color. As kim kardashian certainly isnt ginger - but the Ai believes she is. I will likely be changing and training further.

If I have time/ mad passion I will defintily add some more sliders which can be further customisable to the Individual which is mapped.

Choice in images:

All three have a different narrative, and are not related in any way

Crazy cat people --> this one is relativly self explanatory, crazy cat people wearing crazy cat mask faces! Kardashians --> pussy power, powerfull women, enough said. Past US presidents --> it'd be nice to view the past presidents as nice fluffy aproachable people rather than big scary men in suits. It represents that everyone has a soft side.

##fourth entry:

I am experiementing with testing today, I was having some issues with getting the testing to work on the images I had selected. They would train fine, and the quiz would be fine, but they would reset to the default face and be all the same in the faces section. It turns out there was an issue with merging part three. Tom fixed it for me.

The mappings I have now are: tilt, character type (the men are fluffy), whisker length, color, ear opacity, eye color. I have changed the color from black and white to natural hair colors, in order to have some diversity when mapping hair color. I am not sure how I feel about it though.

##Third Entry:

In order to make my mak more mask like, I deleted every second vertice from the chin mapping. This created a more structured look which I feel made it look more mask like. This also got rid of the annoying chin point. In addition to this, I added names to my sliders. I have tilt, whiskers and mouth, gender, and glasses. I ended up getting rid of the mouth, and replacing it with a for loop of just the top lip. This makes them look a little creepy cat/human like, which I am pleased with. I have not yet linked the sliders but I will asap.

The other thing I did was experiment with pictures, I added the kardashians in which I like, but I will probably revert back to the origional image for tersting purposes. Soley becaue the kardashian picture is far away, and harder for me to see.

##Second Entry:

I decided to go with a a geometric theme, as I felt this would be easier to implement using the points given from the mapping. The only thing I do not like about this is that the chin is super long for a cat. I would prefer for it to look more like a mask rather than a weird cat face imposed on a human. I can also not nolonger like the mouth - as thr line does not line up with the nose (which I made using a for loop).

I also re made the eyes. I did this by using a for loop to circle around the points, and then I adjusted scale to make them big and exadgerated like cats eyes. The ears are based on the eyebrows. I like having almost everything mapped to the verticies as it looks more dynamic in relation to the face.

At this point, I only one slider, which is tilt at this point. And also whisker length/mouth length.

##First Entry:

Importing my values from ps1 into code for ps2. Have added in some aspects of my previous design, have not implemented the changes yet. I did have to hard code as the scale was different from ps1. I redid all my code.

/*
* FaceMap class - holds all informaiton about one mapped
* face and is able to draw itself.
*/
// other variables can be in here too
// these control the colors used
const bg_color = [225, 206, 187];
const fg_color = [151, 102, 52];
const stroke_color = [95, 52, 8];
function Face() {
// these are state variables for a face
// (your variables may be different)
this.tilt_value = 0;
this.eye_value = 2;
this.whisker_value = 1;
this.hue = 0;
this.face_opacity = 255;
this.fur_color = 2;
strokeJoin(ROUND);
colorMode(RGB);
/*
* 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.draw = function(positions) {
rotate(this.tilt_value);
// scale(0.8);
var r = random(240);
//rgb controling color of base face
var r = random(240);
//var g = random(100);
//var b = random(100);
let rb = 0;
let g = focusedRandom(200,255);
let b = focusedRandom(200,255);
if (this.fur_color <= 0){ //white
fill(255);
}
if (this.fur_color == 1){
fill(225);
let rb = 10;
}
if (this.fur_color == 2){
fill(150);
}
if (this.fur_color == 3){
fill(75);
}
if (this.fur_color == 4){ //black
fill(25);
}
var eye1_pos = average_point(positions.left_eye);
var eye2_pos = average_point(positions.right_eye);
let face0 = positions.chin[0];
let face1 = positions.chin[1];
let face2 = positions.chin[2];
let face3 = positions.chin[3];
let face4 = positions.chin[4];
let face5 = positions.chin[5];
let face6 = positions.chin[6];
let face7 = positions.chin[7];
let face8 = positions.chin[8];
let face9 = positions.chin[9];
let face10 = positions.chin[10];
let face11 = positions.chin[11];
let face12 = positions.chin[12];
let face13 = positions.chin[13];
let face14 = positions.chin[14];
let face15 = positions.chin[15];
let face16 = positions.chin[16];
//left eyebrow
let eyebrow1 = positions.left_eyebrow[0];
let eyebrow2 = positions.left_eyebrow[1];
let eyebrow3 = positions.left_eyebrow[2];
let eyebrow4 = positions.left_eyebrow[3];
let eyebrow5 = positions.left_eyebrow[4];
//right eyebrow
let eyebrow6 = positions.right_eyebrow[0];
let eyebrow7 = positions.right_eyebrow[1];
let eyebrow8 = positions.right_eyebrow[2];
let eyebrow9 = positions.right_eyebrow[3];
let eyebrow10 = positions.right_eyebrow[4];
//eyes
let eye1 = positions.left_eye[0];
let eye2 = positions.left_eye[1];
let eye3 = positions.left_eye[2];
let eye4 = positions.left_eye[3];
let eye5 = positions.left_eye[4];
let eye6 = positions.left_eye[5];
let eye7 = positions.right_eye[0];
let eye8 = positions.right_eye[1];
let eye9 = positions.right_eye[2];
let eye10 = positions.right_eye[3];
let eye11 = positions.right_eye[4];
let eye12 = positions.right_eye[5];
let lip = positions.bottom_lip[1];
strokeWeight(0);
if (this.gender_value!= 2){
beginShape();
vertex(face0[0], face0[1]);
// vertex(face1[0], face1[1]);
vertex(face2[0], face2[1]);
// vertex(face3[0], face3[1]);
vertex(face4[0], face4[1]);
// vertex(face5[0], face5[1]);
vertex(face6[0], face6[1]);
//vertex(face7[0], face7[1]);
// vertex(face8[0], face8[1]);
// vertex(face9[0], face9[1]);
vertex(face10[0], face10[1]);
// vertex(face11[0], face11[1]);
vertex(face12[0], face12[1]);
//vertex(face13[0], face13[1]);
vertex(face14[0], face14[1]);
// vertex(face15[0], face15[1]);
vertex(face16[0], face16[1]);
vertex(eyebrow7[0],eyebrow7[1]);
vertex(eyebrow4[0],eyebrow4[1]);
endShape();
if (this.fur_color <= 0){ //white
fill(245);
}
if (this.fur_color == 1){
fill(215);
}
if (this.fur_color == 2){
fill(140);
}
if (this.fur_color == 3){
fill(65);
}
if (this.fur_color == 4){ //black
fill(15);
}
beginShape();
vertex(face6[0], face6[1]);
vertex(face10[0], face10[1]);
vertex(face12[0], face12[1]);
vertex(face14[0], face14[1]);
vertex(face16[0], face16[1]);
vertex(lip[0], lip[1]);
endShape();
}
if (this.gender_value == 2){
var fluffsize = 1.2;
scale(0.8);
ellipse(face0[0], face0[1],fluffsize,fluffsize);
ellipse(face2[0], face2[1],fluffsize,fluffsize);
ellipse(face4[0], face4[1],fluffsize,fluffsize);
ellipse(face6[0], face6[1] -0.2,fluffsize,fluffsize);
ellipse(face8[0], face8[1] -0.5,fluffsize,fluffsize);
ellipse(face10[0], face10[1] -0.2,fluffsize,fluffsize);
ellipse(face12[0], face12[1],fluffsize,fluffsize);
ellipse(face14[0], face14[1],fluffsize,fluffsize);
ellipse(face16[0], face16[1],fluffsize,fluffsize);
ellipse(eyebrow7[0],eyebrow7[1],fluffsize,fluffsize);
ellipse(eyebrow4[0],eyebrow4[1],fluffsize,fluffsize);
ellipse(eyebrow2[0],eyebrow2[1],fluffsize,fluffsize);
ellipse(eyebrow1[0],eyebrow1[1],fluffsize,fluffsize);
ellipse(eyebrow6[0],eyebrow6[1],fluffsize,fluffsize);
ellipse(eyebrow9[0],eyebrow9[1],fluffsize,fluffsize);
strokeWeight(0);
beginShape();
vertex(face0[0], face0[1]);
// vertex(face1[0], face1[1]);
vertex(face2[0], face2[1]);
// vertex(face3[0], face3[1]);
vertex(face4[0], face4[1]);
// vertex(face5[0], face5[1]);
vertex(face6[0], face6[1]);
//vertex(face7[0], face7[1]);
// vertex(face8[0], face8[1]);
// vertex(face9[0], face9[1]);
vertex(face10[0], face10[1]);
// vertex(face11[0], face11[1]);
vertex(face12[0], face12[1]);
//vertex(face13[0], face13[1]);
vertex(face14[0], face14[1]);
// vertex(face15[0], face15[1]);
vertex(face16[0], face16[1]);
vertex(eyebrow7[0],eyebrow7[1]);
vertex(eyebrow4[0],eyebrow4[1]);
endShape();
scale(1.3);
}
colorMode(RGB);
//ears
if (this.fur_color <= 0){ //white
stroke(255);
}
if (this.fur_color == 1){
stroke(225);
let rb = 10;
}
if (this.fur_color == 2){
stroke(150);
}
if (this.fur_color == 3){
stroke(75);
}
if (this.fur_color == 4){ //black
stroke(25);
}
//stroke(rb);
strokeWeight(0.03);
triangle(face0[0], face0[1], face0[0], -2, eyebrow4[0], eyebrow4[1]); //left, top, right
triangle(eyebrow7[0], eyebrow7[1], face16[0], -2,face16[0], face16[1]); //left, top, right
//inner ear
scale(0.9);
fill(rb, this.face_opacity);
triangle(face0[0], face0[1], face0[0], -1.9, eyebrow4[0], eyebrow4[1]); //left, top, right
triangle(eyebrow7[0], eyebrow7[1], face16[0], -1.9,face16[0], face16[1]); //left, top, right
scale(1.1);
strokeWeight(0);
//eye
var eyeshifty = 0.7;
var eyeshiftx = 0.4;
fill(0);
scale(1.7);
scale(1.1);
rotate(15);
//strokeWeight(0.1);
//BLACK
if (this.gender_value == 1){
beginShape();
vertex(eye1[0]+eyeshiftx, eye1[1]+eyeshifty);
vertex(eye2[0]+eyeshiftx, eye2[1]+eyeshifty);
vertex(eye3[0]+eyeshiftx, eye3[1]+eyeshifty);
vertex(eye4[0]+eyeshiftx,eye4[1]+eyeshifty);
vertex(eye5[0]+eyeshiftx,eye5[1]+0.1+eyeshifty);
vertex(eye6[0]+eyeshiftx,eye6[1]+0.1+eyeshifty);
endShape();
}
scale(0.9);
fill(255);
//LEFT EYE
beginShape();
vertex(eye1[0]+eyeshiftx, eye1[1]+eyeshifty);
vertex(eye2[0]+eyeshiftx, eye2[1]+eyeshifty);
vertex(eye3[0]+eyeshiftx, eye3[1]+eyeshifty);
vertex(eye4[0]+eyeshiftx,eye4[1]+eyeshifty);
vertex(eye5[0]+eyeshiftx,eye5[1]+0.1+eyeshifty);
vertex(eye6[0]+eyeshiftx,eye6[1]+0.1+eyeshifty);
endShape();
//BLACK BEHIND RIGHT EYE
if (this.eye_color <= 0){ //green
fill(65,178,231);
}
if (this.eye_color == 1 ){ //blue
fill(40, 9, 9);
}
if (this.eye_color ==2){ //brown
fill(90, 212,18);
}
ellipse(eye1_pos[0]+eyeshiftx +mouseX/15000, eye1_pos[1]+eyeshifty+0.04,0.1,0.22);
fill(0);
//ellipse(eye1_pos[0]+eyeshiftx +mouseX/15000, eye1_pos[1]+eyeshifty+0.04,0.05,0.2);
rotate(-15);
fill(255);
rotate(-15);
scale(1.1);
fill(0);
if (this.gender_value == 1){
beginShape();
vertex(eye7[0]-eyeshiftx/2, eye7[1]+eyeshifty);
vertex(eye8[0]-eyeshiftx/2, eye8[1]+eyeshifty);
vertex(eye9[0]-eyeshiftx/2, eye9[1]+eyeshifty);
vertex(eye10[0]-eyeshiftx/2,eye10[1]+eyeshifty);
vertex(eye11[0]-eyeshiftx/2,eye11[1]+0.1+eyeshifty);
vertex(eye12[0]-eyeshiftx/2,eye12[1]+0.1+eyeshifty);
endShape();
}
//WHITE PART OF RIGHT EYE
scale(0.9);
fill(255);
beginShape();
vertex(eye7[0]-eyeshiftx/2, eye7[1]+eyeshifty);
vertex(eye8[0]-eyeshiftx/2, eye8[1]+eyeshifty);
vertex(eye9[0]-eyeshiftx/2, eye9[1]+eyeshifty);
vertex(eye10[0]-eyeshiftx/2,eye10[1]+eyeshifty);
vertex(eye11[0]-eyeshiftx/2,eye11[1]+0.1+eyeshifty);
vertex(eye12[0]-eyeshiftx/2,eye12[1]+0.1+eyeshifty);
endShape();
if (this.eye_color <= 0){ //green
fill(65,178,231);
}
if (this.eye_color == 1 ){ //blue
fill(40, 9, 9);
}
if (this.eye_color ==2){ //brown
fill(90, 212,18);
}
ellipse(eye2_pos[0]-eyeshiftx/2 +mouseX/15000, eye2_pos[1]+eyeshifty+0.04,0.1,0.22);
fill(0);
//ellipse(eye2_pos[0]-eyeshiftx/2 +mouseX/15000, eye2_pos[1]+eyeshifty+0.04,0.05,0.2);
rotate(15);
scale(0.6);
if (this.fur_color <= 0){ //white
fill(255);
let rb = 255;
}
if (this.fur_color == 1){
fill(225);
let rb = 225;
}
if (this.fur_color == 2){
fill(150);let rb = 150;
}
if (this.fur_color == 3){
fill(75);let rb = 75;
}
if (this.fur_color == 4){ //black
fill(25);let rb = 25;
}
// head
strokeWeight(0);
//ellipse(0, 0, 3, 3); //cat base face
//noStroke();
//changes the color of the face attributes different to the face color
var noseCol;
if (rb > 150){
noseCol = rb - 55; //variation of the nose color, so that the color of the nose will never be the same as the fur
}
if (rb<150){
noseCol = rb +55;
}
fill(noseCol);
fill(r);
//ellipse(0, -0.7, 3, 2); //cat base face //second cat face
fill(noseCol);
stroke(noseCol);
let pos_nose2 = positions.nose_tip[2];
strokeWeight(0.03);
scale(0.7)
beginShape();
for(var i=0; i<positions.top_lip.length;i++) {
vertex(positions.top_lip[i][0], positions.top_lip[i][1]+0.4);
}
endShape(CLOSE);
beginShape();
endShape(CLOSE);
scale(1.3);
// mouth
strokeWeight(0.02);
fill(bg_color);
beginShape();
endShape();
fill(noseCol);
//whiskers
strokeWeight(0.03);
//right whiskers
line(1, 0.4, 0.5 + this.whisker_value/3, 0.4 ); //middle
line(1, 0.45, 0.5 + this.whisker_value/3, 0.55 ); //bottom
line(1, 0.35, 0.5 +this.whisker_value/3, 0.25 ); //top
//left
line(-1, 0.4, -0.5 - this.whisker_value/3, 0.4 ); //middle
line(-1, 0.45, -0.5 - this.whisker_value/3, 0.55 ); //bottom
line(-1, 0.35, -0.5 -this.whisker_value/3, 0.25 ); //top
strokeWeight(0.0);
fill(0);
//scaled down nose
scale(0.03);
fill(noseCol);
//triangle(-7.5,0,7.5,0,0,7.5);
scale(20);
//nose using for loop
scale(1.5);
beginShape();
//vertex(positions.nose_bridge[0][0], positions.nose_bridge[0][1]);
for(var i=0; i<positions.nose_tip.length;i++) {
vertex(positions.nose_tip[i][0], positions.nose_tip[i][1]);
//3
}
endShape(CLOSE);
// mouth
fill(bg_color);
//ellipse(0, 0.64, 1.36, 1.36 * 0.25 * this.whisker_value);
}
/* set internal properties based on list numbers 0-100 */
this.setProperties = function(settings) {
// print(settings);
this.tilt_value = map(settings[0], 0, 100, -30, 30);
this.gender_value = int(map(settings[1], 0, 100, 1, 2));
this.whisker_value = map(settings[2], 0, 100, 4, 8);
this.fur_color = int(map(settings[3], 0, 100, 0, 4));
this.face_opacity = map(settings[4], 0, 100, 10, 255);
this.eye_color = int(map(settings[5], 0, 100, 0, 2));
}
/* get internal properties as list of numbers 0-100 */
this.getProperties = function() {
properties = new Array(6);
properties[0] = map(this.tilt_value,-30,30,0,100);
properties[1] = map(this.gender_value, 1,2,0,100);
properties[2] = map(this.whisker_value,4,8,0,100);
properties[3] = map(this.fur_color,0,4,0,100);
properties[4] = map(this.face_opacity,10,255,0,100);
properties[5] = map(this.eye_color,0,2,0,100);
return properties;
}
}
// given an array of [x,y] points, 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="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/addons/p5.dom.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/seedrandom/2.4.3/seedrandom.min.js"></script>
<script src="https://d3js.org/d3-random.v1.min.js"></script>
<script src="z_clmtrackr.js"></script>
<script src="z_model_pca_20_svm.js"></script>
<script language="javascript" type="text/javascript" src="z_purview_helper.js"></script>
<script language="javascript" type="text/javascript" src="z_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="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>Tilt</td>
<td id="slider1Container"></td>
</tr>
<tr>
<td>Character Type/Gender</td>
<td id="slider2Container"></td>
</tr>
<tr>
<td>Whisker Length/ Face Wideness</td>
<td id="slider3Container"></td>
</tr>
<tr>
<td>Fur Color (Skin Color)</td>
<td id="slider4Container"></td>
</tr>
<tr>
<td>Ear Opacity (Hair Color) </td>
<td id="slider5Container"></td>
</tr>
<tr>
<td>Eye Color</td>
<td id="slider6Container"></td>
</tr>
<tr>
<td>setting 7</td>
<td id="slider7Container"></td>
</tr>
<tr>
<td>setting 8</td>
<td id="slider8Container"></td>
</tr>
<tr>
<td>setting 9</td>
<td id="slider9Container"></td>
</tr>
<tr>
<td>setting 10</td>
<td id="slider10Container"></td>
</tr>
<tr>
<td>setting 11</td>
<td id="slider11Container"></td>
</tr>
<tr>
<td>setting 12</td>
<td id="slider12Container"></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>Face Draw</td>
<td id="checkbox1Container"></td>
</tr>
<tr>
<td>Face Targets</td>
<td id="checkbox2Container"></td>
</tr>
<tr>
<td>Face Points</td>
<td id="checkbox3Container"></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;
}));
{
"commits": [
{
"sha": "e928842427adf3a91ea2c4f3a7cc13b19d093196",
"name": "final version"
},
{
"sha": "13a81dd0035c3cda3c76166e881f8c7d00e1531d",
"name": "extra_experiment"
},
{
"sha": "b8bdf6815874d5d14129b2f8b8d3bf0bdcaba568",
"name": "Iteration4"
},
{
"sha": "0c21b83bbb978e88ef6af94757fd52f5296c7d25",
"name": "Iteration3"
},
{
"sha": "d132abb4b6339012ec531f80451a2402365a9b98",
"name": "Iteration2"
},
{
"sha": "618b3b1db823dfdc53af05acfb597dd5bab203b8",
"name": "Iteration1"
}
]
}
[
{"url": "z_kardashian1.jpg", "embedding": [[-0.16793225705623627, 0.08055473119020462, 0.08281922340393066, -0.10524845123291016, -0.105770543217659, 0.03384159505367279, -0.12086394429206848, -0.07100124657154083, 0.25128525495529175, -0.11794719845056534, 0.19508683681488037, -0.01970561221241951, -0.22058320045471191, 0.12588439881801605, -0.09504880011081696, 0.0958661139011383, -0.23202702403068542, -0.06021376699209213, 0.01623459719121456, -0.08645172417163849, 0.11116175353527069, 0.018024520948529243, 0.042559124529361725, 0.14464171230793, -0.1469212770462036, -0.34416183829307556, -0.06599478423595428, -0.10974329710006714, -0.0045544905588030815, -0.12785889208316803, 0.04139413684606552, 0.01747347041964531, -0.2266358584165573, 0.04494653642177582, -0.06706102192401886, 0.15097041428089142, 0.022019250318408012, -0.12834376096725464, 0.062453415244817734, -0.03132109344005585, -0.22369790077209473, -0.09284581243991852, 0.09348946064710617, 0.1741899698972702, 0.19134221971035004, 0.06331267952919006, -4.483945667743683e-05, -0.11036122590303421, 0.1397116631269455, -0.24504603445529938, 0.030951015651226044, 0.1719505786895752, 0.016897540539503098, 0.01582769677042961, 0.13308513164520264, -0.20525404810905457, 0.06609676778316498, 0.04587250202894211, -0.10711026191711426, 0.01619536429643631, 0.07111665606498718, 0.04129110649228096, 0.08965899050235748, -0.0824197307229042, 0.2287391871213913, 0.1283685863018036, -0.09163936972618103, -0.12723340094089508, 0.18103869259357452, -0.17728908360004425, -0.059761568903923035, 0.14791452884674072, -0.1401270627975464, -0.23584944009780884, -0.2604738175868988, -0.03043927624821663, 0.38895779848098755, 0.17584621906280518, -0.04046221077442169, 0.10386420786380768, -0.08169907331466675, -0.05256421118974686, -0.03337375819683075, 0.17435286939144135, -0.05327889323234558, 0.090435691177845, -0.09980398416519165, 0.09450334310531616, 0.2237710803747177, 0.044373057782649994, 0.020984284579753876, 0.24328884482383728, -0.04941859096288681, -0.04002914950251579, 0.0025325166061520576, 0.09923472255468369, -0.2178543210029602, 0.020289994776248932, -0.15085867047309875, -0.0757114514708519, 0.0051518939435482025, 0.0249649565666914, -0.03854089230298996, 0.13162678480148315, -0.2548397183418274, 0.11729281395673752, -0.08236858248710632, -0.08135832101106644, -0.05082407966256142, -0.015303099527955055, -0.05511000007390976, 0.032999053597450256, 0.1818581372499466, -0.24306783080101013, 0.12355053424835205, 0.1246776133775711, 0.0954989567399025, 0.1638513058423996, 0.026877738535404205, 0.09534607827663422, 0.0025899726897478104, -0.06057260185480118, -0.1818879246711731, -0.040249038487672806, -0.03842684626579285, -0.135003924369812, 0.007792224176228046, 0.017247019335627556], [-0.09419669210910797, 0.0561102032661438, 0.006163004785776138, -0.09017303586006165, -0.09276817739009857, -0.0797944962978363, -0.0021202899515628815, -0.11712484806776047, 0.14513221383094788, -0.013864129781723022, 0.15967410802841187, -0.0583166740834713, -0.2780522406101227, -0.05718957632780075, -0.025770682841539383, 0.19268491864204407, -0.11222085356712341, -0.10474123060703278, -0.14788639545440674, -0.02931147813796997, 0.044764455407857895, -0.00822424702346325, 0.12432861328125, 0.1884872019290924, -0.10120443999767303, -0.34075927734375, 0.01822381280362606, -0.011979781091213226, -0.10292929410934448, -0.08374977856874466, -0.010836483910679817, 0.17240078747272491, -0.2561289072036743, -0.05786433070898056, 0.01986636221408844, 0.13137315213680267, -0.017057284712791443, -0.12747591733932495, 0.16556213796138763, -0.005605584010481834, -0.22883056104183197, -0.08132130652666092, 0.07994438707828522, 0.22203746438026428, 0.21335479617118835, 0.025856219232082367, 0.044952403753995895, -0.10861793905496597, 0.04865993931889534, -0.34166720509529114, 0.07372240722179413, 0.1081533133983612, -0.04029645770788193, 0.01942259818315506, 0.044970281422138214, -0.24991723895072937, 0.054446712136268616, 0.1423814594745636, -0.16676205396652222, -0.05583680793642998, -0.011311464011669159, -0.05528014898300171, -0.03168727084994316, -0.11780748516321182, 0.30611205101013184, 0.1869209110736847, -0.14142395555973053, -0.07352472841739655, 0.1409025937318802, -0.12702547013759613, -0.02672482840716839, 0.03995983675122261, -0.1099110096693039, -0.1973639279603958, -0.34184157848358154, -0.008125841617584229, 0.3059316873550415, 0.134722501039505, -0.23793640732765198, 0.014529034495353699, -0.13320288062095642, 0.048625580966472626, 0.06030656769871712, 0.12700556218624115, -0.007743731141090393, 0.0019990280270576477, -0.11649399995803833, 0.018244579434394836, 0.1654394119977951, -0.0032718880102038383, -0.0407550148665905, 0.3061704635620117, 0.05326748639345169, -0.07126849889755249, 0.02240017056465149, 0.07594433426856995, -0.12103308737277985, 0.04949795454740524, -0.1899266541004181, 0.004493305459618568, 0.04831141233444214, 0.020389797165989876, -0.006697675213217735, 0.14507871866226196, -0.2338789850473404, 0.08997594565153122, -0.010323822498321533, -0.03948259726166725, 0.047297120094299316, -0.08185665309429169, -0.06356819719076157, -0.11620433628559113, 0.06328073143959045, -0.2846783399581909, 0.15704873204231262, 0.17078815400600433, 0.047619033604860306, 0.19289395213127136, 0.016045425087213516, 0.1225438266992569, 0.054780393838882446, -0.0358763188123703, -0.15063239634037018, 0.022084247320890427, 0.14602184295654297, -0.022264676168560982, -0.001719391904771328, 0.07043962180614471], [-0.08158834278583527, 0.06697545200586319, 0.09625197947025299, -0.010931946337223053, -0.08496463298797607, -0.013261266052722931, 0.011327669024467468, -0.0753956064581871, 0.2960687279701233, -0.0647192895412445, 0.20080570876598358, 0.016709603369235992, -0.35409730672836304, 0.07417921721935272, -0.016245383769273758, 0.15343208611011505, -0.10261320322751999, -0.09292003512382507, -0.06838855147361755, 0.024108953773975372, 0.09447269886732101, 0.013490956276655197, 0.02900475263595581, 0.1228402629494667, -0.12436291575431824, -0.39063727855682373, -0.041905492544174194, -0.00023833289742469788, -0.05374220758676529, -0.0807059183716774, -0.054843343794345856, 0.08112587034702301, -0.22798758745193481, -0.050934553146362305, 0.05096857622265816, 0.13131260871887207, -0.02454886958003044, -0.1737833023071289, 0.10514648258686066, 0.009869996458292007, -0.31364408135414124, -0.08828579634428024, 0.03032948076725006, 0.1822219043970108, 0.19416004419326782, 0.027967188507318497, 0.060922835022211075, -0.1426696926355362, 0.02614305540919304, -0.2840130925178528, 0.07487806677818298, 0.1425938606262207, 0.0032386258244514465, 0.05774286016821861, 0.05936136096715927, -0.25905027985572815, -0.008221276104450226, 0.10977670550346375, -0.17694076895713806, -0.01811276376247406, 0.1286005973815918, -0.047500573098659515, 0.02823377214372158, -0.05775066465139389, 0.19801847636699677, 0.15795683860778809, -0.1293133795261383, -0.11255402863025665, 0.1738492101430893, -0.21771514415740967, 0.0012104259803891182, 0.07862506061792374, -0.12101916968822479, -0.2812454104423523, -0.2455425262451172, 0.02253027632832527, 0.4452842175960541, 0.20282047986984253, -0.16203367710113525, 0.007994644343852997, -0.12250050902366638, 0.07974483072757721, 0.09530313313007355, 0.12822766602039337, 0.03858239948749542, 0.04006382077932358, -0.08742568641901016, 0.038237057626247406, 0.2512611746788025, 0.04957430809736252, -0.042616672813892365, 0.2776600122451782, 0.0029533877968788147, -0.10235849022865295, 0.05225518345832825, 0.07914664596319199, -0.0649188831448555, 0.017875738441944122, -0.18118974566459656, -0.03770401328802109, -0.024949170649051666, -0.02266094833612442, 0.01725095510482788, 0.11644706130027771, -0.2404296100139618, 0.08962942659854889, 0.0065218983218073845, -0.04246622323989868, 0.07855188101530075, 0.001436418853700161, -0.1145547479391098, -0.07869363576173782, 0.12149050086736679, -0.3218362629413605, 0.20683175325393677, 0.13821423053741455, 0.05850941687822342, 0.18917366862297058, -0.03217781335115433, 0.16275900602340698, 0.06801876425743103, -0.11324302852153778, -0.10901059210300446, -0.05219103768467903, 0.04128646478056908, -0.004700623452663422, 0.08051374554634094, -0.009159257635474205], [-0.12897348403930664, 0.003972319886088371, 0.03277961537241936, -0.1153426542878151, -0.11837723106145859, -0.11714324355125427, -0.046302977949380875, -0.08810656517744064, 0.1797618865966797, -0.12194579094648361, 0.1627306044101715, -0.011705059558153152, -0.25566190481185913, 0.053313951939344406, -0.20059382915496826, 0.16825658082962036, -0.1649792641401291, -0.1773432195186615, -0.06840043514966965, -0.04335244372487068, 0.07362710684537888, -0.000460159033536911, 0.08612099289894104, 0.15801307559013367, -0.08652371168136597, -0.34719550609588623, -0.10401302576065063, -0.09095525741577148, -0.019219134002923965, -0.05994781106710434, 0.013272144831717014, 0.06142522394657135, -0.2700802683830261, -0.05107937008142471, 0.007691472768783569, 0.10538250207901001, -0.01970095746219158, -0.14911650121212006, 0.20597422122955322, 0.023751579225063324, -0.2587689459323883, -0.09730014204978943, 0.12011987715959549, 0.29387012124061584, 0.2062155157327652, 0.004518916830420494, 0.07521279156208038, -0.10586561262607574, 0.06933845579624176, -0.299590528011322, 0.0980822890996933, 0.13673219084739685, 0.08675608038902283, 0.0556807816028595, 0.04246542602777481, -0.16244590282440186, 0.10358290374279022, 0.12971940636634827, -0.17188869416713715, 0.0313723161816597, 0.09943398833274841, -0.013712293468415737, 0.03213713318109512, -0.05355997011065483, 0.32239481806755066, 0.1303200125694275, -0.1338033378124237, -0.0745009258389473, 0.28820016980171204, -0.22725439071655273, -0.013541938737034798, 0.03869359940290451, -0.1289697289466858, -0.20768186450004578, -0.25790342688560486, -0.019697632640600204, 0.4425893723964691, 0.23563523590564728, -0.05524231120944023, 0.13491056859493256, -0.13383640348911285, 0.003603290766477585, -0.01036099623888731, 0.15779320895671844, -0.09809887409210205, 0.1659112274646759, -0.08642736077308655, 0.11962580680847168, 0.2317904680967331, 0.02782527171075344, -0.047330714762210846, 0.2536236345767975, 0.025801323354244232, -0.05245937034487724, 0.12293003499507904, 0.04511180520057678, -0.11723346263170242, -0.02673247829079628, -0.22284500300884247, 0.02515994757413864, -0.04218510538339615, -0.014966273680329323, 0.008921001106500626, 0.10161478072404861, -0.13410264253616333, 0.07748299837112427, -0.0644787847995758, -0.08394356071949005, -0.08013783395290375, -0.005240181460976601, -0.08605292439460754, -0.09521272778511047, 0.10168497264385223, -0.17749899625778198, 0.16032695770263672, 0.11369632184505463, 0.1238480806350708, 0.18136081099510193, 0.08431991934776306, 0.08353632688522339, 0.04792821407318115, -0.11231118440628052, -0.14950178563594818, -0.020462680608034134, 0.08351283520460129, -0.0646771490573883, 0.16327252984046936, 0.06350112706422806], [-0.1778099536895752, 0.062316183000802994, 0.11604177951812744, -0.15651404857635498, -0.08144696801900864, -0.03527393192052841, -0.028904534876346588, -0.12338791787624359, 0.21727196872234344, -0.12358278036117554, 0.16779480874538422, -0.1437568962574005, -0.2967870533466339, 0.020032627508044243, -0.04843423515558243, 0.20199932157993317, -0.21670711040496826, -0.14863990247249603, -0.10022042691707611, -0.015347309410572052, 0.08681110292673111, 0.19144929945468903, -0.0037549398839473724, 0.11568275094032288, -0.12579235434532166, -0.3308523893356323, -0.058980248868465424, -0.04671959951519966, -0.025631383061408997, -0.13899214565753937, -0.017752720043063164, 0.03726102039217949, -0.2017621099948883, 0.007561379112303257, 0.035950761288404465, 0.24794404208660126, -0.03302574157714844, -0.20317113399505615, 0.05767141655087471, 0.04961194097995758, -0.28759968280792236, -0.08301657438278198, 0.048546724021434784, 0.24968388676643372, 0.21740087866783142, -0.08804387599229813, -0.09811649471521378, -0.14550065994262695, 0.11725771427154541, -0.32311806082725525, -0.03698515146970749, 0.10916651785373688, -0.07988190650939941, 0.08704698085784912, 0.11849941313266754, -0.24220815300941467, 0.04263182356953621, 0.14754067361354828, -0.1862253099679947, -0.04317580908536911, 0.03658158704638481, -0.15513838827610016, 0.0531032495200634, -0.08557035773992538, 0.11351189017295837, 0.09123562276363373, -0.08279616385698318, -0.14522124826908112, 0.12180247157812119, -0.14390191435813904, -0.0012096557766199112, 0.11765642464160919, -0.11417151987552643, -0.19223810732364655, -0.27196213603019714, -0.027968090027570724, 0.42447614669799805, 0.0993945375084877, -0.14055201411247253, 0.08717399090528488, -0.022832507267594337, 0.025224022567272186, 0.08425940573215485, 0.12516139447689056, 0.008935343474149704, 0.12621194124221802, -0.14937558770179749, 0.11837083101272583, 0.16456671059131622, -0.06159589812159538, 0.048397041857242584, 0.2703934907913208, -0.07158499956130981, -0.0026368368417024612, 0.132486954331398, 0.03587089478969574, -0.13527582585811615, 0.01625024899840355, -0.18038922548294067, -0.062216319143772125, 0.05480293184518814, -0.08330435305833817, 0.017847338691353798, 0.08631454408168793, -0.13822436332702637, 0.11063782870769501, 0.07735427469015121, -0.08494385331869125, -0.01956392452120781, -0.09567154943943024, -0.043500833213329315, -0.0009198170155286789, 0.19588154554367065, -0.24205975234508514, 0.17165467143058777, 0.15152481198310852, 0.024518143385648727, 0.23163986206054688, 0.017703915014863014, 0.10357454419136047, -0.07404803484678268, -0.03918007016181946, -0.08385902643203735, 0.03051561862230301, 0.051620155572891235, 0.06790120154619217, 0.04722040146589279, -0.01110873557627201], [-0.14735132455825806, 0.054714031517505646, -0.012542877346277237, -0.07807992398738861, -0.03342707082629204, -0.05667990446090698, -0.027345528826117516, -0.10640185326337814, 0.1695835441350937, -0.10403916239738464, 0.16532912850379944, -0.04983178526163101, -0.2869335114955902, -0.06736791133880615, -0.059573497623205185, 0.18746550381183624, -0.2096540629863739, -0.15617799758911133, -0.03854181617498398, -0.0726456344127655, 0.15389198064804077, -0.005455488339066505, 0.04310475289821625, 0.22476039826869965, -0.1678456962108612, -0.2796974778175354, -0.057950329035520554, -0.13097459077835083, -0.10931136459112167, -0.09668643772602081, 0.08420208096504211, 0.04537539929151535, -0.20396272838115692, 0.04437203332781792, 0.0020248331129550934, 0.14528654515743256, 0.05851293355226517, -0.12858997285366058, 0.22413092851638794, 0.009322922676801682, -0.24609678983688354, -0.10019642114639282, 0.09308205544948578, 0.22655490040779114, 0.15795214474201202, -0.03225836902856827, -0.011023459956049919, -0.109096959233284, 0.1550554782152176, -0.2884916365146637, 0.023724164813756943, 0.2140631079673767, -0.038979422301054, 0.053819723427295685, 0.1502682864665985, -0.19614443182945251, 0.10224233567714691, 0.11577275395393372, -0.19093377888202667, -0.046060916036367416, -0.034426674246788025, -0.020326118916273117, 0.04468736797571182, -0.1100383847951889, 0.1705201268196106, 0.07707256078720093, -0.12841613590717316, -0.09638095647096634, 0.17340706288814545, -0.1791810542345047, -0.04511341452598572, 0.17092373967170715, -0.12212825566530228, -0.2618030309677124, -0.2934477627277374, -0.009953250177204609, 0.4220218360424042, 0.21748073399066925, -0.14893844723701477, 0.10224751383066177, -0.06589942425489426, -0.10031735152006149, 0.0639471635222435, 0.15046477317810059, 0.01974509283900261, 0.099721260368824, -0.11436359584331512, 0.09373936057090759, 0.15918698906898499, 0.04421818628907204, 0.02016277424991131, 0.29050809144973755, -0.017131149768829346, -0.0464119091629982, 0.05991370603442192, 0.08955548703670502, -0.14823509752750397, 0.02353200875222683, -0.15161864459514618, -0.038309335708618164, 0.038063593208789825, -0.03574630618095398, -0.013621080666780472, 0.048871174454689026, -0.2102826088666916, 0.06873225420713425, -0.012627510353922844, -0.11051531136035919, -0.13403868675231934, -0.02021525427699089, -0.12160013616085052, 0.04762840270996094, 0.1429455578327179, -0.2672691345214844, 0.1613340526819229, 0.12325605005025864, -0.0027592163532972336, 0.16807737946510315, 0.025205831974744797, 0.12020223587751389, -0.05701989680528641, -0.16077683866024017, -0.1398933231830597, -0.04920859634876251, 0.06292557716369629, -0.021400948986411095, 0.0836712121963501, -0.028454791754484177]], "landmarks": [{"chin": [[-0.740466416294899, -0.9331700095794025], [-0.7906067026154727, -0.558601868414345], [-0.747104953644782, -0.17149865566914402], [-0.6682108357169556, 0.18856890250568323], [-0.5664594204121365, 0.6152428414014012], [-0.46470800510731747, 1.0419167802971192], [-0.39417060156625316, 1.4644123619994562], [-0.288240829068053, 1.8598722891314197], [0.042578228753106295, 1.9994762535498762], [0.5275018339829527, 1.9372955643955745], [1.1041019630939768, 1.6649735072817513], [1.6224524258708724, 1.353080724017411], [2.1137672340773945, 1.0057955717959348], [2.4885827096156596, 0.5793689672734244], [2.657435174387784, 0.030051827105981477], [2.705609949298272, -0.5671927535987406], [2.75796308140214, -1.1956513460672178]], "left_eyebrow": [[-1.0211451877954845, -1.447342115162917], [-1.0398241279790958, -1.5451625076475626], [-0.9378253783010692, -1.5950554595949284], [-0.8171476884394312, -1.5471280190576493], [-0.6652559868140383, -1.4950222213269888]], "right_eyebrow": [[0.011130046191718118, -1.5633467790847586], [0.35251866418293404, -1.7400612894972307], [0.7438002341215162, -1.814777050231676], [1.1495823870503283, -1.760458406717721], [1.4720447304847253, -1.5584264187717547]], "nose_bridge": [[-0.4116128698838264, -1.0162424847006102], [-0.5158244653451474, -0.7124590814498245], [-0.6470717153768422, -0.44406804715617487], [-0.7824973226019181, -0.14446300109877042]], "nose_tip": [[-0.7888885255785936, 0.14064146196840388], [-0.6994248474807103, 0.1843905453123021], [-0.5475331458553174, 0.23649634304296263], [-0.31649999192889056, 0.17210280810536632], [-0.08546683800246353, 0.10770927316776994]], "left_eye": [[-0.8341084515861632, -0.945705081159546], [-0.7820026538555027, -1.0975967827849389], [-0.6217542378433476, -1.1079190085817876], [-0.4470052388409624, -0.9892068301302365], [-0.6114320120464986, -0.9476705925696326], [-0.7446447734882802, -0.9019559978156477]], "right_eye": [[0.3896292101769491, -1.0678536136848555], [0.535377043198874, -1.2072102437301047], [0.7622318399319199, -1.2403897669039463], [1.003587219655196, -1.1445348858293876], [0.7995897202991425, -1.0447489819346554], [0.5769132807594779, -1.0427834705245687]], "top_lip": [[-0.5915295635724234, 0.80252691198393], [-0.6684581700901632, 0.6651357933487674], [-0.5622810632187554, 0.5840288296376465], [-0.4374250161637362, 0.6007422584111711], [-0.2729982429581999, 0.5592060208505671], [0.09739154101347645, 0.6405603189348957], [0.49063862236214534, 0.7885209977401152], [0.36160421811374494, 0.8030215807303452], [-0.23981871978435837, 0.786060817583613], [-0.4000671357965135, 0.7963830433804621], [-0.49370917108777784, 0.7838479718003186], [-0.5291015400449137, 0.8108836263706923]], "bottom_lip": [[0.49063862236214534, 0.7885209977401152], [0.20332131351167665, 1.036020246066859], [-0.16510295904991296, 1.177342387522195], [-0.325351375062068, 1.187664613319044], [-0.4502074221170872, 1.1709511845455194], [-0.5625283975919629, 1.0605957204807308], [-0.5915295635724234, 0.80252691198393], [-0.5291015400449137, 0.8108836263706923], [-0.4666735165174042, 0.8192403407574547], [-0.341817469462385, 0.8359537695309792], [-0.21696142240736585, 0.8526671983045038], [0.36160421811374494, 0.8030215807303452]], "transform": {"center": [510.2361111111111, 201.25], "scale": 31.753661874471604, "angle": -0.1330705241858574}}, {"chin": [[-1.8591601679458507, -1.066407547653186], [-1.873992630738089, -0.5557423432721073], [-1.8472193680022369, -0.050775387913023745], [-1.7315364051882078, 0.48440079493015986], [-1.538340240339993, 0.9665747542012624], [-1.2317233969514965, 1.3484425153501978], [-0.8835008280349093, 1.724612027477138], [-0.4577650570841358, 2.047779316031997], [0.022690919812842714, 2.1515214789024117], [0.474655651599845, 2.047235014132373], [0.898129138276871, 1.7349199217218818], [1.268600401381816, 1.3450916272772038], [1.59746593895867, 0.960961581854521], [1.742813827357176, 0.4748073559355473], [1.7992520156775051, -0.04155609746752664], [1.8556902039978342, -0.5579195508706005], [1.9121283923181633, -1.0742830042736746]], "left_eyebrow": [[-1.566202106875092, -1.4032336185257828], [-1.297755024266438, -1.6095442637921122], [-0.9592109710197173, -1.6135245304399837], [-0.6508761452570968, -1.5285950970096782], [-0.336843070472481, -1.4020599380512822]], "right_eyebrow": [[0.29863931049286974, -1.4043222223250293], [0.6616943422016955, -1.538817914579168], [0.9945401464264211, -1.5844039067551299], [1.338782448695137, -1.5467784478749105], [1.5810005704675618, -1.3256353398163425]], "nose_bridge": [[-0.04162272512797495, -1.103403627958528], [0.00396326704798701, -0.7705578237338027], [0.00794353369585829, -0.4320137704870819], [0.011923800343729566, -0.09346971724036114]], "nose_tip": [[-0.3454329823431009, 0.08263170054186812], [-0.17331183120874288, 0.10144442998197784], [0.004507568947610348, 0.16186288495017823], [0.2125361965880638, 0.133371639840202], [0.3732608496784313, 0.06897291822413032]], "left_eye": [[-1.1820720614524092, -1.0743680809489287], [-0.9797416828339511, -1.1444650515869954], [-0.7244090806434117, -1.1370488201908764], [-0.5824971569931539, -1.0293263906725898], [-0.7848275356116121, -0.959229420034523], [-0.9985544122740607, -0.9723439004526374]], "right_eye": [[0.5220447028251849, -1.0110579631321035], [0.7186768324216479, -1.122760659298261], [0.9740094346121871, -1.1153444279021418], [1.1991328093186264, -1.019018496427846], [0.9551967051720774, -0.943223276767784], [0.741469828509629, -0.9563377571858983]], "top_lip": [[-0.8652324004944227, 0.6200701676587992], [-0.5437830943136878, 0.4912727244266558], [-0.252543015617053, 0.45138498127268906], [0.008487835595481628, 0.500406938196899], [0.21081821421393981, 0.43030996755883205], [0.5134547909545651, 0.47363367546104673], [0.8274878657391809, 0.6001688344194427], [0.7026706891549088, 0.6172635814854285], [0.2336112103019208, 0.5967328696711948], [-0.02172139188861856, 0.5893166382750755], [-0.23544826855106726, 0.5762021578569612], [-0.7347169748881555, 0.6445811461209041]], "bottom_lip": [[0.8274878657391809, 0.6001688344194427], [0.5818337792185081, 0.9729023817981348], [0.2717809710817635, 1.1849112760864595], [0.022146617913219396, 1.2191007702184309], [-0.23888423329931524, 1.1700788132942213], [-0.5586155571059261, 1.0019379288077344], [-0.8652324004944227, 0.6200701676587992], [-0.7347169748881555, 0.6445811461209041], [-0.231468001903196, 0.9147462111036818], [0.023864600287343385, 0.922162442499801], [0.23189322792779682, 0.8936711973898248], [0.7026706891549088, 0.6172635814854285]], "transform": {"center": [86.41666666666667, 256.1666666666667], "scale": 23.812855421669475, "angle": 0.13611146532513485}}, {"chin": [[-1.478332245117125, -1.0158939360344437], [-1.498649548047794, -0.548591379120995], [-1.4369962513085115, -0.11001360148939303], [-1.3417139670661309, 0.3720015800878103], [-1.1644610831537991, 0.8252919823831668], [-0.9388665870746147, 1.2064202014510752], [-0.6747388952710804, 1.5924526287402354], [-0.36226959130069336, 1.906322872801948], [0.05178714522465094, 2.0373355546844145], [0.4469275189106517, 2.00931124544823], [0.9100263376485112, 1.7549919700871988], [1.3058671813801745, 1.4137978868349652], [1.6344500501056414, 0.9857289956915287], [1.847433331658059, 0.5429474798843377], [1.9595296507011817, -0.030146247759657158], [2.066721761523053, -0.5647067796793024], [2.0968474808962245, -1.1090757280414503]], "left_eyebrow": [[-1.4482065257439534, -1.5602628843965918], [-1.2695527017402968, -1.7333120301333347], [-0.9998203316698483, -1.698982572584574], [-0.7349921698206516, -1.6261199193114635], [-0.4799724244139578, -1.476190874589653]], "right_eyebrow": [[0.18980452756374275, -1.5084189220014266], [0.5611243301891482, -1.6569470266319113], [0.9275399245933024, -1.7669419355380467], [1.3128718818367997, -1.7178998533255314], [1.59661640652534, -1.48600020893377]], "nose_bridge": [[-0.1724073286648223, -1.1237874348035914], [-0.17801200693173633, -0.772084465063192], [-0.1787124769773989, -0.4589146910471423], [-0.2228503509686627, -0.11211592952799443]], "nose_tip": [[-0.40640838319357103, 0.09946641193309802], [-0.2957130042417732, 0.15271223232120237], [-0.1464844295656257, 0.21086226093055827], [0.01745676977427639, 0.1534127023668649], [0.17649376089292698, 0.1344963395275213]], "left_eye": [[-1.150449846437321, -1.1307930531618304], [-0.9767002306549157, -1.2653090031742233], [-0.7069678605844674, -1.2309795456254626], [-0.5339187148477248, -1.0523257216218058], [-0.7749263056363264, -1.0046845795006154], [-1.0110296882036764, -0.9955766331037751]], "right_eye": [[0.44412380292477394, -1.0453201032635668], [0.6227776269284306, -1.2183692490003093], [0.9023184134413821, -1.2611061829002481], [1.1573381588480756, -1.111177138178438], [0.9450553473413208, -0.9815653963872968], [0.6704187690496209, -0.9773616582117077]], "top_lip": [[-0.6873501097978475, 0.768542893865136], [-0.470163090069841, 0.6003979563496449], [-0.26768869500558906, 0.5478526060072031], [-0.11355591210819005, 0.5674694388922092], [0.08401427473481031, 0.5534572842741172], [0.38737563230835687, 0.6312241457684793], [0.7243659773850016, 0.7524284112084425], [0.6038621819907009, 0.7762489822690377], [0.054589025407301095, 0.7846564586202157], [-0.09954375749009796, 0.7650396257352096], [-0.2971139443330983, 0.7790517803533016], [-0.5332173269004484, 0.7881597267501421]], "bottom_lip": [[0.7243659773850016, 0.7524284112084425], [0.405591525102038, 1.1034309109031795], [0.07770912642223368, 1.2183300280305662], [-0.11986106042076666, 1.2323421826486582], [-0.31252703904251544, 1.2078211415424005], [-0.4904803930005096, 1.0677005132630937], [-0.6873501097978475, 0.768542893865136], [-0.5332173269004484, 0.7881597267501421], [-0.27329337327250314, 0.8995555757476025], [-0.1191605903751041, 0.9191724086326086], [0.07840959646789625, 0.9051602540145166], [0.6038621819907009, 0.7762489822690377]], "transform": {"center": [724.0555555555555, 289.1388888888889], "scale": 25.74398377519074, "angle": -0.12659170107358386}}, {"chin": [[-1.4643943076358923, -0.9278574671394464], [-1.475154697834174, -0.5049170081151771], [-1.4441463335765703, -0.07672363462549127], [-1.3296004604071965, 0.36197556779502793], [-1.2098016727724057, 0.7589060157596619], [-1.0429812162163126, 1.1193206237338271], [-0.7508544962925643, 1.4954939751042429], [-0.45347486190339903, 1.829898572018773], [-0.04104023180996327, 1.9241964711288253], [0.47069065059149306, 1.9036939358020548], [1.0139390197854494, 1.6325788737399731], [1.4736498800676354, 1.3509579827470581], [1.865581974834301, 0.9335249994556538], [2.0539232117869566, 0.4480586893812809], [2.1639798542932587, -0.08968220407981065], [2.274036496799561, -0.6274230975409021], [2.342324384849978, -1.1704169054674103]], "left_eyebrow": [[-1.4273693451105274, -1.5596416984431416], [-1.2392826694253194, -1.705705058405016], [-0.9469013882341228, -1.668934657147099], [-0.7067946904296447, -1.5538796614428285], [-0.4666879926251667, -1.438824665738558]], "right_eyebrow": [[0.09206455869759163, -1.4958430410557968], [0.4942479211276423, -1.6574105831464727], [0.896431283557693, -1.8189781252371489], [1.319371742581962, -1.808217735038867], [1.6742788748232627, -1.593866487026576]], "nose_bridge": [[-0.17981418716683484, -1.020882559912257], [-0.21658458842475165, -0.7285012787210604], [-0.25860790414808515, -0.3943512430739785], [-0.30063121987141866, -0.06020120742689648]], "nose_tip": [[-0.49397081002204307, 0.12763090699086302], [-0.3791703755852207, 0.22692715929888355], [-0.21209535776167973, 0.2479388171605503], [-0.03451451100730536, 0.18541296611044658], [0.17958217573753757, 0.16990878398164477]], "left_eye": [[-1.1562542830484457, -1.0163933292491851], [-0.9734205218286547, -1.1206879347551741], [-0.6757863261720412, -1.1256862879531426], [-0.48795421175428155, -0.9323466978025182], [-0.7125567274299579, -0.833305006761946], [-1.0049380086211548, -0.8700754080198628]], "right_eye": [[0.4519700441368606, -0.9838575973868919], [0.6870783887433701, -1.1664367973392349], [0.9847125843999838, -1.1714351505372034], [1.2248192822044617, -1.0563801548329326], [0.9949638520633687, -0.9155697093364751], [0.7390984108626405, -0.9053184416730901]], "top_lip": [[-0.698070790370949, 0.7384034804328916], [-0.5570057836070433, 0.628855960461486], [-0.33240326793136704, 0.5298142694209138], [-0.1705811645732427, 0.5925946817384656], [0.0017467677157149558, 0.5718375851442472], [0.3306438888973802, 0.6556296553234658], [0.7430785189908161, 0.7499275544335181], [0.5707505867018584, 0.7706846510277364], [0.017250949844516764, 0.7859342718890902], [-0.19159282243490947, 0.7596696995620067], [-0.35866784025845044, 0.7386580417003399], [-0.57801744146871, 0.795930978285027]], "bottom_lip": [[0.7430785189908161, 0.7499275544335181], [0.36690516762040054, 1.0420542743572665], [0.0587651430329538, 1.1305901364670055], [-0.15533154371188918, 1.1460943185958072], [-0.36417531599131536, 1.119829746268724], [-0.5677661738053249, 1.0517964194857552], [-0.698070790370949, 0.7384034804328916], [-0.57801744146871, 0.795930978285027], [-0.32215200026798185, 0.7856797106216418], [-0.1550769824444409, 0.8066913684833085], [0.011998035379100089, 0.8277030263449753], [0.5707505867018584, 0.7706846510277364]], "transform": {"center": [229.26388888888889, 295.52777777777777], "scale": 23.754229236828596, "angle": -0.1251050210849228}}, {"chin": [[-1.5603543758843266, -0.8432449473972158], [-1.5780911931408905, -0.4221122170957389], [-1.4916378873692921, 0.0121372277722257], [-1.405184581597694, 0.4463866726401903], [-1.2840012348167085, 0.885008355696984], [-1.0889855678281193, 1.2976444741220492], [-0.7854075396225387, 1.6886672661042146], [-0.4383549940299125, 2.0146022142564344], [-0.030338978294923463, 2.13652915454116], [0.4689983104029864, 2.0935503661566077], [0.9554667490356553, 1.8725491345362897], [1.3464895410178208, 1.568971106330709], [1.6420666863494828, 1.1828162815398666], [1.8465704232194708, 0.6793546191543741], [1.9468840370612968, 0.16277624220239387], [2.047197650903123, -0.35380213474958633], [2.043321141716787, -0.8834972262680544]], "left_eyebrow": [[-1.4903985648630584, -1.3989256035474125], [-1.3208727335037045, -1.6245469378578066], [-1.034287929050948, -1.659029114365947], [-0.7564476009758494, -1.6240512088553132], [-0.49172398746723883, -1.484883180316517]], "right_eyebrow": [[0.22036578547582408, -1.5363585805774813], [0.5591695836932853, -1.7053886829343419], [0.919586708353646, -1.7658564240742112], [1.297244921268077, -1.683031762987702], [1.5879540994084165, -1.4700314142413025]], "nose_bridge": [[-0.10994140086522527, -1.1545759939754678], [-0.14929154456468854, -0.8420056248909822], [-0.15391164725476447, -0.5250630176176673], [-0.15853174994484046, -0.20812041034435227]], "nose_tip": [[-0.3715320986912402, 0.08258876779598712], [-0.232611934653691, 0.10007772055130412], [-0.09806400880497107, 0.15229671431600844], [0.04960063161023662, 0.10032558505255082], [0.19726527202544433, 0.04835445578909325]], "left_eye": [[-1.1824482984686489, -1.0426328525746342], [-0.9869369024775662, -1.1944218666774244], [-0.7394543772230259, -1.1985462403650071], [-0.5529353221108483, -0.9986626061850951], [-0.7656878063560013, -0.9901659943086832], [-1.0131703316105416, -0.9860416206211007]], "right_eye": [[0.4760970581055295, -1.0455179037559832], [0.6759806922854416, -1.2320369588681608], [0.9278354557288111, -1.2708913735651306], [1.1578290282280346, -1.1360955832151642], [0.9710621086146102, -1.0537666511311483], [0.7192073451712406, -1.0149122364341785]], "top_lip": [[-0.6977149113447071, 0.711853879652541], [-0.5022035153536243, 0.5600648655497508], [-0.28945103110847126, 0.551568253673339], [-0.08107078505214749, 0.5778016828063145], [0.1013238963724475, 0.5302027917316862], [0.4138942654569332, 0.5695529354311494], [0.7524501991731476, 0.6827353993382165], [0.6438878379561563, 0.7043487257811161], [0.10982050824885932, 0.7429552759768392], [-0.10293197599629374, 0.7514518878532509], [-0.27658218104323024, 0.7295906969091046], [-0.5587947473071578, 0.729342832407858]], "bottom_lip": [[0.7524501991731476, 0.6827353993382165], [0.43963196558741524, 0.9255978219026808], [0.14430268475699992, 1.029540080429596], [-0.06844979948815313, 1.0380366923060078], [-0.2768300455444769, 1.0118032631730323], [-0.47646581522314224, 0.9161097520212823], [-0.6977149113447071, 0.711853879652541], [-0.5587947473071578, 0.729342832407858], [-0.27658218104323024, 0.7295906969091046], [-0.06820193498690644, 0.7558241260420802], [0.14455054925824656, 0.7473275141656684], [0.6438878379561563, 0.7043487257811161]], "transform": {"center": [377.2361111111111, 251.33333333333334], "scale": 28.56802142245464, "angle": -0.12523328441455295}}, {"chin": [[-2.6150656188465335, -1.1053791049622035], [-2.637182629124022, -0.561875294480976], [-2.6716912443346708, 0.023822598973730402], [-2.5250319227182443, 0.6168928291875996], [-2.17242145440842, 1.132947230213674], [-1.6858564004189973, 1.505008509212154], [-1.0777283656831353, 1.775270749156518], [-0.4870112040544314, 1.9487532182207639], [-0.02789555952016154, 1.9460870186319315], [0.2872269629865138, 1.8094662333634994], [0.428553885425276, 1.4843051745088292], [0.594664017730359, 1.074755949707201], [0.7483825451022817, 0.7074008078790517], [0.9144926774073648, 0.2978515830774236], [1.0682112047792873, -0.06950355875072572], [1.107739088163934, -0.5162275983518352], [1.038095595735302, -0.9033466818723076]], "left_eyebrow": [[-1.4587276364591135, -1.4532834361016966], [-1.089019426045799, -1.6197066994104468], [-0.6720978644850079, -1.6347645039324397], [-0.2799595127905378, -1.5654341425074747], [0.0873956290376115, -1.411715615135552]], "right_eyebrow": [[0.5887053565453602, -1.401990209791224], [0.752462420265278, -1.4913976439121792], [0.9286110889183563, -1.6229991610066135], [1.0799765477051138, -1.67021251215409], [1.2363612746658688, -1.5784520094479693]], "nose_bridge": [[0.33820705829331943, -1.0172241948559166], [0.4326337605882723, -0.7144932772824019], [0.569254545856704, -0.3993707547757266], [0.663681248151657, -0.09663983720221178]], "nose_tip": [[0.03343620313830641, 0.17660173333465173], [0.2567982229388611, 0.196365675026975], [0.42557455483277656, 0.2459320947596167], [0.5769400136195341, 0.19871874361214026], [0.698502994365973, 0.0969197045580245]], "left_eye": [[-1.056550748416648, -1.1060053669695378], [-0.796013913816612, -1.212823674197651], [-0.5304578110425786, -1.1806681275721673], [-0.39885629394814437, -1.0045194589190893], [-0.5924158357083807, -0.9696977127047731], [-0.8157778555089353, -0.9894616543970963]], "right_eye": [[0.5317666000535557, -1.0520459410702327], [0.6781127906663155, -1.238233146071306], [0.9138664154000307, -1.260663287352462], [0.961079766547507, -1.1092978285657042], [0.8941024737077073, -1.0373012675519069], [0.7129345368806315, -1.0446736043110698]], "top_lip": [[-0.683550076407167, 0.7452018846858672], [-0.19965122200657637, 0.6581475191500772], [0.1874678615138962, 0.5885040267214451], [0.35624419340781166, 0.6380704464540867], [0.47780717415425067, 0.536271407399971], [0.5919978181415267, 0.6156403051729312], [0.5548230033420456, 0.7422225540933677], [0.4704348373950878, 0.7174393442270468], [0.45804323246192735, 0.7596334272005258], [0.31906937860833035, 0.7646526953745234], [0.1677039198215729, 0.8118660465219998], [-0.5023821395800913, 0.7525742214450301]], "bottom_lip": [[0.5548230033420456, 0.7422225540933677], [0.5052565836094038, 0.9109988859872832], [0.42588768583644365, 1.0251895299745593], [0.2745222270496862, 1.0724028811220359], [0.08096268528944994, 1.107224627336352], [-0.2565899784983809, 1.0080917878710685], [-0.683550076407167, 0.7452018846858672], [-0.5023821395800913, 0.7525742214450301], [0.1677039198215729, 0.8118660465219998], [0.3488718566486487, 0.8192383832811627], [0.45804323246192735, 0.7596334272005258], [0.4704348373950878, 0.7174393442270468]], "transform": {"center": [923.1388888888889, 239.36111111111111], "scale": 22.739653053370322, "angle": -0.2856496091871903}}]},
{"url": "z_crazycat.jpg", "embedding": [[-0.08633146435022354, 0.025707818567752838, 0.07639647275209427, -0.048104941844940186, -0.10763738304376602, -0.0050402190536260605, -0.014571853913366795, -0.08744588494300842, 0.07060631364583969, -0.0969875305891037, 0.203915536403656, -0.06397667527198792, -0.26099693775177, -0.08267370611429214, 0.05868391692638397, 0.0592370480298996, -0.17774011194705963, -0.09809047728776932, -0.10965374112129211, -0.046914756298065186, -0.012806467711925507, 0.049394216388463974, -0.06068962439894676, -0.03228128328919411, -0.11689863353967667, -0.3773820698261261, -0.07407540827989578, -0.08947436511516571, 0.06829667091369629, -0.03528866916894913, 0.09265000373125076, 0.03211208060383797, -0.17223724722862244, -0.0015173647552728653, 0.009194079786539078, 0.021550387144088745, -0.045804984867572784, -0.0806272029876709, 0.19208067655563354, -0.04573751240968704, -0.20201274752616882, -0.06907662749290466, 0.05226491391658783, 0.14448454976081848, 0.16633684933185577, 0.02730557508766651, 0.018218671903014183, -0.12160035967826843, 0.19324029982089996, -0.24985948204994202, 0.09675244987010956, 0.1718558669090271, 0.07669198513031006, 0.07014995068311691, 0.13141696155071259, -0.10720501840114594, 0.019277159124612808, 0.11542072892189026, -0.19932077825069427, 0.018857745453715324, 0.05013609305024147, -0.05393756181001663, -0.03386946767568588, -0.07079295068979263, 0.09062609076499939, 0.08154372870922089, -0.01246708258986473, -0.19027775526046753, 0.2919010519981384, -0.1918741762638092, -0.11507479846477509, 0.0614415779709816, -0.03934381157159805, -0.13248874247074127, -0.2907862961292267, 0.020560096949338913, 0.31528961658477783, 0.1404496282339096, -0.18058542907238007, -0.0072771962732076645, -0.05406148359179497, -0.10292179882526398, 0.09250900894403458, 0.035136520862579346, -0.03119160793721676, -0.12081655859947205, -0.07471097260713577, 0.009975776076316833, 0.2426357865333557, -0.025135304778814316, 0.049756646156311035, 0.18855401873588562, 0.0408770926296711, -0.036266639828681946, 0.06416459381580353, 0.025200217962265015, -0.13319990038871765, 0.021101340651512146, -0.12020012736320496, -0.0171416774392128, 0.1314087212085724, -0.04341987147927284, 0.020753035321831703, 0.17082256078720093, -0.180325448513031, 0.25269073247909546, -0.015394173562526703, -0.0638505145907402, 0.06116009131073952, -0.0798901617527008, -0.015894148498773575, 0.0014369525015354156, 0.16697828471660614, -0.16811278462409973, 0.20597663521766663, 0.06743206083774567, 0.0061866529285907745, 0.1374424546957016, 0.005847885273396969, 0.09521905332803726, -0.044479548931121826, -0.08656439930200577, -0.2612391412258148, -0.1461983174085617, 0.002107386477291584, -0.012200377881526947, -0.07272385060787201, 0.03133153170347214], [-0.10867249965667725, 0.027228720486164093, 0.05912978947162628, -0.16319607198238373, -0.1807713359594345, -0.05263954773545265, 0.0023656878620386124, -0.11592307686805725, 0.1795504093170166, -0.16215084493160248, 0.16798821091651917, -0.04540102556347847, -0.2441544234752655, 0.07140034437179565, -0.15464943647384644, 0.1627032458782196, -0.13007092475891113, -0.17839564383029938, -0.15674307942390442, -0.07547514140605927, -0.005580782890319824, 0.10710473358631134, -0.001927979290485382, 0.08050172030925751, -0.027832385152578354, -0.2495746612548828, -0.02372150868177414, -0.029281597584486008, 0.04230738431215286, -0.05245167016983032, 0.005036415532231331, 0.10873613506555557, -0.24643239378929138, 0.0011288560926914215, 0.07539068162441254, 0.03458290919661522, -0.09003671258687973, -0.07158508896827698, 0.30525559186935425, -0.02001560851931572, -0.22888202965259552, -0.07223115861415863, 0.10634985566139221, 0.20250090956687927, 0.20768514275550842, -0.01719064451754093, -0.05631111562252045, -0.061041250824928284, 0.18191340565681458, -0.31438785791397095, 0.0038521932438015938, 0.13853882253170013, 0.10642924904823303, 0.058293066918849945, 0.022064263001084328, -0.28291574120521545, 0.026844754815101624, 0.11245740205049515, -0.15712252259254456, 0.0340176522731781, -0.021204350516200066, -0.22336821258068085, -0.08754649013280869, -0.018319591879844666, 0.2151019275188446, 0.014983545988798141, -0.11003755033016205, -0.1786765158176422, 0.25275927782058716, -0.1400652527809143, 0.05934527888894081, 0.14169226586818695, -0.09856227040290833, -0.13710449635982513, -0.18836575746536255, -0.0032755350694060326, 0.39579638838768005, 0.060993947088718414, -0.10527516901493073, 0.0835670679807663, -0.0764949768781662, -0.018493451178073883, -0.06162360683083534, -0.011753460392355919, -0.13618655502796173, 0.0023347362875938416, -0.1173849105834961, 0.05074252933263779, 0.22767505049705505, -0.07952941954135895, -0.0355512835085392, 0.24407735466957092, -0.005510684102773666, 0.0010146088898181915, 0.0518779456615448, 0.05450153723359108, -0.09836666285991669, -0.041614387184381485, -0.15898676216602325, 0.023338956758379936, 0.08135318756103516, -0.11852829158306122, -0.00795440748333931, 0.09689807146787643, -0.2046995311975479, 0.11967046558856964, -0.07444557547569275, -0.042041338980197906, -0.08850600570440292, -0.0652686282992363, -0.1348264068365097, -0.025899536907672882, 0.16687388718128204, -0.21045181155204773, 0.2452223300933838, 0.11515602469444275, 0.06212309002876282, 0.19576813280582428, 0.09240422397851944, -0.019747687503695488, 0.04416613653302193, -0.04374328628182411, -0.11262974143028259, -0.13677555322647095, 0.13751129806041718, -0.018635708838701248, 0.09648679941892624, 0.06297878921031952], [-0.1314304918050766, 0.13141848146915436, -0.03353174775838852, -0.046701982617378235, -0.09466293454170227, -0.0030544521287083626, 0.09377061575651169, 0.0037365518510341644, 0.2568979859352112, -0.012465185485780239, 0.20722812414169312, 0.03685646504163742, -0.2586974501609802, -0.07038301229476929, -0.0043342225253582, 0.17743724584579468, -0.2415691763162613, -0.06520521640777588, -0.13529072701931, -0.12957587838172913, 0.09511968493461609, 0.12188608199357986, 0.01881067082285881, 0.03600423038005829, -0.24400193989276886, -0.24433965981006622, 0.001088809221982956, -0.1596548855304718, 0.004916846752166748, -0.17986240983009338, 0.08721934258937836, 0.07950811088085175, -0.14061622321605682, -0.08431404829025269, 0.011482711881399155, 0.056318607181310654, -0.09223932772874832, -0.09413875639438629, 0.16815562546253204, 0.04396570846438408, -0.12860915064811707, 0.015509290620684624, 0.012548334896564484, 0.3796686828136444, 0.17439869046211243, -0.07501284778118134, 0.02729548141360283, -0.07109587639570236, 0.0873890072107315, -0.2768995761871338, 0.04719585180282593, 0.11240066587924957, 0.07677246630191803, 0.09335751831531525, 0.09551402926445007, -0.12075607478618622, 0.01522950828075409, 0.1575559377670288, -0.27204230427742004, 0.026555722579360008, 0.10521773248910904, 0.017538733780384064, -0.07766309380531311, -0.06384492665529251, 0.09262461960315704, 0.08111529797315598, -0.10755595564842224, -0.09238850325345993, 0.09943404048681259, -0.13789696991443634, -0.0680539458990097, 0.054945532232522964, -0.1351550966501236, -0.2594779431819916, -0.25811445713043213, 0.04458317160606384, 0.304772287607193, 0.16598612070083618, -0.13269633054733276, -0.018150655552744865, -0.03596578165888786, 0.03289679437875748, 0.06689933687448502, -0.0013253800570964813, -0.07576711475849152, -0.026544488966464996, -0.04253953695297241, 0.15403419733047485, 0.12437070906162262, -0.032539308071136475, -0.07599613070487976, 0.23770496249198914, 0.06969400495290756, -0.17367593944072723, 0.02206108719110489, 0.0005097389221191406, -0.03184114396572113, 0.042181797325611115, -0.10811357945203781, 0.01797477900981903, 0.10238609462976456, -0.15778131783008575, 0.004793185740709305, 0.05660378187894821, -0.1933477520942688, 0.18113286793231964, 0.06620482355356216, -0.029002420604228973, -0.021582026034593582, -0.03509580343961716, -0.19165930151939392, 0.04759890213608742, 0.21993066370487213, -0.22831687331199646, 0.2514156103134155, 0.21792438626289368, -0.007483581081032753, 0.1496896892786026, 0.0024079224094748497, 0.03604181855916977, -0.0388360321521759, -0.009279422461986542, -0.1277064085006714, -0.05045844241976738, 0.08201976865530014, 0.012392600998282433, 0.06525622308254242, 0.00045235641300678253]], "landmarks": [{"chin": [[-2.3347310611779735, -1.104251745332688], [-2.352010734229614, -0.51252462054107], [-2.3246255982153907, 0.0736602007828493], [-2.168788338471278, 0.5985533026378087], [-1.9291637640631374, 1.067696988491507], [-1.5164222568592431, 1.4700066514085468], [-1.0309780419267198, 1.7272372801925995], [-0.5064113213960324, 1.93426079644309], [-0.004013814736140459, 1.962625076430128], [0.4370919724547916, 1.862537232687276], [0.8002791297736671, 1.5000028380169441], [1.0741366689608165, 1.1485530502820098], [1.2922447921467046, 0.7133159478830484], [1.421023297200867, 0.2891634524194849], [1.4995946897214671, -0.17411154864224282], [1.49437876757804, -0.5816371337027096], [1.489162845434613, -0.9891627187631765]], "left_eyebrow": [[-1.469146397199206, -1.4384218600159817], [-1.1284548350753978, -1.6167547149551624], [-0.8213434750820551, -1.7002156482949178], [-0.4529403956197525, -1.6552244579047832], [-0.11811751828791511, -1.515361345915223]], "right_eyebrow": [[0.523816719037265, -1.4589591672654185], [0.7415984608988816, -1.5313354936697763], [1.00958731529406, -1.5645893144759697], [1.2384536640910744, -1.5476360227486012], [1.4001596086271586, -1.3409388878223822]], "nose_bridge": [[0.20529437078425258, -1.1019670760627855], [0.2496327985258439, -0.7446486035358807], [0.24376411373387324, -0.42645263660714006], [0.28810254147546455, -0.06913416408023526]], "nose_tip": [[-0.22570595344409702, 0.1760327137956041], [0.003160395352917393, 0.19298600552297263], [0.1929042385517676, 0.2601464097839032], [0.37156347481522, 0.23797719591310754], [0.4944732950774115, 0.13202066737828458]], "left_eye": [[-1.061947193463011, -1.0807770061648052], [-0.8497077550690932, -1.1978181416350258], [-0.6208414062720788, -1.1808648499076573], [-0.42001295613783074, -1.0243748275150009], [-0.6433370014671463, -0.9966633101765062], [-0.8722033502641607, -1.0136166019038746]], "right_eye": [[0.5345749446483912, -1.0067687731390884], [0.6910649670410478, -1.2075972232733367], [0.9199313158380621, -1.1906439315459683], [1.1152174625046114, -1.0788187182191744], [0.9421005297088578, -1.0119846952825158], [0.7132341809118435, -1.0289379870098843]], "top_lip": [[-0.7509254366233282, 0.6947307495343209], [-0.39360696409642343, 0.6503923217927297], [-0.0809533006353817, 0.6115961975188372], [0.15345535162933166, 0.6732142983120689], [0.3265722844250851, 0.6063802753754102], [0.5107738241562364, 0.6288758705704777], [0.6949753638873877, 0.651371465765545], [0.5665232401574973, 0.7126631852345049], [0.2985343857623187, 0.7459170060406983], [0.11987514949886637, 0.768086219911494], [-0.06432639023228495, 0.7455906247164266], [-0.661595818491602, 0.6836461425989231]], "bottom_lip": [[0.6949753638873877, 0.651371465765545], [0.5049051393642657, 0.9470718374992183], [0.3428728135039101, 1.103235478567603], [0.11954876817459456, 1.1309469959060976], [-0.06465277155655674, 1.1084514007110302], [-0.3994756488883941, 0.9685882887214703], [-0.7509254366233282, 0.6947307495343209], [-0.661595818491602, 0.6836461425989231], [-0.04769947982918821, 0.8795850519140158], [0.13095975643426422, 0.8574158380432202], [0.3096189926977166, 0.8352466241724246], [0.5665232401574973, 0.7126631852345049]], "transform": {"center": [160.45833333333334, 119.73611111111111], "scale": 22.21858911273382, "angle": 0.12345552770480644}}, {"chin": [[-1.7774050263456285, -0.6802621117677449], [-1.7253953105753557, -0.2015392199434794], [-1.6733855948050829, 0.2771836718807862], [-1.6692891328369182, 0.7563162099018681], [-1.521452909462429, 1.2342198093325008], [-1.279019117074173, 1.5675643549631757], [-0.8936648556732248, 1.803853454399185], [-0.46121663286380166, 1.9439064000341615], [0.0183255513540968, 1.987723191868105], [0.49704844317836233, 1.9357134760978323], [0.974952042608995, 1.787877252723343], [1.452445995842811, 1.5921277755467458], [1.7370579952777452, 1.2542771217510893], [1.9250241947148297, 0.8214192527448498], [2.0163445941540648, 0.29355416852802674], [2.0601613859880086, -0.18598801568987178], [2.1035685316251356, -0.7134434537098784]], "left_eyebrow": [[-1.496889488878859, -1.4972453035844828], [-1.2589618046555842, -1.6909465497769982], [-0.9718919280397512, -1.741317680760005], [-0.6835931128334692, -1.6479490503366876], [-0.39488465143037055, -1.5066671661112616]], "right_eyebrow": [[0.32381415560125243, -1.5128118590635085], [0.6100647398234522, -1.6590094976507321], [0.9446382240445768, -1.7577035286326637], [1.2325273930540421, -1.7122481520114543], [1.569149108259249, -1.5713759139828452]], "nose_bridge": [[-0.055805059044265026, -1.078315405270003], [-0.1016700818622909, -0.8383394900626457], [-0.1475351046803168, -0.5983635748552882], [-0.1929904813015262, -0.3104744058458226]], "nose_tip": [[-0.4305085193279849, -0.06885990585119928], [-0.28594946552802736, 0.025737663162567738], [-0.14220970412170278, 0.02450872457211835], [0.04903366488991356, -0.025043114017255706], [0.24027703390152988, -0.07459495260662975]], "left_eye": [[-1.108667704100196, -0.9255634275337163], [-0.9182436274822127, -1.0709417737273068], [-0.6786773584716717, -1.072990004711389], [-0.4857954046727894, -0.9308888280923304], [-0.724952027486514, -0.8809273433061399], [-0.9166050426949468, -0.879288758518874]], "right_eye": [[0.5203829251714828, -0.9394913982254761], [0.7108070017894661, -1.0848697444190665], [0.9024600169978989, -1.0865083292063322], [1.0949323245999647, -0.9923204063893819], [0.9040986017851648, -0.8948553139978996], [0.712445586576732, -0.8932167292106338]], "top_lip": [[-0.7593469567936789, 0.7006196783602472], [-0.5222385649640366, 0.4110919245635156], [-0.2830819421503121, 0.3611304397773252], [-0.09142892694187933, 0.3594918549900593], [0.14813734206866166, 0.35744362400597696], [0.484349411077052, 0.45040260823247813], [0.8217904186758918, 0.6871013538653039], [0.6780506572695671, 0.6883302924557533], [0.14895663446229457, 0.45327013161019336], [-0.0906096345482464, 0.4553183625942757], [-0.2822626497566792, 0.4569569473815416], [-0.6160168415841708, 0.6514774859676896]], "bottom_lip": [[0.8217904186758918, 0.6871013538653039], [0.48762658065158365, 0.8337086386493437], [0.15264345023364276, 0.8844894158291672], [-0.03900956497479005, 0.886128000616433], [-0.27857583398533103, 0.8881762316005153], [-0.5185517491926885, 0.8423112087824894], [-0.7593469567936789, 0.7006196783602472], [-0.6160168415841708, 0.6514774859676896], [-0.27980477257578046, 0.7444364701941907], [-0.039828857368422975, 0.7903014930122167], [0.15182415784000983, 0.7886629082249509], [0.6780506572695671, 0.6883302924557533]], "transform": {"center": [312.97222222222223, 104.51388888888889], "scale": 20.870288981980053, "angle": 0.008549538661748924}}, {"chin": [[-1.9682505583996923, -0.9863516858717492], [-1.936309688603177, -0.46872948190804176], [-1.868686984757248, 0.09174233761459014], [-1.758214665352395, 0.6165323230878086], [-1.5620431148296923, 1.0699586404622006], [-1.2837562239438967, 1.4912870145419344], [-0.8733365956265717, 1.7663041616692594], [-0.4164834609955667, 1.966373749943002], [0.011855621095536062, 2.0450622730494827], [0.45453026620566117, 1.9666878969392865], [0.9115404743348083, 1.7312506216124155], [1.2936031236103733, 1.449379839971864], [1.6078859955418674, 1.0425441024092947], [1.7686898590114413, 0.5821070770235341], [1.8545461636274325, 0.07523654532409346], [1.901136743439255, -0.43521787713010274], [1.9084615984469084, -0.9492561903390546]], "left_eyebrow": [[-1.6218697431735407, -1.311072083071225], [-1.3611881590652382, -1.5644288121718741], [-1.0006288543182065, -1.6107052449874117], [-0.6115554970312727, -1.5356006126356871], [-0.22606603049909435, -1.4212302554797938]], "right_eyebrow": [[0.24512266715093295, -1.3782235664227267], [0.6128497534074757, -1.5030314488466026], [0.9769929489092628, -1.588573606466309], [1.3696501969509522, -1.5527346989187532], [1.5837412012474328, -1.2956370055652062]], "nose_bridge": [[0.023706807846799266, -1.121282946567322], [0.03430140661292363, -0.8035732573792149], [0.04489600537904799, -0.4858635681911078], [0.05549060414517236, -0.16815387900300074]], "nose_tip": [[-0.36583776993456163, 0.11013301188279505], [-0.17309303666847248, 0.16731819046074187], [0.023235587352372206, 0.18523764423451972], [0.22673199288272805, 0.12462564839995971], [0.3873787828541594, 0.09969548661481306]], "left_eye": [[-1.2042823333467048, -1.1145863855522378], [-0.9936181463068379, -1.253729830995136], [-0.7187580726776551, -1.228642595711847], [-0.49749928687166367, -1.0500763519666376], [-0.7366775264514329, -1.0323139716910021], [-1.0151214908353712, -1.0181354821701223]], "right_eye": [[0.5305773395462399, -1.0354266419513305], [0.7448254173408625, -1.2138358121983976], [0.9804197661658761, -1.1923324676698641], [1.205262442726623, -1.0530319487288238], [1.0017660371962671, -0.9924199528942637], [0.7661716883712536, -1.0139232974227972]], "top_lip": [[-0.8158372700523402, 0.7025457012019424], [-0.49095979935472195, 0.6134196528274801], [-0.24819766902019716, 0.5563915477476757], [-0.016187210949939093, 0.6171606170803782], [0.22657491938458568, 0.5601325120005737], [0.46216926820959936, 0.5816358565291071], [0.7298615603292707, 0.685254541420734], [0.6513301107209329, 0.6780867599112229], [0.21582324712031897, 0.6779296864130804], [0.01591073234471871, 0.6992759574434715], [-0.2589493412844639, 0.6741887221601824], [-0.6980400956398334, 0.713297373466209]], "bottom_lip": [[0.7298615603292707, 0.685254541420734], [0.4835155392399904, 0.7815483713047073], [0.24075340890546565, 0.8385764763845118], [-0.0020087214290591543, 0.8956045814643163], [-0.2376030702540728, 0.8741012369357828], [-0.5124631438832554, 0.8490140016524939], [-0.8158372700523402, 0.7025457012019424], [-0.6980400956398334, 0.713297373466209], [-0.2196836164802949, 0.677772612914938], [0.01591073234471871, 0.6992759574434715], [0.2586728626792435, 0.6422478523636672], [0.6513301107209329, 0.6780867599112229]], "transform": {"center": [862.9861111111111, 215.375], "scale": 25.362080880813746, "angle": -0.09102055543461159}}]},
{"url": "z_presidents.jpg", "embedding": [[-0.05858760327100754, 0.15402744710445404, 0.04458088427782059, -0.05429479852318764, -0.13944151997566223, 0.07321923226118088, -0.10267187654972076, -0.016964141279459, 0.06723161041736603, 0.031079106032848358, 0.24005526304244995, -0.076234370470047, -0.24596920609474182, -0.05382930859923363, -0.03787107393145561, 0.15275906026363373, -0.08538782596588135, -0.08218251168727875, -0.1610141396522522, -0.0839477926492691, -0.09064912796020508, 0.04020093381404877, 0.08017729222774506, -0.006282970309257507, -0.12378862500190735, -0.2959167957305908, -0.05186557397246361, -0.10892461985349655, 0.07406134903430939, -0.14502163231372833, -0.033396948128938675, 0.014827241189777851, -0.2512500286102295, -0.10063666105270386, 0.04108777269721031, 0.06970575451850891, -0.08217166364192963, -0.04848453775048256, 0.250210165977478, 0.048142172396183014, -0.15662170946598053, 0.04342631250619888, 0.10526914894580841, 0.24475747346878052, 0.21170282363891602, 0.04800168052315712, -0.02333720773458481, 0.03939101845026016, 0.09356236457824707, -0.24444732069969177, 0.1012866422533989, 0.14119644463062286, 0.1721307784318924, 0.08064019680023193, 0.11189498007297516, -0.08847280591726303, 0.03130093589425087, 0.1536441296339035, -0.16642558574676514, 0.005554588511586189, -0.0008934754878282547, -0.023861974477767944, -0.048251453787088394, -0.06620367616415024, 0.19702497124671936, 0.12945136427879333, -0.018947947770357132, -0.1618138700723648, 0.19454342126846313, -0.10524050146341324, -0.03708025813102722, 0.12630537152290344, -0.05122184380888939, -0.07294762879610062, -0.30501970648765564, 0.04475197568535805, 0.26428815722465515, 0.07688628137111664, -0.20287245512008667, 0.003293987363576889, 0.007160736247897148, -0.0892900675535202, -0.049232084304094315, -0.04590529203414917, -0.11038648337125778, -0.016364015638828278, -0.04116400331258774, -0.040963031351566315, 0.22767940163612366, -0.05907582491636276, 0.016921743750572205, 0.18478906154632568, 0.018370099365711212, -0.0409725122153759, 0.09963710606098175, 0.042515628039836884, -0.06493828445672989, -0.08900117129087448, -0.13216760754585266, 0.011146828532218933, 0.04341372475028038, -0.18142665922641754, -0.05782327055931091, 0.05988014489412308, -0.25763705372810364, 0.07599353045225143, -0.015819890424609184, -0.09076067060232162, -0.04936300590634346, 0.023871878162026405, -0.07986874878406525, -0.01862194761633873, 0.2373119443655014, -0.29733696579933167, 0.2421354353427887, 0.17718848586082458, -0.08763976395130157, 0.04664290323853493, 0.10669814795255661, 0.06183584779500961, -0.014868227764964104, 0.018131673336029053, -0.07181774824857712, -0.23482470214366913, 0.0317281074821949, -0.0702815130352974, -0.018283188343048096, 0.08313345164060593], [-0.06939061731100082, 0.13431316614151, 0.07022120803594589, -0.07542300969362259, -0.12113620340824127, 0.04984649643301964, 0.026729349046945572, -0.062375813722610474, 0.07100243866443634, -0.09553085267543793, 0.21232441067695618, 0.0292263962328434, -0.19170039892196655, -0.11081930994987488, 0.0009739398956298828, 0.08495856821537018, -0.1215849220752716, -0.14479921758174896, -0.17209820449352264, -0.07638905197381973, 0.003639042377471924, 0.08791283518075943, -0.050898175686597824, -0.07257232815027237, -0.17021098732948303, -0.23598945140838623, -0.0450928658246994, 0.009820140898227692, 0.04604608193039894, -0.05767271667718887, 0.13703371584415436, 0.1079641804099083, -0.21144884824752808, -0.01418980211019516, -0.003916684538125992, 0.06369036436080933, -0.12146890163421631, -0.01149679720401764, 0.13042105734348297, 0.05648115649819374, -0.16112269461154938, 0.093986377120018, 0.04104863479733467, 0.28624865412712097, 0.23039858043193817, 0.0033969730138778687, 0.02072007581591606, -0.010640613734722137, 0.08009964227676392, -0.30265194177627563, 0.06214110553264618, 0.14309826493263245, 0.13807395100593567, 0.1408163458108902, 0.01583903096616268, -0.08902367949485779, 0.051827240735292435, 0.1576525866985321, -0.188044935464859, 0.07367902994155884, 0.03149943798780441, -0.2091367542743683, -0.031484559178352356, 0.00574580579996109, 0.10535882413387299, 0.09909744560718536, -0.006293885409832001, -0.21997246146202087, 0.2084735929965973, -0.17516854405403137, -0.14264541864395142, 0.11276351660490036, -0.05068088695406914, -0.0864620953798294, -0.2507299482822418, 0.08057168871164322, 0.3646014928817749, 0.19773045182228088, -0.144277423620224, 0.01447485014796257, -0.07287491858005524, 0.006531707942485809, 0.012888111174106598, 0.028938230127096176, -0.06539174914360046, -0.1314454972743988, -0.08928925544023514, 0.0136772021651268, 0.24717266857624054, -0.02682105079293251, -0.079952672123909, 0.25581493973731995, 0.11738331615924835, -0.06653909385204315, 0.04550563171505928, -0.08542224764823914, -0.0350673608481884, 0.0013629551976919174, -0.06227285787463188, -0.082457534968853, 0.009062448516488075, -0.12514983117580414, 0.013519331812858582, 0.12543198466300964, -0.16324158012866974, 0.3239516615867615, -0.03098568134009838, 0.0438222661614418, 0.040842123329639435, -0.002380289137363434, 0.02052641101181507, 0.01377229392528534, 0.13413472473621368, -0.21553708612918854, 0.22754767537117004, 0.1763051152229309, 0.03605269640684128, 0.13480471074581146, 0.11143558472394943, 0.09768375009298325, 0.008538421243429184, -0.008851978927850723, -0.1226421445608139, -0.14259876310825348, 0.014792652800679207, -0.026468884199857712, 0.04430479556322098, 0.08646179735660553], [-0.12107758224010468, 0.06972907483577728, 0.03475499898195267, -0.08456272631883621, 0.03810664638876915, 0.00953951757401228, -0.11792968213558197, -0.09907563030719757, 0.221220463514328, -0.08417036384344101, 0.18580670654773712, 0.10185316205024719, -0.13427996635437012, -0.20343022048473358, 0.049353789538145065, 0.10123081505298615, -0.20662431418895721, -0.12158223986625671, -0.102667436003685, -0.08597677946090698, 0.04242030531167984, 0.0038279565051198006, 0.06641386449337006, 0.04110582172870636, -0.18600521981716156, -0.3677234351634979, -0.07810021191835403, -0.15301403403282166, 0.00435866042971611, -0.06287353485822678, -0.07365654408931732, 0.023936253041028976, -0.22792428731918335, -0.11981718242168427, 0.029667556285858154, 0.07292845845222473, -0.0026243431493639946, -0.013725347816944122, 0.17914171516895294, 0.09627585113048553, -0.10908753424882889, 0.07008922845125198, -0.00923733040690422, 0.20984303951263428, 0.2526712715625763, 0.07017122209072113, 0.022398190572857857, -0.05537969246506691, 0.17703787982463837, -0.2432706207036972, 0.04742681607604027, 0.2030370533466339, 0.057508159428834915, 0.08019167184829712, 0.12042717635631561, -0.14944767951965332, 0.06694306433200836, 0.13072678446769714, -0.17184214293956757, 0.04272685945034027, -0.008502835407853127, -0.10113170742988586, -0.06396006047725677, 0.048845015466213226, 0.1331322342157364, 0.1309039294719696, -0.06646452099084854, -0.11578585207462311, 0.12952128052711487, -0.02464100532233715, 0.015596553683280945, 0.0793079286813736, -0.16836415231227875, -0.2043977826833725, -0.2437448352575302, 0.05380493402481079, 0.34731239080429077, 0.18557162582874298, -0.2109704613685608, 0.0044952258467674255, -0.16815005242824554, 0.0304272323846817, 0.10034718364477158, -0.006760455667972565, -0.053450390696525574, -0.056088194251060486, -0.04388665780425072, 0.024483829736709595, 0.12171868979930878, 0.1062256470322609, -0.016406361013650894, 0.23571377992630005, 0.021638475358486176, 0.05576437711715698, 0.0376802459359169, 0.01771359145641327, -0.09346763789653778, -0.025394555181264877, -0.15572255849838257, -0.06169572472572327, 0.04216999188065529, 0.0015254849568009377, 0.026780273765325546, 0.08103466033935547, -0.2181314378976822, 0.09601594507694244, 0.021944155916571617, -0.027574311941862106, -0.007911352440714836, -0.004251557402312756, -0.05322417989373207, -0.003819875419139862, 0.08082529157400131, -0.26327231526374817, 0.21624603867530823, 0.256722092628479, 0.02626144327223301, 0.16894224286079407, 0.050996750593185425, 0.004770207218825817, -0.058284953236579895, -0.0540013425052166, -0.14063912630081177, -0.06600911915302277, 0.0355275496840477, 0.05337870121002197, 0.0288764089345932, -0.02525245025753975], [-0.1042390912771225, 0.16284030675888062, 0.11903014779090881, 0.02613009512424469, -0.04068271815776825, -0.020835034549236298, 0.01049359142780304, -0.07446729391813278, 0.05438835918903351, -0.10501502454280853, 0.2602006494998932, -0.01874161697924137, -0.230189248919487, -0.08700945973396301, -0.10373403131961823, 0.1505495011806488, -0.14736416935920715, -0.11884129047393799, -0.16000007092952728, -0.06844491511583328, 0.028319861739873886, 0.07365148514509201, -0.046282101422548294, -0.13979347050189972, -0.10783550143241882, -0.2500636577606201, -0.0911155715584755, -0.033536508679389954, 0.042646318674087524, -0.06750879436731339, 0.09947307407855988, 0.055826060473918915, -0.23613333702087402, -0.05195576697587967, -0.014339391142129898, 0.02031240612268448, -0.07179785519838333, 0.005832284688949585, 0.23063088953495026, 0.04929370805621147, -0.13204781711101532, 0.10439705848693848, 0.09557391703128815, 0.2883496880531311, 0.18067923188209534, -0.060669880360364914, -0.01932266168296337, -0.07579424232244492, 0.06624504923820496, -0.26271969079971313, 0.017245128750801086, 0.16004891693592072, 0.18473279476165771, 0.19105687737464905, 0.06282751262187958, -0.06536635756492615, 0.06561233848333359, 0.09400253742933273, -0.20724013447761536, 0.0812501460313797, 0.07261443883180618, -0.1823166012763977, -0.045576296746730804, 0.010109536349773407, 0.0706554502248764, 0.04018307477235794, 0.0041133202612400055, -0.19876228272914886, 0.2569095492362976, -0.1343332827091217, -0.030384358018636703, 0.13272181153297424, -0.017859522253274918, -0.10796927660703659, -0.2839658558368683, 0.07203469425439835, 0.2958102226257324, 0.1243138462305069, -0.1113274022936821, 0.04422959312796593, -0.07493289560079575, -0.09903129190206528, -0.01671912521123886, -0.02961677871644497, -0.06196910887956619, -0.06804271042346954, -0.06720016151666641, 0.09446606040000916, 0.2232370674610138, -0.04012007266283035, -0.019129464402794838, 0.21483927965164185, 0.04447809234261513, -0.08285266160964966, 0.06447736918926239, -0.0020461678504943848, -0.04670953005552292, -0.04751907289028168, -0.11333179473876953, 0.006548857316374779, 0.01862911321222782, -0.21776892244815826, -0.023590952157974243, 0.059399381279945374, -0.14543351531028748, 0.16694077849388123, -0.03042849525809288, -0.038740623742341995, -0.04898920655250549, -0.04851276054978371, -0.05560322105884552, 0.09075282514095306, 0.18599086999893188, -0.2002534568309784, 0.3122844099998474, 0.137400284409523, -0.05418869107961655, 0.07357603311538696, 0.10230869054794312, 0.07138828188180923, -0.06919069588184357, -0.08080382645130157, -0.12257422506809235, -0.17905209958553314, -0.01115567795932293, -0.009980800561606884, 0.03903305530548096, 0.05937756597995758], [-0.0020157936960458755, 0.05719413980841637, -0.03486020117998123, -0.04959247261285782, -0.020862460136413574, -0.05563712865114212, -0.012532420456409454, -0.11571963131427765, 0.16248369216918945, -0.1880836933851242, 0.09667368233203888, -0.0337410569190979, -0.18422774970531464, -0.11508496105670929, 0.12096342444419861, 0.09583514928817749, -0.22906078398227692, -0.1338162124156952, -0.13855460286140442, -0.08763439953327179, 0.07877399027347565, -0.0023711975663900375, 0.025339681655168533, -0.016060177236795425, -0.15973645448684692, -0.3102841377258301, -0.0921655222773552, -0.07129667699337006, 0.03036213293671608, -0.024218015372753143, 0.05820851773023605, -0.07406701147556305, -0.24001279473304749, -0.03630565106868744, -0.047554485499858856, 0.024636859074234962, -0.0573391318321228, -0.08735780417919159, 0.170437753200531, 0.015640951693058014, -0.1558881551027298, 0.04794501140713692, -0.0058030374348163605, 0.15820901095867157, 0.2578866183757782, 0.007541066966950893, 0.011279074475169182, -0.06112233176827431, 0.18913203477859497, -0.25954195857048035, 0.0045182183384895325, 0.120142363011837, 0.09616374969482422, 0.1094484031200409, 0.08489544689655304, -0.07003603130578995, 0.08477553725242615, 0.12082646042108536, -0.1974656879901886, 0.049053311347961426, 0.0658702701330185, -0.09509820491075516, 0.026869023218750954, 0.043985746800899506, 0.13802671432495117, 0.053369369357824326, -0.035134077072143555, -0.11826766282320023, 0.12222959101200104, -0.22186344861984253, -0.05921559035778046, -0.016065968200564384, -0.04774485155940056, -0.17431628704071045, -0.31576165556907654, 0.0006359247490763664, 0.30063650012016296, 0.16134309768676758, -0.16287454962730408, 0.002461019903421402, -0.04906187951564789, 0.005293665453791618, 0.10873261094093323, 0.02782095968723297, -0.07333026826381683, -0.04982742667198181, -0.12316464632749557, 0.05850140377879143, 0.24855777621269226, -0.05566451698541641, -0.007148556411266327, 0.24926884472370148, 0.018983740359544754, -0.02016403153538704, 0.051403895020484924, -0.003121323883533478, -0.11981888860464096, -0.0003308150917291641, -0.07423865795135498, 0.01840025559067726, 0.09328752756118774, -0.1484522968530655, 0.008828047662973404, 0.09753408282995224, -0.18187914788722992, 0.22078168392181396, -0.06644982099533081, -0.049482911825180054, -0.03113202564418316, -0.00498880073428154, -0.09273526072502136, -0.0021957047283649445, 0.11564494669437408, -0.14712998270988464, 0.19260264933109283, 0.2189834713935852, -0.027794737368822098, 0.16664664447307587, -0.009493228048086166, 0.10972683876752853, -0.09542205929756165, 0.038842204958200455, -0.15826913714408875, -0.11409258842468262, -0.04380257427692413, 0.09434815496206284, 0.059592247009277344, 0.04641905799508095]], "landmarks": [{"chin": [[-1.697253215723805, -0.7901647314451813], [-1.7152270962976919, -0.3658700628768916], [-1.6624851987768638, 0.061420252453712604], [-1.6097433012560358, 0.48871056778431676], [-1.4862856256404928, 0.9189965298772353], [-1.218400747073205, 1.2845580074000682], [-0.8798000904112028, 1.6531151316852153], [-0.538203786986886, 1.9509564778756472], [-0.046188987086195774, 2.0426417833065638], [0.5225328844338382, 1.9958911793103644], [1.0265302713837863, 1.8047133723624207], [1.5305276583337346, 1.6135355654144774], [1.8990847826188815, 1.2749349087524748], [2.129205997476913, 0.8596271804711286], [2.223886949670144, 0.2968966024757235], [2.2448564770063455, -0.19811384418728117], [2.268821651104861, -0.7638400689450007]], "left_eyebrow": [[-1.4701276476280878, -1.1347566816318126], [-1.3137178576270858, -1.4823442785807583], [-1.0248634517235968, -1.6117932477209302], [-0.7420003393447371, -1.5998106606716724], [-0.3914170956334768, -1.5141166487653854]], "right_eyebrow": [[0.10658899779184229, -1.5638628995238988], [0.5368749598847609, -1.6873205751394418], [0.8904538503583357, -1.6723423413278695], [1.2380414473072816, -1.5159325513268673], [1.5089219726368832, -1.2210868518987497]], "nose_bridge": [[-0.12353221706618939, -1.1485551712425526], [-0.13551480411544728, -0.8656920588636927], [-0.15049303792701965, -0.5121131683901179], [-0.23319140307099248, -0.23224570277357268]], "nose_tip": [[-0.5250414557367957, -0.032080955538685736], [-0.31588976821496534, 0.04762176284297263], [-0.10673808069313492, 0.12732448122463097], [0.10840490035332438, 0.06559564341685946], [0.3265435281620982, -0.06684897248562702]], "left_eye": [[-1.1225400506791419, -0.9783468916308103], [-0.9751172009650833, -1.1137871542956113], [-0.7629698666809384, -1.104800214008668], [-0.48310240106439306, -1.0221018488646951], [-0.7689611602055673, -0.963368657819238], [-0.9103927163949972, -0.9693599513438669]], "right_eye": [[0.4391983609292157, -1.0538742190493218], [0.5866212106432745, -1.1893144817141226], [0.7987685449274194, -1.1803275414271792], [1.0049245856869353, -1.0299090449508062], [0.7927772514027905, -1.0388959852377495], [0.5776342703563312, -0.9771671474299781]], "top_lip": [[-0.7671452576440851, 0.6660898851215203], [-0.4782908517405965, 0.5366409159813483], [-0.2631478706941372, 0.4749120781735768], [-0.051000536409992345, 0.4838990184605202], [0.16114679787415248, 0.4928859587474636], [0.4440099102530123, 0.5048685457967215], [0.7886018604396438, 0.7319941138924387], [0.7178860823449288, 0.7289984671301243], [0.15815115111183803, 0.5636017368421785], [-0.05699182993462129, 0.6253305746499501], [-0.26913916421876616, 0.6163436343630067], [-0.6257137014546553, 0.6720811786461494]], "bottom_lip": [[0.7886018604396438, 0.7319941138924387], [0.5027431012984693, 0.7907273049378958], [0.21688434215729505, 0.8494604959833528], [-0.0659787702215647, 0.8374779089340949], [-0.2074103264109946, 0.831486615409466], [-0.4902734387898544, 0.8195040283602081], [-0.7671452576440851, 0.6660898851215203], [-0.6257137014546553, 0.6720811786461494], [-0.2721348109810806, 0.6870594124577216], [-0.05998747669693576, 0.6960463527446651], [0.15215985758720907, 0.7050332930316084], [0.7178860823449288, 0.7289984671301243]], "transform": {"center": [423.43055555555554, 78.13888888888889], "scale": 14.128444488790672, "angle": -0.042336475010843026}}, {"chin": [[-2.3787700225216764, -0.8200369724627616], [-2.335074153030223, -0.24799972203624882], [-2.287955663623463, 0.25296069957636313], [-2.169760345402802, 0.757343741104281], [-1.9094113695543398, 1.2685720224628105], [-1.500063496247464, 1.64449188602415], [-1.0127935542960755, 1.881680711872994], [-0.45102416361548026, 2.0512153288232424], [0.11759046689572675, 2.078596288145689], [0.5474740596944379, 2.0280551788236236], [0.9165486834251658, 1.7608609631445495], [1.1468922694433976, 1.415744678820963], [1.3095816465630346, 0.9961289457681695], [1.4011941948687707, 0.5730905928000701], [1.421729914360606, 0.14662961991666495], [1.442265633852441, -0.2798313529667402], [1.3883019046150695, -0.6386381169515505]], "left_eyebrow": [[-1.4950444975171133, -1.418656992804199], [-1.2004693225155922, -1.618196999584678], [-0.909316767429377, -1.7466601775512565], [-0.4828557945459717, -1.726124458059421], [-0.20197109920567408, -1.641357149584297]], "right_eyebrow": [[0.4342977402041279, -1.5394767415326431], [0.7220276753750372, -1.5968630906853205], [1.0063349906306407, -1.5831726110240971], [1.2127202372417316, -1.4307510936503778], [1.2769518262250206, -1.28517481610727]], "nose_bridge": [[0.20053153427059006, -1.1232836283951555], [0.2613405033385733, -0.906630522038147], [0.3221494724065566, -0.6899774156811386], [0.379535821559234, -0.4022474805102292]], "nose_tip": [[-0.20619190852850236, -0.07424429576317183], [0.003615957997894392, 0.007100392796646649], [0.216846444439597, 0.01736825254256426], [0.3590001020673988, 0.024213492373176004], [0.5045763796105064, -0.04001809661011313]], "left_eye": [[-1.0856966242102375, -1.0427371292428593], [-0.8656208979379231, -1.1746229271247435], [-0.6523904114962205, -1.1643550673788259], [-0.5170819936990304, -1.0153561699204123], [-0.6592356513268322, -1.0222014097510241], [-0.8724661377685348, -1.0324692694969417]], "right_eye": [[0.47799360969558186, -0.9674394911061303], [0.6946467160525903, -1.0282484601741135], [0.9078772024942929, -1.017980600428196], [1.043185620291483, -0.8689817029697824], [0.9010319626636811, -0.8758269428003941], [0.6878014762219785, -0.8860948025463118]], "top_lip": [[-0.7379559093788672, 0.6125656529686958], [-0.3723039055634452, 0.41644826610352254], [-0.010074521663329089, 0.29140770805225014], [0.19973334486306762, 0.3727523966120686], [0.4129638313047703, 0.38302025635798626], [0.622771697831167, 0.4643649449178047], [0.6801580469838444, 0.7520948800887141], [0.6125038380852493, 0.6775954313595073], [0.33846438257556355, 0.4506744652565812], [0.19631072494776175, 0.4438292254259695], [-0.016919761493940835, 0.4335613656800519], [-0.6668790805649664, 0.6159882728840017]], "bottom_lip": [[0.6801580469838444, 0.7520948800887141], [0.5277365296101251, 0.958480126699805], [0.3821602520670175, 1.022711715683094], [0.09785293681141397, 1.0090212360218704], [-0.11537754963028865, 0.9987533762759528], [-0.4639164538691813, 0.8394866190716219], [-0.7379559093788672, 0.6125656529686958], [-0.6668790805649664, 0.6159882728840017], [-0.10853230979967693, 0.8565997186481512], [0.10469817664202569, 0.8668675783940688], [0.31792866308372836, 0.8771354381399865], [0.6125038380852493, 0.6775954313595073]], "transform": {"center": [631.9444444444445, 70.90277777777777], "scale": 14.052999191113337, "angle": -0.048116639447531695}}, {"chin": [[-1.4745409235532085, -0.7985923137562086], [-1.5510112564139213, -0.3902568699474092], [-1.4786247191949156, -0.024487222486505394], [-1.418983237452695, 0.409338332275865], [-1.2912858484090082, 0.8559089425150208], [-1.027476644762388, 1.3279696637077476], [-0.7509223856389824, 1.7319744775990078], [-0.46162307103879124, 2.0679233841888016], [0.014768280071474849, 2.1571387725262996], [0.5293947976120972, 2.042186438959398], [0.9887104633280386, 1.8464331426142446], [1.44802612904398, 1.650679846269091], [1.8647759984120258, 1.3060696798442188], [2.0773581458756714, 0.9232243469889903], [2.247374496991422, 0.391522144054043], [2.268533978027453, -0.09761426253300848], [2.3024385145402704, -0.6548065764215267]], "left_eyebrow": [[-1.4788715534707482, -1.1516169057403272], [-1.3598354242621395, -1.411095479469408], [-1.130177591404169, -1.5089721276419847], [-0.7644079439432651, -1.5813586648609907], [-0.5049293702141842, -1.4623225356523821]], "right_eyebrow": [[0.06500799915111938, -1.4964739064410317], [0.4307776466120232, -1.5688604436600375], [0.8518581458976081, -1.5604460181007915], [1.2347034787528368, -1.3478638706371453], [1.4686919415283466, -1.0927159268256037]], "nose_bridge": [[-0.21563005561399312, -1.1263736290625885], [-0.266610277521135, -0.8541499998567221], [-0.3175904994282768, -0.5819263706508558], [-0.300514814033952, -0.29695768596820415]], "nose_tip": [[-0.6237186651469602, -0.07571427866947963], [-0.4195509432425605, -0.037479112239123265], [-0.22812827681494618, 0.06881196149269969], [0.06958546334449107, -0.01631963120309164], [0.29924329620246176, -0.11419627937566842]], "left_eye": [[-1.164082127916986, -0.9517798137534667], [-1.002480202360482, -1.062401517402829], [-0.7855674249792967, -1.0922222582739392], [-0.5941447585516824, -0.9859311845421161], [-0.8110575359328676, -0.9561104436710058], [-1.0279703133140528, -0.9262897027998958]], "right_eye": [[0.4649290174006727, -0.998923074294734], [0.6265309429571768, -1.1095447779440963], [0.843443720338362, -1.1393655188152065], [1.0348663867659762, -1.0330744450833835], [0.8860095166862576, -0.9905086487354878], [0.6818417947818578, -1.0287438151658441]], "top_lip": [[-0.8872810345177479, 0.5793546833916153], [-0.6321330907062065, 0.3453662206161053], [-0.33441935054676913, 0.26023462792031393], [-0.1302516286423694, 0.29846979435067034], [0.222772963341749, 0.29413916443313104], [0.643853462627334, 0.30255358999237725], [1.0947547027840292, 0.5278807929328087], [0.9586428881810958, 0.5023906819792376], [0.21002790786496356, 0.36219507173459764], [-0.08768583229447371, 0.44732666443038893], [-0.3599094615003401, 0.39634644252324713], [-0.8192251272162814, 0.5920997388684007]], "bottom_lip": [[1.0947547027840292, 0.5278807929328087], [0.6780048334159834, 0.8724909593576808], [0.21868916770004213, 1.0682442557028342], [-0.06627951698260964, 1.085319941097159], [-0.35124820166526144, 1.102395626491484], [-0.6660376272190235, 0.9025585345046233], [-0.8872810345177479, 0.5793546833916153], [-0.8192251272162814, 0.5920997388684007], [-0.3810689425363717, 0.8854828491102987], [-0.09610025785371985, 0.8684071637159739], [0.1888684268289319, 0.8513314783216491], [0.9586428881810958, 0.5023906819792376]], "transform": {"center": [254.05555555555554, 68.41666666666667], "scale": 14.442721585287291, "angle": -0.18512895632038498}}, {"chin": [[-2.3002913712961552, -0.7750690824039792], [-2.246568386273092, -0.2877142464013176], [-2.192845401250029, 0.19964058960134404], [-2.069500296798014, 0.6793207134578537], [-1.8765330729170473, 1.1513261251682116], [-1.4900489150415295, 1.4610631615822103], [-1.0339426377370604, 1.7631254858500571], [-0.5235636652959428, 1.918268859113849], [0.04876271442797414, 1.996115400802537], [0.6057396698595874, 1.9347177036333219], [0.93082613056589, 1.6874777846157076], [1.2405631669798887, 1.30099362674019], [1.4110559645359841, 0.9298588931569758], [1.5042519305169761, 0.4967767522909622], [1.5974478964979684, 0.0636946114249485], [1.6906438624789601, -0.3693875294410652], [1.7142177090310005, -0.794794958160927]], "left_eyebrow": [[-1.58817104260075, -1.3468457520143113], [-1.3327067013233993, -1.586410958885774], [-0.9226486968958412, -1.702081351191637], [-0.5049159803221313, -1.7481296240685484], [-0.13378124673891736, -1.5776368265124527]], "right_eyebrow": [[0.36124830140989617, -1.5617376921065644], [0.6397367791257028, -1.592436540691172], [0.9878473762704612, -1.6308101014219314], [1.289359990424723, -1.4526425917196841], [1.4593030778672342, -1.1895035382961814]], "nose_bridge": [[0.12113338442484894, -1.1829282463771986], [0.1518322330094565, -0.904439768661392], [0.18253108159406406, -0.6259512909455853], [0.21322993017867165, -0.3474628132297788]], "nose_tip": [[-0.2511007693855343, -0.08487346991986058], [-0.0345596989525274, -0.0382754869293646], [0.1123592520515278, 0.015997208207283273], [0.32122561033838276, -0.007026928231172399], [0.4604698491962861, -0.022376352523476185]], "left_eye": [[-1.062442645867329, -1.0524581398926165], [-0.9308731191555779, -1.1374296836138718], [-0.7220067608687228, -1.1604538200523276], [-0.49779097828956403, -1.04423371763288], [-0.706657336576419, -1.0212095811944244], [-0.9155236948632741, -0.9981854447559687]], "right_eye": [[0.5618902374370145, -1.0201101609672552], [0.693459764148766, -1.1050817046885106], [0.9796229540107243, -1.0661584338441663], [1.1342166171609318, -0.9422636192785668], [0.9253502588740766, -0.9192394828401111], [0.7164839005872217, -0.8962153464016555]], "top_lip": [[-0.654033771780525, 0.7346928288216709], [-0.32127259892807053, 0.5570750292330081], [-0.050458833358415806, 0.4567540612194489], [0.09646011764563939, 0.5110267563560967], [0.2357043565035427, 0.495677332063793], [0.45992013908270146, 0.6118974344832406], [0.699485345954164, 0.8673617757605916], [0.5525663949501087, 0.8130890806239437], [0.2510537807958465, 0.6349215709216963], [0.11180954193794317, 0.650270995214], [-0.10473152849506369, 0.603673012223504], [-0.5147895329226218, 0.7193434045293671]], "bottom_lip": [[0.699485345954164, 0.8673617757605916], [0.4286715803845092, 0.9676827437741506], [0.2121305099515024, 0.9210847607836548], [0.07288627109359909, 0.9364341850759585], [-0.14365479933940778, 0.8898362020854625], [-0.3601958697724146, 0.8432382190949665], [-0.654033771780525, 0.7346928288216709], [-0.5147895329226218, 0.7193434045293671], [-0.0893821042027599, 0.7429172510814074], [0.049862134655143414, 0.7275678267891036], [0.2664032050881503, 0.7741658097795996], [0.5525663949501087, 0.8130890806239437]], "transform": {"center": [135.43055555555554, 70.59722222222223], "scale": 14.276771203169654, "angle": 0.10979054500469008}}, {"chin": [[-1.7557342299016505, -0.4934936834414703], [-1.7909420857245282, -0.0783018773076746], [-1.7569513071917735, 0.34275790479660084], [-1.7229605286590186, 0.763817686900876], [-1.6139031398001515, 1.1215468106199984], [-1.3664484822300191, 1.49101188628008], [-1.0439272143337748, 1.7971463035550088], [-0.5712727257853056, 1.9766194040596312], [-0.0176836509402446, 2.0235632118234683], [0.5417733998752959, 2.001308385231673], [0.9745691339205308, 1.8289203379876529], [1.413232843936245, 1.587333656388], [1.7134992852406938, 1.334011022847388], [1.962171020100949, 0.8672245102693987], [2.072445486249939, 0.38870204575045], [2.1135213180432966, -0.09568839473897839], [2.1545971498366536, -0.5800788352284068]], "left_eyebrow": [[-1.4953265431004361, -1.0986774647307251], [-1.3334573705072523, -1.3637360502122962], [-0.97572824678813, -1.4727934390711634], [-0.6238670990394872, -1.5126521935743977], [-0.2837419032318037, -1.4141136793663671]], "right_eyebrow": [[0.21238448919858394, -1.5114351162842747], [0.5701136129177062, -1.620492505143142], [0.9219747606663491, -1.6603512596463763], [1.3254306148591857, -1.4867461351122333], [1.584621224370277, -1.255678328163417]], "nose_bridge": [[-0.030419269691191728, -1.113847238061918], [-0.048023197602630616, -0.9062513349950202], [-0.13482575986970213, -0.704523407898602], [-0.15242968778114102, -0.4969275048317041]], "nose_tip": [[-0.5336307153821819, -0.1110755785503065], [-0.3260348123152841, -0.0934716506388676], [-0.04924027489275355, -0.06999974675694907], [0.16422360414462395, -0.12159445320114282], [0.4468861175376341, -0.1673211836748569]], "left_eye": [[-1.1669372992337117, -0.8617416818114291], [-0.9476054442258548, -0.9825350226112554], [-0.7400095411589568, -0.9649310946998164], [-0.532413638092059, -0.9473271667883776], [-0.7458775171294365, -0.8957324603441839], [-0.9534734201963344, -0.9133363882556228]], "right_eye": [[0.5173018291833896, -0.9977047959424484], [0.7366336841912468, -1.1184981367422746], [0.9442295872581445, -1.1008942088308358], [1.1459575143545628, -1.0140916465637644], [1.0075602456432977, -1.0258275985047236], [0.7999643425763997, -1.0434315264161624]], "top_lip": [[-0.944171622835621, 0.6207695195092542], [-0.643905181531172, 0.3674468859686422], [-0.28617605781204963, 0.25838949710977516], [-0.0785801547451517, 0.27599342502121404], [0.2040823586478584, 0.23026669454749996], [0.6134061888111746, 0.3346731847260104], [0.9476634086483783, 0.5024103332896738], [0.809266139937113, 0.49067438134871444], [0.19234640670689915, 0.36866396325876516], [-0.02111747233047835, 0.4202586697029589], [-0.29791200975300886, 0.3967867658210404], [-0.7999063781538761, 0.5633068370945808]], "bottom_lip": [[0.9476634086483783, 0.5024103332896738], [0.5723303570178171, 0.8190636252154386], [0.21460123329869474, 0.9281210140743057], [-0.06806128009431539, 0.9738477445480199], [-0.2756571831612133, 0.956243816636581], [-0.6157823789688968, 0.8577053024285501], [-0.944171622835621, 0.6207695195092542], [-0.7999063781538761, 0.5633068370945808], [-0.327251889605407, 0.7427799375992035], [-0.05045735218287651, 0.766251841481122], [0.23220516121013363, 0.7205251110074079], [0.809266139937113, 0.49067438134871444]], "transform": {"center": [839.7916666666666, 101.94444444444444], "scale": 14.399472593008054, "angle": -0.08459662694886755}}]},
{
"embedding": [
[-0.05047506093978882, 0.0639239251613617, 0.06936916708946228, -0.07864393293857574, -0.16411951184272766, -0.05649830028414726, -0.04501872509717941, -0.12559492886066437, 0.15007518231868744, -0.16129593551158905, 0.12279942631721497, -0.08525452017784119, -0.2628832161426544, 0.026748942211270332, -0.01278434693813324, 0.198764830827713, -0.1300668865442276, -0.21234656870365143, -0.10080989450216293, -0.1389855146408081, -0.020083993673324585, 0.09147071838378906, -0.015864986926317215, 0.0812872052192688, -0.12700282037258148, -0.2744438648223877, -0.1016920655965805, -0.02624490112066269, 0.0836949273943901, -0.04910460114479065, -0.07193820178508759, 0.17374226450920105, -0.14368996024131775, -0.00249573215842247, 0.14470334351062775, 0.22621287405490875, -0.06579645723104477, -0.14543138444423676, 0.13324645161628723, -0.019674470648169518, -0.21824951469898224, -0.04626104235649109, 0.14179183542728424, 0.18717746436595917, 0.22158831357955933, -0.06294713169336319, 0.005746772512793541, -0.04745905473828316, 0.06644069403409958, -0.2251453548669815, 0.0414922721683979, 0.1681286096572876, 0.1174229308962822, 0.11184985935688019, 0.116187684237957, -0.18381977081298828, 0.009330572560429573, 0.1939965784549713, -0.17074644565582275, 0.0014174086973071098, 0.09514805674552917, -0.20736095309257507, -0.03553611412644386, -0.09248945862054825, 0.15855731070041656, 0.10396324098110199, -0.12217070907354355, -0.1989610642194748, 0.19399704039096832, -0.2369043380022049, -0.09624743461608887, 0.06430646032094955, -0.08953763544559479, -0.0691644549369812, -0.2984252870082855, -0.042378369718790054, 0.3559039235115051, 0.1801249086856842, -0.07808975130319595, 0.1219063252210617, -0.00725147221237421, -0.02597016841173172, -0.06050863489508629, 0.08166560530662537, -0.10541193932294846, -0.002566773444414139, -0.10100892186164856, 0.023352116346359253, 0.17717544734477997, 0.005031498149037361, 0.022332994267344475, 0.17689891159534454, -0.05478142946958542, 0.01481572911143303, 0.03902428597211838, 0.021619215607643127, -0.14213138818740845, -0.11053464561700821, -0.09508771449327469, -0.0867612212896347, -0.05295700207352638, -0.15291298925876617, -0.012038879096508026, 0.1390286386013031, -0.17400133609771729, 0.11245352029800415, -0.06881986558437347, -0.005559179931879044, -0.03666757792234421, 0.03146056830883026, -0.07429908215999603, -0.02329374849796295, 0.16121073067188263, -0.2800193727016449, 0.11037744581699371, 0.16458727419376373, 0.012151286005973816, 0.13081879913806915, 0.102030910551548, 0.0980377048254013, 0.0004788418300449848, -0.10133334249258041, -0.13765329122543335, -0.1173965334892273, 0.022036008536815643, -0.048008374869823456, 0.026970617473125458, 0.08585959672927856],
[-0.14247934520244598, 0.03416353836655617, 0.11294547468423843, -0.033350106328725815, -0.0671447217464447, -0.1055692732334137, 0.0486530140042305, -0.13869154453277588, 0.13520219922065735, -0.0736580640077591, 0.2544824779033661, -0.025220654904842377, -0.2516995668411255, -0.06030314415693283, -0.018723685294389725, 0.20693597197532654, -0.19733208417892456, -0.18390542268753052, -0.05775319039821625, -0.1516035795211792, -0.03322233259677887, 0.04227630794048309, 0.03279285877943039, 0.05017125606536865, -0.06561247259378433, -0.2698996663093567, -0.12969303131103516, -0.1405840516090393, 0.05809032917022705, -0.04670005291700363, 0.05652366951107979, 0.12632495164871216, -0.21658989787101746, -0.042338110506534576, 0.044437672942876816, -0.01210903562605381, 0.060857757925987244, -0.06791539490222931, 0.18363569676876068, -0.006446496583521366, -0.15288472175598145, -0.0907897800207138, 0.13776694238185883, 0.23787684738636017, 0.20033672451972961, -0.019773811101913452, -0.013021458871662617, -0.020642120391130447, 0.06815499067306519, -0.2506023645401001, 0.006010544020682573, 0.09141694009304047, 0.1384858787059784, 0.08775536715984344, -0.01174313947558403, -0.21417135000228882, -0.004237852990627289, 0.09430966526269913, -0.1883815973997116, 0.042268186807632446, 0.021630430594086647, -0.07890795171260834, -0.06716103851795197, -0.012744085863232613, 0.2822016775608063, 0.11786919832229614, -0.13671863079071045, -0.0879589319229126, 0.26819562911987305, -0.1391105353832245, -0.010754333809018135, 0.06540969759225845, -0.17642751336097717, -0.09209661185741425, -0.23794150352478027, -0.014874372631311417, 0.4068654179573059, 0.030511880293488503, -0.13115420937538147, 0.046547114849090576, -0.1580701321363449, 0.03314262256026268, -0.09818331152200699, 0.0642174631357193, -0.10494135320186615, 0.026365846395492554, -0.054875873029232025, 0.012225370854139328, 0.17128399014472961, 0.006853087805211544, -0.011294195428490639, 0.26497161388397217, -0.04052598774433136, 0.019480086863040924, 0.06489495187997818, 0.04219897836446762, 0.006559306755661964, -0.11810163408517838, -0.13155275583267212, -0.06392759084701538, -0.07237949222326279, -0.10560326278209686, -0.0034705083817243576, 0.12240089476108551, -0.20816481113433838, 0.11504638940095901, 0.019407885149121284, 0.02935737743973732, -0.04986897110939026, 0.06292781233787537, 0.03189244121313095, -0.03792870044708252, 0.13272054493427277, -0.21558913588523865, 0.19342894852161407, 0.1724391132593155, -0.03276817500591278, 0.14504317939281464, -0.047994211316108704, 0.10828940570354462, -0.07671640813350677, -0.09620724618434906, -0.106503926217556, -0.04919412359595299, 0.0537228062748909, -0.08173006772994995, 0.009381648153066635, 0.07392790913581848],
[-0.11810098588466644, 0.21543052792549133, 0.018386617302894592, -0.04612232372164726, -0.1031479686498642, 0.09382597357034683, -0.0066434768959879875, -0.051032427698373795, 0.15354111790657043, 0.06191878765821457, 0.24289651215076447, -0.0836135521531105, -0.25223293900489807, -0.10495363175868988, -0.009746700525283813, 0.1217905580997467, -0.14335796236991882, -0.09762610495090485, -0.08990896493196487, -0.08863424509763718, 0.031486332416534424, 0.002807002514600754, 0.028911076486110687, 0.07465669512748718, -0.12545420229434967, -0.2880759537220001, 0.0024891849607229233, -0.07496223598718643, 0.05508431792259216, -0.12152066826820374, -0.017600208520889282, 0.047897227108478546, -0.1959763616323471, -0.01901184394955635, 0.04913608357310295, 0.09845178574323654, -0.034073423594236374, -0.031656794250011444, 0.1846616566181183, -0.006598753854632378, -0.10341373085975647, 0.013291392475366592, -0.0010901764035224915, 0.31275323033332825, 0.20372319221496582, 0.0007259044796228409, 0.004562823101878166, -0.07770109176635742, 0.14401020109653473, -0.1551842987537384, 0.0733983963727951, 0.22659973800182343, 0.17971092462539673, 0.030213642865419388, 0.06345178186893463, -0.12648944556713104, 0.009373636916279793, 0.14884400367736816, -0.18351750075817108, 0.0003880402073264122, 0.048721566796302795, -0.06604760885238647, -0.05527252331376076, -0.15328776836395264, 0.19639906287193298, 0.11659330874681473, -0.11250396072864532, -0.18105120956897736, 0.10893856734037399, -0.07019247859716415, -0.025500349700450897, 0.11239276826381683, -0.1406955122947693, -0.1303151249885559, -0.28453174233436584, 0.052386678755283356, 0.39055755734443665, 0.08649647235870361, -0.2702312469482422, -0.037880994379520416, -0.07023868709802628, 0.000333491712808609, 0.03747718408703804, 0.06586520373821259, -0.14641904830932617, -0.04817819222807884, -0.10765081644058228, 0.009475193917751312, 0.15371431410312653, -0.035615161061286926, -0.057626545429229736, 0.1473119854927063, 0.02751540020108223, -0.050674159079790115, 0.016837313771247864, -0.003299407660961151, -0.06634663045406342, 0.00921713002026081, -0.05308438092470169, -0.014170985668897629, -0.04324531555175781, -0.17566446959972382, -0.025188036262989044, 0.062387946993112564, -0.25321444869041443, 0.13814638555049896, 0.04361344501376152, 0.011588186025619507, -0.04183034598827362, -0.031901873648166656, -0.06575536727905273, 0.01677451655268669, 0.18475671112537384, -0.37277641892433167, 0.2002633512020111, 0.1298503875732422, 0.00428958423435688, 0.13744275271892548, 0.0007128786528483033, 0.14133867621421814, -0.031128698959946632, 0.014805559068918228, -0.043341174721717834, -0.08968769013881683, 0.03130367770791054, -0.035644955933094025, 0.04750663787126541, 0.019581494852900505],
[-0.03679931163787842, 0.07211221754550934, 0.06987521052360535, -0.07294222712516785, -0.16884545981884003, 0.05726059153676033, -0.008301129564642906, -0.14653192460536957, 0.2710045874118805, -0.14738285541534424, 0.13569757342338562, 0.005806509405374527, -0.14892154932022095, 0.10486943274736404, -0.029429681599140167, 0.1249859407544136, -0.028891677036881447, -0.2237088829278946, -0.1277209371328354, -0.11488073319196701, -0.0114683136343956, -0.009931469336152077, -0.019119972363114357, 0.03507610782980919, -0.1851341724395752, -0.22481480240821838, -0.11161830276250839, -0.0968683660030365, 0.06641555577516556, -0.07281796634197235, 0.026265762746334076, 0.13184230029582977, -0.17698794603347778, -0.0031113363802433014, 0.04152767360210419, 0.0719347670674324, -0.059572041034698486, -0.13024108111858368, 0.2853773832321167, -0.01461617462337017, -0.16832329332828522, 0.008593079634010792, 0.11893938481807709, 0.1840357780456543, 0.15450793504714966, -0.006352240219712257, 0.10350431501865387, -0.12799830734729767, 0.1692039966583252, -0.22306105494499207, 0.04042649641633034, 0.13465607166290283, 0.10150749981403351, 0.1456003189086914, 0.11835004389286041, -0.19989019632339478, 0.05011501908302307, 0.10577018558979034, -0.1860390454530716, 0.156161367893219, 0.02674371562898159, -0.06830748915672302, -0.06371035426855087, -0.07381163537502289, 0.3437283933162689, 0.15480171144008636, -0.10011540353298187, -0.15936578810214996, 0.2586671710014343, -0.1287662237882614, -0.06267212331295013, 0.15066853165626526, -0.15589593350887299, -0.1296558678150177, -0.20397739112377167, 0.021504493430256844, 0.4862707555294037, 0.09657184779644012, -0.1803164780139923, 0.04310685396194458, -0.09377167373895645, -0.06186371669173241, -0.022522922605276108, 0.10676778107881546, -0.052263226360082626, -0.10335850715637207, -0.020695924758911133, -0.00636504590511322, 0.3736552894115448, -0.032826945185661316, -0.021977368742227554, 0.20106199383735657, 0.05334515869617462, -0.03322790563106537, -0.0591040700674057, 0.07726708054542542, -0.12302209436893463, -0.06181672215461731, -0.09867828339338303, -0.055462758988142014, -0.02301304042339325, -0.01741718500852585, -0.028994958847761154, 0.1376456916332245, -0.2107892483472824, 0.13838009536266327, -0.05703815817832947, -0.060528337955474854, -0.06573237478733063, 0.03594332933425903, -0.09018006920814514, -0.042296409606933594, 0.18676447868347168, -0.3109021782875061, 0.17538248002529144, 0.10497380793094635, -0.020324818789958954, 0.10082454979419708, 0.007624353282153606, 0.1464540958404541, 0.0682426318526268, 0.016711272299289703, -0.11353655159473419, -0.1031053438782692, 0.04721498861908913, -0.03758697584271431, -0.04005724936723709, 0.08941937237977982],
[-0.2413208931684494, 0.07159423828125, 0.08277155458927155, -0.039062608033418655, -0.11093802750110626, 0.023687046021223068, 0.09060226380825043, 0.04219276085495949, 0.2033793330192566, -0.04105875641107559, 0.15696294605731964, -0.051666565239429474, -0.2535765469074249, 0.017379216849803925, -0.028264421969652176, 0.10914270579814911, -0.12462104111909866, -0.09943343698978424, -0.18710632622241974, -0.04988965764641762, 0.009256284683942795, 0.048292070627212524, -0.007335685193538666, 0.09083817899227142, -0.09055241197347641, -0.3349895775318146, -0.04888031631708145, -0.15519562363624573, 0.11902487277984619, -0.1376190483570099, 0.0049394117668271065, 0.03944871202111244, -0.19309532642364502, -0.12565107643604279, -0.016817284747958183, 0.09523379057645798, -0.09579887241125107, -0.09300727397203445, 0.2736780345439911, 0.0017732996493577957, -0.17381730675697327, 0.013713357970118523, 0.09738798439502716, 0.32033222913742065, 0.12648077309131622, 0.021593280136585236, 0.005745655857026577, -0.08151374757289886, 0.1324179768562317, -0.2980165183544159, 0.0673791691660881, 0.13102677464485168, 0.1688060611486435, 0.11148636043071747, 0.12166565656661987, -0.1938769370317459, 0.09916414320468903, 0.08030934631824493, -0.28333625197410583, 0.21938738226890564, 0.045669782906770706, -0.05465266853570938, -0.09438516199588776, -0.038643330335617065, 0.1696290224790573, 0.1182205006480217, -0.09649894386529922, -0.2052980661392212, 0.14110828936100006, -0.2106872946023941, 0.02216552570462227, 0.24478307366371155, -0.057766713201999664, -0.2000596821308136, -0.21105168759822845, 0.052563779056072235, 0.4513603448867798, 0.18095122277736664, -0.19934262335300446, -0.02407245524227619, -0.07188807427883148, -0.14947456121444702, 0.06128019094467163, 0.1539742648601532, -0.11455541849136353, -0.03634266182780266, -0.08103857189416885, 0.06177240237593651, 0.16927719116210938, 0.0602848157286644, -0.04773399606347084, 0.23484453558921814, 0.12507443130016327, -0.03744340315461159, 0.0028360066935420036, 0.04042565077543259, -0.1391838639974594, -0.04662252962589264, -0.11424238979816437, -0.053775690495967865, 0.1088617816567421, -0.10449469089508057, -0.03876141086220741, 0.0215735025703907, -0.17061474919319153, 0.1952584981918335, -0.0174443069845438, -0.03866308555006981, -0.012996561825275421, -0.04743785038590431, -0.12715446949005127, 0.06767265498638153, 0.22546161711215973, -0.27003607153892517, 0.18621496856212616, 0.15854382514953613, -0.006932314485311508, 0.09158152341842651, 0.0835384875535965, 0.04824915900826454, 0.0545148067176342, 0.019669782370328903, -0.16913501918315887, -0.06709079444408417, 0.06645075976848602, -0.10338694602251053, 0.07691757380962372, 0.006324867717921734],
[-0.033896662294864655, 0.0992349311709404, -0.002473141998052597, 0.023185936734080315, 0.01917441561818123, 0.001026905607432127, 0.016044877469539642, -0.1025126576423645, 0.13515962660312653, -0.07683141529560089, 0.269573837518692, 0.010664336383342743, -0.20357967913150787, -0.10130295902490616, 0.06030445545911789, 0.10414400696754456, -0.21008071303367615, -0.10763619840145111, -0.13130682706832886, -0.04006556421518326, 0.0406392365694046, 0.06500069797039032, -0.002296946942806244, -0.017607517540454865, -0.16838623583316803, -0.3958863317966461, -0.0955645889043808, -0.0984412133693695, 0.1436794102191925, -0.08370321989059448, 0.04417722299695015, 0.04722050204873085, -0.19341005384922028, -0.0648522675037384, 0.0066307224333286285, 0.002936488948762417, -0.04175123572349548, -0.03828978165984154, 0.18820807337760925, 0.1275654435157776, -0.21626678109169006, 0.06899434328079224, -0.036235883831977844, 0.3274737298488617, 0.22882941365242004, -0.026057355105876923, 0.013206668198108673, -0.14257583022117615, 0.06640288233757019, -0.20635998249053955, 0.006900825072079897, 0.20021378993988037, 0.14495983719825745, 0.13331255316734314, 0.05920611321926117, -0.06387332081794739, 0.04898400604724884, 0.06256580352783203, -0.23374909162521362, 0.028862789273262024, 0.09499148279428482, -0.04133057966828346, 0.06963719427585602, -0.04466583952307701, 0.08956154435873032, -0.0010259412229061127, -0.07286527752876282, -0.09232638031244278, 0.12276872992515564, -0.17169690132141113, -0.05561533570289612, 0.03794235736131668, -0.10203078389167786, -0.21449586749076843, -0.36691519618034363, 0.03645501285791397, 0.3000624179840088, 0.16786359250545502, -0.18622665107250214, 0.007463058456778526, -0.07528389245271683, -0.03174635395407677, 0.12580622732639313, 0.08744154870510101, -0.06239469721913338, -0.08085326105356216, -0.01649436540901661, 0.051256872713565826, 0.1646513193845749, 0.004490066319704056, -0.005950341001152992, 0.2291063368320465, -0.04149049147963524, -0.023715656250715256, 0.07143032550811768, 0.08733627200126648, -0.11933352053165436, 0.008137833327054977, -0.056922443211078644, 0.012954019010066986, -0.007962987758219242, -0.12987120449543, 0.06624922156333923, 0.1600598692893982, -0.19143089652061462, 0.22811183333396912, 0.010511273518204689, -0.007568201050162315, 0.11425629258155823, 0.032196976244449615, -0.036541324108839035, -0.06687194854021072, 0.14608360826969147, -0.23187682032585144, 0.22537504136562347, 0.24459706246852875, -0.04615486413240433, 0.09521602094173431, 0.024648694321513176, 0.11417257785797119, -0.16455458104610443, 0.011920250952243805, -0.2097359001636505, -0.04408828169107437, -0.029356349259614944, -0.014193457551300526, -0.037317827343940735, -0.0445365384221077],
[-0.020975828170776367, 0.1500093936920166, 0.02963605709373951, -0.007530026137828827, -0.1248512789607048, 0.06678735464811325, -0.03889617323875427, -0.05295056849718094, 0.06715782731771469, 0.010385156609117985, 0.2543479800224304, -0.007981235161423683, -0.22565574944019318, -0.08579497039318085, -0.08024228364229202, 0.09243239462375641, -0.1449413299560547, -0.14280007779598236, -0.08528971672058105, -0.009356359019875526, 0.021257974207401276, 0.03318827599287033, 0.023585103452205658, 0.07269452512264252, -0.06860370934009552, -0.3690449893474579, -0.07338878512382507, -0.06644236296415329, 0.09963652491569519, -0.12699438631534576, -0.010189533233642578, 0.08952581882476807, -0.16758838295936584, -0.10144677758216858, 0.04283910244703293, 0.07512166351079941, -0.11117026209831238, -0.08094426989555359, 0.20319245755672455, 0.05161161720752716, -0.1128532737493515, 0.08625290542840958, 0.033684324473142624, 0.3695742189884186, 0.13384023308753967, 0.05277201160788536, 0.05655263736844063, -0.07602493464946747, 0.04629584401845932, -0.2161746621131897, 0.02716866508126259, 0.20568077266216278, 0.1677255630493164, 0.09698657691478729, 0.03371882811188698, -0.19025444984436035, 0.0824817642569542, 0.1295851171016693, -0.19121769070625305, 0.12061411887407303, -0.019577056169509888, -0.14030689001083374, 0.03136356174945831, -0.09438256919384003, 0.23523668944835663, 0.06376867741346359, -0.049005985260009766, -0.18241390585899353, 0.20990636944770813, -0.0670882910490036, -0.08895979076623917, 0.11193303763866425, -0.0846957415342331, -0.1252707540988922, -0.21552790701389313, 0.022225352004170418, 0.42089390754699707, 0.13384224474430084, -0.23992149531841278, 0.014370450749993324, -0.14588582515716553, -0.051697880029678345, -0.005805302411317825, 0.04159766808152199, -0.10426529496908188, -0.09823620319366455, -0.18530263006687164, -0.027915358543395996, 0.18682457506656647, 0.006972765550017357, -0.05318703502416611, 0.1692952662706375, 0.056937675923109055, 0.013405272737145424, 0.12984642386436462, 0.026123568415641785, -0.16324928402900696, 0.0652320608496666, -0.1265556365251541, -0.05110984668135643, -0.011259833350777626, -0.21070468425750732, -0.02455189824104309, 0.09343570470809937, -0.18723201751708984, 0.19558316469192505, 0.016554031521081924, -0.009614124894142151, 0.041257187724113464, 0.010435931384563446, -0.10262644290924072, 0.013042926788330078, 0.21994934976100922, -0.3609333634376526, 0.26851627230644226, 0.1874135434627533, 0.10097505152225494, 0.15954335033893585, 0.10716712474822998, 0.11200623214244843, -0.06703604757785797, -0.08473677933216095, -0.1855500489473343, -0.12023141980171204, 0.016524553298950195, -0.07484173029661179, 0.008892969228327274, 0.060623131692409515],
[-0.21573299169540405, 0.11356934905052185, 0.1577225625514984, -0.02355402335524559, -0.05507434904575348, -0.04948558285832405, 0.022902922704815865, -0.0826394259929657, 0.11755389720201492, -0.08587191253900528, 0.30247071385383606, 0.00019080936908721924, -0.20979341864585876, -0.11496424674987793, 0.08881234377622604, 0.12748804688453674, -0.2277202010154724, -0.1423226296901703, -0.08439821749925613, -0.1667936146259308, -0.05707713961601257, 0.01753487065434456, -0.014590933918952942, 0.0072789303958415985, -0.06293629854917526, -0.3044910132884979, -0.09694035351276398, -0.19754016399383545, 0.055445022881031036, -0.07291550189256668, 0.10726306587457657, -0.04093504324555397, -0.19275729358196259, -0.019294943660497665, -0.09930850565433502, -0.03502766415476799, 0.054606325924396515, -0.07595115154981613, 0.20440280437469482, -0.03131432086229324, -0.09607291221618652, -0.1151181161403656, -0.039607275277376175, 0.24756130576133728, 0.17963755130767822, -0.039581187069416046, 0.002954578958451748, 0.058948665857315063, 0.024132966995239258, -0.23092103004455566, 0.029269399121403694, 0.11385709047317505, 0.08085528016090393, 0.04748402163386345, -0.05314019322395325, -0.1259455382823944, -0.03729153424501419, 0.0418756864964962, -0.16025511920452118, 0.03477996960282326, 0.03764035180211067, -0.13556334376335144, -0.09314176440238953, 0.011484825983643532, 0.2988947331905365, 0.15921568870544434, -0.07526832818984985, -0.15256734192371368, 0.1629021018743515, -0.14690926671028137, -0.07304037362337112, 0.04590042307972908, -0.18887203931808472, -0.08143244683742523, -0.30030274391174316, 0.09673486649990082, 0.36549022793769836, 0.05977696180343628, -0.17472787201404572, -0.04048093780875206, -0.2130645215511322, 0.031709372997283936, 0.013959013856947422, 0.058614540845155716, -0.06974852085113525, -1.4603137969970703e-05, -0.10144360363483429, 0.051676444709300995, 0.17010924220085144, -0.025171108543872833, -0.09979043900966644, 0.22683387994766235, -0.0255589559674263, -0.015463199466466904, 0.03218100592494011, -0.037546928972005844, 0.08393024653196335, -0.09591967612504959, -0.05110381171107292, -0.02602110430598259, 0.09864261746406555, -0.034341126680374146, -0.006416216492652893, 0.11954841017723083, -0.18282388150691986, 0.08374468237161636, 0.01444653607904911, 0.00847460888326168, -0.002134772017598152, 0.015101321041584015, -0.0652320608496666, -0.08127158135175705, 0.2292313128709793, -0.1400880068540573, 0.18461374938488007, 0.21643751859664917, -0.019530247896909714, 0.15077288448810577, 0.01934942789375782, 0.09139518439769745, -0.10296115279197693, -0.031142864376306534, -0.11312081664800644, -0.009786885231733322, 0.03733498975634575, 0.045611776411533356, 0.05664070323109627, 0.06508475542068481],
[-0.2360149770975113, 0.12618157267570496, 0.17877177894115448, -0.14711862802505493, -0.13995055854320526, -0.02681036666035652, -0.010500770062208176, -0.09765388816595078, 0.13253162801265717, -0.02808840572834015, 0.2006097137928009, -0.08152011781930923, -0.27454569935798645, -0.0823575109243393, 0.04721007123589516, 0.2503427565097809, -0.10638339072465897, -0.17270676791667938, -0.09171411395072937, -0.03586338460445404, 0.014681383967399597, 0.047361910343170166, -0.03707129508256912, 0.07446295022964478, -0.16537019610404968, -0.31825873255729675, -0.08702846616506577, -0.05441249907016754, -0.11535726487636566, -0.09924419969320297, 0.034958355128765106, 0.1347791999578476, -0.17173057794570923, -0.007512480020523071, 0.010040011256933212, 0.20245207846164703, -0.08831074833869934, -0.13888505101203918, 0.11514526605606079, -0.02307787910103798, -0.24935850501060486, -0.003018409013748169, 0.07921804487705231, 0.23095814883708954, 0.22147272527217865, -0.02479720488190651, 0.043812189251184464, -0.05487487465143204, 0.10543552041053772, -0.324978768825531, 0.005107723642140627, 0.16764920949935913, 0.01365751400589943, 0.07413442432880402, 0.07959756255149841, -0.10858306288719177, 0.05035535246133804, 0.08629019558429718, -0.3078450560569763, -0.012925366871058941, 0.0706830844283104, -0.14864036440849304, -0.06920993328094482, -0.16597945988178253, 0.14246663451194763, 0.19000491499900818, -0.14855273067951202, -0.16997002065181732, 0.19039413332939148, -0.17176884412765503, -0.08861775696277618, 0.11776968091726303, -0.15644225478172302, -0.2043304294347763, -0.35480996966362, 0.043109212070703506, 0.33642497658729553, 0.13198676705360413, -0.19501394033432007, -0.022604165598750114, -0.03745919466018677, -0.03354152292013168, -0.06480376422405243, 0.10899386554956436, 0.020211298018693924, -0.04035395756363869, -0.11047177761793137, 0.020690277218818665, 0.23797723650932312, -0.053418803960084915, 0.05070510506629944, 0.2921946346759796, 0.07599909603595734, -0.06709732115268707, -0.03303350508213043, 0.12326785922050476, -0.05325489118695259, -0.03593041002750397, -0.11014436185359955, 0.0003126729279756546, 0.0010014898143708706, -0.0817413404583931, -0.04056472331285477, 0.12243428081274033, -0.17893880605697632, 0.23654143512248993, -0.0033882223069667816, -0.021260607987642288, -0.12389694154262543, -0.0818801000714302, -0.07038503885269165, -0.007978511974215508, 0.17625434696674347, -0.21157221496105194, 0.13270477950572968, 0.2091093361377716, -0.023638376966118813, 0.08809001743793488, 0.030266379937529564, 0.11643616855144501, -0.04699961468577385, -0.07261157035827637, -0.12319126725196838, -0.10768138617277145, 0.07043041288852692, -0.02701733633875847, -0.01578967645764351, 0.09903199225664139],
[-0.09626086801290512, 0.12215492129325867, 0.10244657099246979, -0.12460388243198395, -0.2127484530210495, -0.0380212664604187, -0.054716259241104126, -0.09897226095199585, 0.15924841165542603, -0.06787317246198654, 0.20164459943771362, -0.10642105340957642, -0.2549577057361603, 0.06541430950164795, -0.17639195919036865, 0.2439207136631012, -0.17726251482963562, -0.1887182891368866, -0.13493917882442474, -0.21668943762779236, -0.03002072498202324, 0.002710152417421341, 0.047305233776569366, 0.10674417018890381, -0.15177804231643677, -0.24754910171031952, -0.03973647952079773, -0.09839297086000443, 0.1389624923467636, -0.1467389166355133, 0.027248304337263107, 0.13961508870124817, -0.15985114872455597, 0.002952069044113159, 0.06382398307323456, 0.11542341113090515, -0.04682420194149017, -0.17628341913223267, 0.25741812586784363, -0.032743971794843674, -0.2404758483171463, -0.015513857826590538, 0.15881018340587616, 0.31256869435310364, 0.2584782540798187, 0.000272383913397789, 0.07003097236156464, -0.035261835902929306, 0.20348376035690308, -0.249833881855011, 0.06517641991376877, 0.141004279255867, 0.1433194875717163, 0.09891709685325623, 0.03376796096563339, -0.23208633065223694, 0.029540985822677612, 0.19055870175361633, -0.2223571240901947, 0.05471949279308319, 0.09093132615089417, -0.1361943483352661, -0.007592365145683289, -0.06190221756696701, 0.2668842077255249, 0.1354704350233078, -0.16355666518211365, -0.1606944501399994, 0.28724297881126404, -0.17508554458618164, 0.040890321135520935, 0.1566726565361023, -0.12378694862127304, -0.07156683504581451, -0.21119460463523865, -0.007203616201877594, 0.47634026408195496, 0.07956548780202866, -0.04314249008893967, 0.030306501314044, -0.07840415090322495, -0.031050141900777817, -0.12112966179847717, 0.1176486685872078, -0.14997753500938416, -0.033562805503606796, -0.09022847563028336, 0.014847859740257263, 0.24783724546432495, -0.06578467041254044, -0.01569228433072567, 0.23666739463806152, 0.03383048251271248, -0.09056763350963593, -0.011270705610513687, 0.1244446337223053, -0.21770305931568146, -0.006121853366494179, -0.03629221394658089, -0.02212461084127426, -0.03916238993406296, -0.14372722804546356, 0.010245097801089287, 0.042067352682352066, -0.19878597557544708, 0.15204454958438873, -0.06223164498806, 0.04161561280488968, -0.09697467088699341, 0.021640975028276443, -0.02885035239160061, -0.05370628088712692, 0.2106296718120575, -0.30471935868263245, 0.15696021914482117, 0.18163029849529266, 0.06763116270303726, 0.14792363345623016, 0.08598253130912781, 0.10019998997449875, 0.09107163548469543, -0.07661403715610504, -0.0357619971036911, -0.11141527444124222, 0.018079908564686775, -0.10208851844072342, 0.04142962396144867, 0.1241036206483841]
],
"landmarks": [
{"right_eye": [[0.45317349266038504, -1.026385528272298], [0.6050282110137601, -1.1926123747485255], [0.8257912992851333, -1.1903284032632078], [0.956421975059703, -1.0123475497549188], [0.8282423455731875, -1.0004264679201207], [0.6383404102301002, -0.9979754216320664]], "left_eyebrow": [[-1.3748205941699074, -1.4647923593160437], [-1.1778996695681305, -1.7188676468037567], [-0.907335357274984, -1.8352932692582107], [-0.5892537924453816, -1.8496653973810628], [-0.3613046401125823, -1.6883406434809443]], "chin": [[-1.8421387562620946, -0.6836264257594165], [-1.8514417170061015, -0.2112390962883844], [-1.803757389666909, 0.30147942165767727], [-1.684880720924401, 0.7619456692939112], [-1.4686855756236634, 1.205755817321975], [-1.1860331066929821, 1.6281748479684965], [-0.7965921256573274, 1.9722154731502763], [-0.3620849383732709, 2.2284076573205707], [0.09609733777764529, 2.3302940768494356], [0.5209674147122212, 2.2375435432618414], [0.8152068158722277, 1.9668121561659584], [1.0358028293408639, 1.5584311040368157], [1.1946765369529289, 1.1405800163609294], [1.2965629564817938, 0.6823977402100133], [1.3628532053090008, 0.2503415992140111], [1.3935472834345501, -0.15558840662707715], [1.4195063437867275, -0.5306572595398794]], "right_eyebrow": [[0.4814165244978801, -1.6222174694564735], [0.7163846660893689, -1.7125169567560132], [0.9632738895156558, -1.6746368145690378], [1.1650969066935413, -1.5489082313705764], [1.286257546921367, -1.309205072005716]], "left_eye": [[-1.0518369367641967, -1.0993606167527217], [-0.8691210654825352, -1.2608524454555772], [-0.6483579772111625, -1.2585684739702594], [-0.4916011662816788, -1.0449914497603126], [-0.6767680838513941, -1.0734015564005444], [-0.8975311721227669, -1.075685527885862]], "nose_bridge": [[0.04005742275787064, -1.2161203888126486], [0.05916456865409492, -0.9288999769113319], [0.05214557939540528, -0.677275735711673], [0.10684889599328741, -0.4161814589652702]], "bottom_lip": [[0.8597717977124195, 0.6469686443110921], [0.6249707309236673, 1.1479331552250922], [0.28794909500057697, 1.285749895061088], [0.06245098895583198, 1.3143270765040562], [-0.2105643696253689, 1.240850763615423], [-0.5216269451962818, 1.0035986505386165], [-0.7378220904970195, 0.5597885025105527], [-0.645238631712162, 0.5739935558306685], [-0.21301541591342316, 1.0509488282723358], [0.029138789739491883, 1.119690123387597], [0.2854980487125227, 1.095847959718001], [0.7980494918558477, 0.6374986087643483]], "nose_tip": [[-0.34169626980814827, -0.16912516073624667], [-0.161264370011805, -0.1098539011677292], [0.04529366493945222, -0.014986470897553896], [0.2138044829009974, -0.08389484081555182], [0.38231530086254256, -0.15280321073354977]], "top_lip": [[-0.7378220904970195, 0.5597885025105527], [-0.47444384226529907, 0.2843220976412975], [-0.15162725966232454, 0.23908881659015924], [0.0952619637639624, 0.27696895877713473], [0.3207600698087074, 0.24839177733416656], [0.650762716473108, 0.3621992786978296], [0.8597717977124195, 0.6469686443110921], [0.7980494918558477, 0.6374986087643483], [0.32794613387013355, 0.40743255974896786], [0.0715868748971027, 0.4312747234185641], [-0.14444119560089835, 0.39812959900496053], [-0.645238631712162, 0.5739935558306685]], "transform": {"center": [281.6388888888889, 281.69444444444446], "scale": 32.02840415692774, "angle": -0.1522424887962945}},
{"right_eye": [[0.5355573930905896, -0.8617360429541356], [0.7993416164883421, -0.9812780099159917], [0.99670008917944, -0.9584964998708179], [1.2320074250207254, -0.8313403759688018], [1.028953574818334, -0.8047822678412012], [0.7822554839544618, -0.8332591553976685]], "left_eyebrow": [[-1.5196204376320566, -1.2489607529467834], [-1.3374293180459726, -1.5279123294495498], [-1.1172893353097009, -1.7024892920954737], [-0.7662166305889865, -1.7119612676891942], [-0.4758742990636333, -1.628449384448659]], "chin": [[-1.6600860959855261, -0.46522223969368603], [-1.656309497903099, -0.06480991680019701], [-1.5974979041366044, 0.2919581654318109], [-1.4950420697086286, 0.7037612433478868], [-1.3375512395965852, 1.0719200806024818], [-1.0813811731389924, 1.4514696728796634], [-0.7644807334860386, 1.7380354063225896], [-0.3868499206377234, 1.9316172809312606], [0.106546261090021, 1.9885710560441952], [0.5619935796675778, 1.941150217300287], [0.9851874126062408, 1.7400151465267624], [1.3647370048834224, 1.4838450800691698], [1.6513027383263486, 1.166944640416216], [1.850579990446313, 0.7399742093951264], [1.9511780062207282, 0.3016130233514499], [1.9967410263110759, -0.09310392203074563], [2.0536948014240104, -0.58650010375849]], "right_eyebrow": [[0.4179342055576001, -1.5752722074181515], [0.7367534246394205, -1.7384584150414886], [1.1371657475329093, -1.7422350131239157], [1.4711523197197436, -1.6036881341993123], [1.6836781455158552, -1.2791735376061988]], "left_eye": [[-1.2691457486857574, -0.8200715424968275], [-1.0547011434607794, -0.945308886969977], [-0.8516472932583882, -0.9718669950975776], [-0.561304961733035, -0.8883551118570425], [-0.819393807619494, -0.8181527630679608], [-1.022447657821885, -0.7915946549403602]], "nose_bridge": [[-0.08877151062159779, -1.0837948051192736], [-0.11155302066677154, -0.886436332428176], [-0.18367414888471978, -0.6947732372483717], [-0.20645565892989354, -0.4974147645572739]], "bottom_lip": [[0.9245180001861855, 0.5330828003350021], [0.5601357610140175, 1.0909859533405346], [0.14263730558664822, 1.2427814059412852], [-0.10975616278851742, 1.263644136557592], [-0.3564542536523896, 1.2351672490011247], [-0.7283896889894113, 0.9922457562196797], [-0.9238293822516426, 0.5197123051082424], [-0.8687943865675747, 0.4760680644467614], [-0.37731698426869686, 0.9827737806259592], [-0.13061889340482466, 1.0112506681824265], [0.12177457497034098, 0.9903879375661192], [0.8201433863293432, 0.5710316634851896]], "nose_tip": [[-0.5423610105455943, -0.18620970241561347], [-0.3450025378544966, -0.16342819237043968], [-0.1533394426746922, -0.09130706415249148], [0.09905402570047342, -0.1121697947687987], [0.35714287158693253, -0.18237214355788034]], "top_lip": [[-0.9238293822516426, 0.5197123051082424], [-0.6372636488087162, 0.20281186545528868], [-0.3298351847494828, 0.1383048941775004], [-0.08313709388561055, 0.1667817817339676], [0.16925637448955508, 0.14591905111766038], [0.6076175605332316, 0.2465170668920758], [0.9245180001861855, 0.5330828003350021], [0.8201433863293432, 0.5710316634851896], [0.20150986012844918, 0.2996332831472772], [-0.05088360824671645, 0.32049601376358433], [-0.2975816991105886, 0.2920191262071171], [-0.8687943865675747, 0.4760680644467614]], "transform": {"center": [741.2777777777778, 114.47222222222223], "scale": 20.13399365792301, "angle": -0.11492350134374875}},
{"right_eye": [[0.4860706307338886, -0.9416665131416766], [0.7289109227925543, -1.0851826848927222], [0.9656910070937621, -1.0449060358986357], [1.1682546501583413, -0.9516421233484735], [1.0032326517326564, -0.8704986263132273], [0.7228507150350963, -0.9013898641475901]], "left_eyebrow": [[-1.6918771837755997, -1.5221656160702157], [-1.3712185980839535, -1.7280544625370609], [-0.978801926516784, -1.8125231629745728], [-0.6018308738667962, -1.7568008950633047], [-0.23092002897426636, -1.5172858064069048]], "chin": [[-2.236605239206465, -1.0855568930596209], [-2.211184010082486, -0.5435638419839481], [-2.0985590761658037, -0.02034161322772232], [-1.9329468786930453, 0.537097056765132], [-1.6895163875873063, 1.0321630520421872], [-1.2904493092156057, 1.4024836978876438], [-0.9007676420036286, 1.7292024913367479], [-0.4768695335550228, 2.002934021229777], [-0.012694776112330775, 2.0398854668215978], [0.42332374785119065, 1.946031355224362], [0.6722242476673143, 1.6187223627281841], [0.8587520727676385, 1.2135950765990255], [1.0982671614240387, 0.8426842317064958], [1.2318077229682876, 0.4033405043407086], [1.365348284512536, -0.03600322302507852], [1.421070552423804, -0.4129742756750664], [1.3802037043826443, -0.8147763584019593]], "right_eyebrow": [[0.5136366651659858, -1.4494431229807208], [0.765862368384375, -1.5493574423354144], [1.0274734827624878, -1.6056699092937556], [1.2642535670636958, -1.5653932602996692], [1.3983843276550179, -1.3661548206373557]], "left_eye": [[-1.2210520195283765, -1.0304248241954261], [-1.0124281687063392, -1.1209537323903962], [-0.7414316431685029, -1.1336643469523855], [-0.5294825889442, -0.9967985820058712], [-0.7474918509259607, -0.9498715262072535], [-1.0278737876235207, -0.9807627640416161]], "nose_bridge": [[0.1775324605571579, -1.103363308165096], [0.2432303386752228, -0.7981503413906309], [0.30892821679328775, -0.49293737461616605], [0.3746260949113527, -0.18772440784170097]], "bottom_lip": [[0.8145600213242132, 0.5843983207306485], [0.6468030185433359, 1.0767293116525112], [0.41334813764439365, 1.263847335799909], [0.15173702326628077, 1.3201598027582504], [-0.08504306103492704, 1.279883153764164], [-0.4901703471640855, 1.0933553286638396], [-0.9173936590149568, 0.5922291256293266], [-0.7678172795064532, 0.6512765969428602], [-0.05415182320056411, 0.9995012170666039], [0.18262826110064376, 1.0397778660606904], [0.40063752308240447, 0.9928508102620727], [0.7273563165315088, 0.6031691430500956]], "nose_tip": [[-0.30423272111083455, 0.0496458755065803], [-0.023850784413274585, 0.08053711334094323], [0.2753019746037325, 0.19863205596801045], [0.4839258254257697, 0.1081031477730405], [0.6489478238514548, 0.026959650737794105]], "top_lip": [[-0.9173936590149568, 0.5922291256293266], [-0.4377732826550833, 0.4889896028723674], [0.007630652468161747, 0.438737343671484], [0.20080888437301744, 0.488399403825294], [0.41881814635477815, 0.4414723480266762], [0.699200083052338, 0.47236358586103916], [0.8145600213242132, 0.5843983207306485], [0.7273563165315088, 0.6031691430500956], [0.4127579385973203, 0.6252651687718084], [0.185363265455836, 0.6285903721740741], [-0.04203140768564831, 0.6319155755763397], [-0.7678172795064532, 0.6512765969428602]], "transform": {"center": [282.90277777777777, 110.34722222222223], "scale": 22.421257102618675, "angle": 0.21201756648433195}},
{"right_eye": [[0.4443986567381768, -0.9459186373752356], [0.65564220150592, -1.146544732444098], [0.9137243170099786, -1.1656506788720855], [1.115677593291201, -1.0058908390839179], [0.933493854044146, -0.9333104158578147], [0.7011535910298754, -0.9135408788236473]], "left_eyebrow": [[-1.5020282733929995, -1.382479310791737], [-1.3165265811150442, -1.5837689964667796], [-1.0056335794190499, -1.6530314666619825], [-0.6967313495415955, -1.645068379387822], [-0.3918106633012215, -1.4826541771749344]], "chin": [[-1.8433082618220422, -1.1336874637741992], [-1.7800181070824597, -0.591117789670114], [-1.690322509246909, -0.07362637744963665], [-1.6006269114113587, 0.44386503477084066], [-1.4073003130104766, 0.9382689569262503], [-1.1354209759278713, 1.3831799459206244], [-0.8371361957492975, 1.8030126730313907], [-0.4853769387726082, 2.1469470238851533], [-0.02467795638114699, 2.2618590647555457], [0.4413297508597547, 2.170836285707635], [0.8374113972992732, 1.7946623574535179], [1.183336519971576, 1.365677543007465], [1.4784415282704835, 0.9096236948592643], [1.6461644553328114, 0.39876818870058733], [1.735998234319596, -0.0883362367868418], [1.7750118989329846, -0.6025096959764189], [1.8133619729401937, -1.0909413026762083]], "right_eyebrow": [[0.3804449113924142, -1.462746458989533], [0.6675868324171609, -1.6098980772602796], [0.9778162435069752, -1.6534186949656948], [1.2853912921720696, -1.5939719027119583], [1.4853537966347519, -1.3569865054544272]], "left_eye": [[-1.1245271639265224, -1.037881369331794], [-0.9146108003711392, -1.1870237594210808], [-0.6578558660794408, -1.1546460008694928], [-0.4314879185207904, -0.9427388654955694], [-0.689570034024849, -0.9236329190675819], [-0.9463249683165474, -0.9560106776191704]], "nose_bridge": [[0.0094415268365034, -1.0601670876394478], [0.02655670144595064, -0.7248594146660257], [0.01726643295942998, -0.3644734798089957], [0.008639755079089366, -0.029829397441753537]], "bottom_lip": [[0.9220746325878512, 0.5088969141764853], [0.599236999980616, 1.0415127291878696], [0.23155156845560546, 1.3153828380890156], [-0.026530547048453146, 1.3344887845170028], [-0.28328548134015163, 1.3021110259654145], [-0.6370355101353812, 1.0354022325810155], [-0.9320023372830545, 0.48686024302130976], [-0.8296985179300831, 0.5152564579358179], [-0.27731316588453125, 1.0704343535573237], [-0.021221822199012766, 1.1285539645987002], [0.2375238839112259, 1.0837061656809248], [0.8177800414163398, 0.5577262567313409]], "nose_tip": [[-0.3801423946924487, 0.06318415342469717], [-0.20194019908247382, 0.1450548451373211], [0.0270821109008967, 0.2539945705520929], [0.23567129324391975, 0.1563358854423819], [0.41851862309715493, 0.05801360972649079]], "top_lip": [[-0.9320023372830545, 0.48686024302130976], [-0.5953674830972722, 0.41826136343228676], [-0.23431795763406213, 0.4018097794290196], [0.021773386051456324, 0.45992939047039577], [0.25477723967190713, 0.4144180009464405], [0.5894213220391493, 0.4230446788267811], [0.9220746325878512, 0.5088969141764853], [0.8177800414163398, 0.5577262567313409], [0.25145928664100686, 0.5431272633953799], [0.019119023626736134, 0.5628968004295473], [-0.23763591066496237, 0.530519041877959], [-0.8296985179300831, 0.5152564579358179]], "transform": {"center": [394.69444444444446, 337.1666666666667], "scale": 38.834341705235744, "angle": -0.025772957519170657}},
{"right_eye": [[0.45047233901200107, -1.001542079952573], [0.6388612518007094, -1.1018919678075676], [0.8591457816417895, -1.1089800066077842], [1.0738346674454151, -1.0063920841572478], [0.8708968571398846, -0.9800921111423305], [0.6698242615135055, -0.9903507918776638]], "left_eyebrow": [[-1.4852710950721368, -1.1369571116978536], [-1.4127135749948214, -1.4814665003065086], [-1.1310628131513347, -1.6137120052138754], [-0.8011023220595022, -1.615204399976637], [-0.4584581481299989, -1.506088226149071]], "chin": [[-1.4434896172008214, -0.8782487134273714], [-1.483218912886189, -0.4587568026390636], [-1.4863895548213062, -0.03739967717160431], [-1.4375200381497741, 0.44159325093995827], [-1.3146006066381652, 0.9060372815346986], [-1.0792073918570766, 1.3212389755415175], [-0.7871109817714603, 1.7026798378168126], [-0.45565809591686623, 2.0311479341458836], [-0.0024053533970349733, 2.1275804251357786], [0.5314255553399038, 2.0815087304829745], [1.0014652299720985, 1.8489133377206128], [1.4560233997478953, 1.5605473569933], [1.8219827571667928, 1.2126803589427317], [2.046370536282566, 0.7659558677999307], [2.1090421955409373, 0.25599992997557186], [2.117808481513509, -0.2750331567426396], [2.126574767486081, -0.8060662434608511]], "right_eyebrow": [[0.07257493858821255, -1.4973219401764992], [0.4821809885575768, -1.6230391937068356], [0.9044707213646119, -1.6381478786468437], [1.3010202685799155, -1.507954555925425], [1.5776351738091334, -1.1822842816150816]], "left_eye": [[-1.1079334820715343, -0.9894170694408854], [-0.955170615693501, -1.1099114988501568], [-0.7531654127275462, -1.117932144989949], [-0.5567558537990458, -1.0162768298789888], [-0.7404817298898753, -1.007323576399621], [-0.943419540195406, -0.9810236033847035]], "nose_bridge": [[-0.20198778445505772, -1.1447919054280524], [-0.21690950188826982, -0.8523226754260464], [-0.24917793885703154, -0.5790653796387416], [-0.282378983165369, -0.2875287569763114]], "bottom_lip": [[1.013774977796177, 0.5300039806928589], [0.6258058641438515, 0.9500556789043527], [0.21340199215576, 1.1306109130600652], [-0.08093245252539748, 1.152247849377104], [-0.33497781409800115, 1.1026326928727925], [-0.6181209707042495, 0.9049177066883267], [-0.8900728392355888, 0.4878507980023564], [-0.7649153731284385, 0.5492170300047627], [-0.3420658528982174, 0.8823481630317123], [-0.08802049132561378, 0.9319633195360236], [0.1880346264804183, 0.9093937758794092], [0.9022338018662733, 0.5609669904056551]], "nose_tip": [[-0.5686927817067344, -0.06388661769331798], [-0.3896299423137838, 0.018556763202941067], [-0.19135516870613195, 0.0836534245636505], [0.05093911736837665, 0.004380685602508478], [0.27402146922818416, -0.057545333823083925]], "top_lip": [[-0.8900728392355888, 0.4878507980023564], [-0.6149503287691325, 0.4835605812208673], [-0.33889521096310044, 0.46099103756425297], [-0.10312917626562212, 0.5096735867289885], [0.15557922200486035, 0.4678921088576731], [0.5769363474723197, 0.47106275079279003], [1.013774977796177, 0.5300039806928589], [0.9022338018662733, 0.5609669904056551], [0.16919551218210693, 0.5602213505728757], [-0.08858027874879977, 0.5837235015690657], [-0.3426256403214034, 0.5341083450647545], [-0.7649153731284385, 0.5492170300047627]], "transform": {"center": [601.2083333333334, 391.90277777777777], "scale": 54.635547192055355, "angle": -0.050975586209953176}},
{"right_eye": [[0.4144050698452145, -1.0662337332446297], [0.631312295974898, -1.18838308602384], [0.8207009737840028, -1.1669656518976295], [1.0222918799818446, -1.053904435964051], [0.8451054305614765, -0.9836780882828933], [0.6098948618486877, -0.9989944082147352]], "left_eyebrow": [[-1.2564733679217808, -1.356735536382259], [-1.2014362712806235, -1.6438691101931004], [-0.9845290451509399, -1.7660184629723106], [-0.7493184764381511, -1.750702143040469], [-0.5019056793366254, -1.643742041301259]], "chin": [[-1.2351830026874122, -0.8465936222473658], [-1.2780178709398329, -0.4678162666291563], [-1.314751624997885, -0.04321702010726278], [-1.259841597248569, 0.3691799980258939], [-1.1071866734975166, 0.8151966786739978], [-0.9148109730371483, 1.2092903542240492], [-0.6766133816730961, 1.597282915579732], [-0.4445169045034123, 1.9394535860317308], [-0.01381654378715036, 2.022009230993467], [0.49632537034774293, 2.0007188657590986], [1.0278847186088464, 1.7900398227156251], [1.4494969424794766, 1.4540973353498363], [1.8191861612520543, 1.0784340712747318], [2.130851260732211, 0.6172281395866275], [2.2012046773052103, 0.09488399706299738], [2.225736202974526, -0.42135903126626434], [2.250267728643841, -0.9376020595955261]], "right_eyebrow": [[0.05405812570195195, -1.671133520729996], [0.4542529154463718, -1.81768733028668], [0.8269291568702127, -1.8206743529379437], [1.2179087408771594, -1.686195702878155], [1.450005218046843, -1.3440250324261558]], "left_eye": [[-1.0243768907520971, -1.01456486593026], [-0.8991134464297817, -1.1245119903207337], [-0.6700039919113614, -1.155017561292576], [-0.5142349766172039, -1.035855231164629], [-0.6914214260375717, -0.965628883483471], [-0.874708989652308, -0.9412244267059973]], "nose_bridge": [[-0.25150585958383626, -1.1641056981382079], [-0.3065429562249938, -0.8769721243273664], [-0.3615800528661513, -0.5898385505165251], [-0.4166171495073088, -0.30270497670568375]], "bottom_lip": [[0.7500934194273201, 0.7544396745139965], [0.4201249773640582, 1.0781799334910485], [0.0657520785233225, 1.218632628853364], [-0.11753548509141382, 1.2430370856308377], [-0.3588471679985711, 1.1818988747953119], [-0.5268184116814656, 0.9710927628599969], [-0.7008907695587283, 0.7144647600209978], [-0.5573239826533077, 0.7419833083415766], [-0.3435308480667292, 0.9466883060825231], [-0.15414217025762444, 0.9681057402087335], [0.08106839845516439, 0.9834220601405754], [0.612627746716268, 0.7727430170971019]], "nose_tip": [[-0.5632980279558345, -0.003369174506105549], [-0.4594520177597295, 0.07607237891252572], [-0.27006333995062476, 0.09748981303873604], [-0.08677577633588843, 0.07308535626126228], [0.1820544548918476, -0.009343219808632416]], "top_lip": [[-0.7008907695587283, 0.7144647600209978], [-0.529805434332729, 0.5984165214361559], [-0.34651787071799256, 0.574012064658682], [-0.15712919290888785, 0.5954294987848925], [0.020057256511480007, 0.5252031511037346], [0.4049357263240579, 0.6138599102598393], [0.7500934194273201, 0.7544396745139965], [0.612627746716268, 0.7727430170971019], [0.044461713288953764, 0.708490714718471], [-0.18464774122946662, 0.7389962856903132], [-0.3282145281348873, 0.7114777373697343], [-0.5573239826533077, 0.7419833083415766]], "transform": {"center": [505.06944444444446, 113.68055555555556], "scale": 21.63271467328598, "angle": 0.13236988349974171}},
{"right_eye": [[0.4777611454716557, -1.0172554527108923], [0.7207714888804851, -1.1457516248120414], [0.9263547307654958, -1.1731308260228532], [1.1263558058099468, -1.0301210201362494], [0.9548503653444194, -1.0016253855573258], [0.7163057554080376, -1.009440419134109]], "left_eyebrow": [[-1.3931686324955803, -1.1808926922154956], [-1.280887327924124, -1.484243604886508], [-1.0015663163595878, -1.6797789464585116], [-0.6926332368480159, -1.7378866489844706], [-0.3892823241770035, -1.6256053444130143]], "chin": [[-1.5736055399060032, -0.8797746462807067], [-1.5540413722719746, -0.43564679445931426], [-1.5355936380060577, 0.0425588587815614], [-1.5171459037401414, 0.520764512022437], [-1.4646203680547412, 1.0000865986314245], [-1.2394729585357018, 1.416835249242005], [-0.9098592780219897, 1.7687775971179553], [-0.5439349293525704, 2.053680775523051], [-0.035000774796547354, 2.1385828788836956], [0.5135933480195183, 2.054212408515036], [0.966652666785806, 1.762025829525143], [1.353789249449351, 1.3994507809600591], [1.673886662642042, 1.0005650642392687], [1.8258279354735407, 0.5279415778389526], [1.9107300388341855, 0.01900742328292953], [1.9945157088267178, -0.45584892985361053], [2.045340010767879, -0.9658995177777455]], "right_eyebrow": [[0.2956230043169947, -1.7055100813092259], [0.6397503186161615, -1.7965791518865564], [1.013489700862364, -1.7502205834178428], [1.348685548216636, -1.568667242639308], [1.5771822578400108, -1.2541519962871768]], "left_eye": [[-1.127244821348387, -0.9674944167537015], [-0.9183122793590405, -1.0971070222229626], [-0.7138454708421418, -1.0904084220142913], [-0.4786501610100955, -0.9803599841790588], [-0.7194276376827012, -0.9200194149168758], [-0.9238944461995999, -0.9267180151255471]], "nose_bridge": [[-0.06301794376762676, -1.1714295922786149], [-0.10714364550011687, -0.8658458128713786], [-0.11607511244501197, -0.5932234015155137], [-0.1602008141775021, -0.2876396221082774]], "bottom_lip": [[0.7660667913652283, 0.5955655476859335], [0.44708581154064936, 0.9603734629872408], [0.167764799976113, 1.1559088045592445], [-0.07189624332838074, 1.1821715724019444], [-0.2763630518452795, 1.175472972193273], [-0.5445197297286968, 1.0302302995704455], [-0.8070942407715549, 0.7145986198502023], [-0.6707830350936225, 0.7190643533226498], [-0.2685480182684963, 0.9369283622568912], [-0.06408120975159753, 0.9436269624655625], [0.142618465501525, 0.8821699598352677], [0.6286391523191838, 0.625177615632969]], "nose_tip": [[-0.44287112584637406, 0.010129123722175542], [-0.27359855211707035, 0.049789091982218106], [-0.1043259783877666, 0.08944906024226067], [0.10237369686535593, 0.027992057611965743], [0.2749955706989953, -0.03458137838644107]], "top_lip": [[-0.8070942407715549, 0.7145986198502023], [-0.5300060959432423, 0.5872188811171649], [-0.2540343844830417, 0.4939169438036107], [-0.08364537738562612, 0.49949911064417013], [0.12193786449938451, 0.4721199094333582], [0.4275216439066208, 0.5162456111658484], [0.7660667913652283, 0.5955655476859335], [0.6286391523191838, 0.625177615632969], [0.11858856439504885, 0.5743533136918076], [-0.08699467748996179, 0.6017325149026194], [-0.2585001179554893, 0.6302281494815432], [-0.6707830350936225, 0.7190643533226498]], "transform": {"center": [643.9722222222222, 64.27777777777777], "scale": 29.328880922613454, "angle": -0.03274959518400584}},
{"right_eye": [[0.49307957468965546, -0.9815172997728896], [0.6769856099003445, -1.1268887145339381], [0.8997151282523064, -1.1286387550651564], [1.08215998562341, -1.0238408639765983], [0.9110988238959346, -0.9882285992061287], [0.6851580871731693, -0.9590387711772661]], "left_eyebrow": [[-1.500391257526006, -1.298255603334469], [-1.2794117797052624, -1.5227351622176488], [-0.9405006746211144, -1.566519904260943], [-0.61443444302018, -1.500545496313658], [-0.3254416540293005, -1.3554629442442414]], "chin": [[-1.6615299014494394, -0.872063876855365], [-1.6548186020162001, -0.45404462764908615], [-1.623878733456119, -0.00537437257435891], [-1.483179714905459, 0.45614075598358167], [-1.3086184721155476, 0.865987527917036], [-1.0517378668327013, 1.2854679549629004], [-0.8190858306766968, 1.6742973761403166], [-0.49448077691534764, 1.9904410899372083], [-0.03442682619699247, 2.0999113772361553], [0.44810565311698636, 2.0173031520515883], [0.8950258676604954, 1.7636337651395453], [1.3209287314479665, 1.4518735848614095], [1.7015856753525582, 1.0513716053487325], [1.951466118510532, 0.5799339589867494], [2.067358842551086, 0.06500043327310454], [2.1590229974647976, -0.4805840983089885], [2.189385140641613, -0.9777114916373988]], "right_eyebrow": [[0.12643981941623017, -1.4138426003019675], [0.5024243671104329, -1.5367354864673926], [0.9026374839314771, -1.6289773667643699], [1.2867945088985047, -1.584020309573123], [1.5661536427769742, -1.3566183950107724]], "left_eye": [[-1.1209066287693674, -0.9756894527959703], [-0.940211811929482, -1.0936210800593744], [-0.7174822935775199, -1.0953711205905923], [-0.5382486545772196, -0.9631334420043894], [-0.73674960380234, -0.9307323956047233], [-0.9594791221543021, -0.9289823550735055]], "nose_bridge": [[-0.11380696862933387, -1.0247243164329185], [-0.11847936483972261, -0.7471152230856669], [-0.15059154854775617, -0.4727173481092187], [-0.1827037322557897, -0.1983194731327705]], "bottom_lip": [[1.0427419127174498, 0.5014035402478836], [0.6702574460856829, 1.0697554631172328], [0.2265484499129771, 1.2959850625316305], [-0.08492286767352597, 1.3429810229457282], [-0.38676053014761896, 1.3076576208668913], [-0.7209992390213782, 1.0738332695629338], [-0.9924747583186556, 0.5413824741556869], [-0.8584870392012349, 0.5848783535073485], [-0.37566569719562354, 0.9751689525243501], [-0.10126782221917537, 1.0072811362323837], [0.20699227699652434, 0.9877249633159308], [0.9265603259852638, 0.5434382417599597]], "nose_tip": [[-0.6232015100576922, 0.0004703387839825601], [-0.3794546409496921, 0.05681109161885756], [-0.1082679843440473, 0.11636306282453591], [0.15153497661796947, 0.035504878171186825], [0.4323552883360244, 0.01273748688393072]], "top_lip": [[-0.9924747583186556, 0.5413824741556869], [-0.7230381422442287, 0.37820492700940334], [-0.3566872496624361, 0.3376314033369125], [-0.10972916218363268, 0.3665323686741427], [0.17430236790522557, 0.31632518988924174], [0.6407787553651876, 0.37091590219289877], [1.0427419127174498, 0.5014035402478836], [0.9265603259852638, 0.5434382417599597], [0.1824748451780503, 0.484175133245914], [-0.09834546654000464, 0.5069425245331701], [-0.34851477238961137, 0.5054813466935848], [-0.8584870392012349, 0.5848783535073485]], "transform": {"center": [820.4027777777778, 256.3611111111111], "scale": 36.19640967419931, "angle": -0.11649791061904533}},
{"right_eye": [[0.5669913111895505, -0.8175985529301849], [0.8042524498506649, -0.9297693884966264], [1.0501467785627774, -0.9008754876192222], [1.2347879024803765, -0.7559349109169072], [1.0350538547476638, -0.7485936676187326], [0.8003766095921957, -0.7537614546300253]], "left_eyebrow": [[-1.6309647234043476, -1.2299254808273112], [-1.3074323193297848, -1.5280293870641748], [-0.9403235277814689, -1.6725595265477258], [-0.5520725158726878, -1.7109681270101866], [-0.17891442777902022, -1.5970949074721579]], "chin": [[-2.560159004441164, -0.6164512882515883], [-2.4419388723293705, -0.12078679056889419], [-2.3237187402175774, 0.3748777071138002], [-2.170555410683029, 0.8830512351059617], [-1.8862524815084556, 1.300196147892147], [-1.4820270362505021, 1.6025863316062445], [-1.0165483861980351, 1.788929839495431], [-0.5273436222794566, 1.964056263827973], [-0.035554964855231685, 2.021844065582781], [0.41265730509523957, 1.9260581005842765], [0.7474067927264463, 1.6516803082135243], [1.0485050296877203, 1.3061241742444376], [1.2797168718034835, 0.9355499796564165], [1.429825235517091, 0.5162316105833493], [1.5087552576323644, 0.1305644921802145], [1.5639591658815262, -0.24388554266627616], [1.5492766792851769, -0.6433536381317015]], "right_eyebrow": [[0.5350424444912053, -1.4991961212833014], [0.7947377502656083, -1.56391472911752], [1.110518473823232, -1.5100027676211814], [1.353828909029698, -1.363770244166043], [1.4897258584622508, -1.1377261890615726]], "left_eye": [[-1.191796080723638, -0.9150262668037465], [-0.9420259117530563, -1.0621402997929439], [-0.6724054691748325, -1.044463482472184], [-0.4528211478344778, -0.8870138754604014], [-0.7000074232994133, -0.8572384650489384], [-0.9696278658776372, -0.8749152823696983]], "nose_bridge": [[0.2326522607771081, -1.0949706760253477], [0.25121058763192694, -0.8715105144265235], [0.2934950283528572, -0.6592674363843436], [0.34699655263043166, -0.42329824447605224]], "bottom_lip": [[0.8556411529378879, 0.4683689456323621], [0.6705895918015246, 0.8751782843959621], [0.4083103925214754, 1.0572355148079147], [0.1723412006131841, 1.1107370390854892], [-0.07355312809892828, 1.081843138208085], [-0.5165976110381071, 0.9429518580511216], [-1.0006345879453928, 0.5331481885631111], [-0.8608617982543706, 0.5831843098009803], [-0.011007976551591858, 0.9071271510943072], [0.21245218504723226, 0.8885688242394882], [0.4596384605121678, 0.8587934138280252], [0.7495196139167979, 0.4895111659928272]], "nose_tip": [[-0.25866532433182204, -0.10792795813719287], [-0.03649710948582112, -0.06781697370314466], [0.2081052724734681, 0.019746238463126495], [0.38540515309289247, -0.03504723256727112], [0.5627050337123167, -0.08984070359766869]], "top_lip": [[-1.0006345879453928, 0.5331481885631111], [-0.5498384244892753, 0.3200236009868722], [-0.07660809391986935, 0.15435124114285628], [0.14556012092613158, 0.1944622255769045], [0.36902028252495567, 0.17590389872208567], [0.6610748922164679, 0.2410329437750685], [0.8556411529378879, 0.4683689456323621], [0.7495196139167979, 0.4895111659928272], [0.3427102751531979, 0.30445960485646395], [0.09552399968826236, 0.3342350152679269], [-0.11542713160109441, 0.3178501446999902], [-0.8608617982543706, 0.5831843098009803]], "transform": {"center": [166.15277777777777, 177.93055555555554], "scale": 38.103839503080835, "angle": 0.44163034041047217}},
{"right_eye": [[0.4151434248116892, -0.9747116017375426], [0.6164530502082548, -1.1177643511780764], [0.840374908534021, -1.115304567222966], [1.0812559415566874, -1.0037103832211225], [0.8629871414632213, -0.9697920338273219], [0.6083402080208444, -0.9302206262012211]], "left_eyebrow": [[-1.3575459734645086, -1.5933991816579023], [-1.228992614765765, -1.7251458146338354], [-1.04710194802121, -1.753411105795336], [-0.8118739732308435, -1.6781950551424039], [-0.6437492069059991, -1.5552947546759603]], "chin": [[-1.2808629421674176, -0.8601834564473818], [-1.3278137016588496, -0.44306481491246047], [-1.3020081944524593, -0.037252289842139324], [-1.1977933623159471, 0.3936322521124927], [-1.0208222634816126, 0.8132106776025245], [-0.8438511646472786, 1.2327891030925562], [-0.6361549906963333, 1.6103363370013768], [-0.39208068339647717, 1.9822305126778974], [0.0056189994864335735, 2.1439687304483623], [0.47853473302227667, 2.070478973428461], [0.9595633087455303, 1.8094454914317046], [1.3565295013063619, 1.4869618592017262], [1.7001583858213816, 1.0609968851573148], [1.8926216787084575, 0.6212660106931931], [2.001022588433111, 0.1200849859958496], [2.109423498157765, -0.381096038701494], [2.139415082952296, -0.9073490802831485]], "right_eyebrow": [[0.17918195969924341, -1.5341495023909184], [0.5316571767237532, -1.6634363514117416], [0.8954385102128634, -1.7199669337347425], [1.2511070015145629, -1.5889537910808884], [1.5146002674664296, -1.331847073683401]], "left_eye": [[-1.127237566584363, -1.0703394143534375], [-0.9986842078856193, -1.2020860473293709], [-0.7691092913275532, -1.1632481300253494], [-0.5589533334214976, -1.009622754442295], [-0.7828751917472637, -1.0120825383974055], [-1.0067970500730299, -1.0145423223525156]], "nose_bridge": [[-0.23720319151359864, -1.096878411881907], [-0.28980700923733055, -0.7161379036958966], [-0.3424108269610625, -0.3353973955098862], [-0.3642895695681836, 0.0033119210949131075]], "bottom_lip": [[1.0220062622897037, 0.5330175499426296], [0.6702645355872733, 1.1465262489638959], [0.21996103498063055, 1.3655285393794412], [-0.07106403181065749, 1.410753005237842], [-0.3426701399499349, 1.3411900128172096], [-0.6481945974830128, 1.0533582203031115], [-0.8898091208277586, 0.4575421863008249], [-0.7693686043164254, 0.5133392783017465], [-0.34586341422712463, 1.0808900211425327], [-0.07991036432014736, 1.1140748802142542], [0.18038962735452982, 1.1108816059370643], [0.9492499955918816, 0.5443236664072298]], "nose_tip": [[-0.6189365030105607, 0.042883328721013844], [-0.4815368118023271, 0.20781482076866853], [-0.24630883701196074, 0.283030871421601], [-0.0029680200341839318, 0.1707031970976782], [0.209647721826982, 0.10040671435496656]], "top_lip": [[-0.8898091208277586, 0.4575421863008249], [-0.6771933789665927, 0.38724570355811316], [-0.4112403290596155, 0.42043056262983447], [-0.14528727915263823, 0.4536154217015558], [0.1457377876386498, 0.40839095584315493], [0.5935815042901821, 0.4133105237533757], [1.0220062622897037, 0.5330175499426296], [0.9492499955918816, 0.5443236664072298], [0.12631882898663913, 0.5231784141221881], [-0.17035929603694905, 0.5320247466316779], [-0.39993421259501527, 0.49318682932765656], [-0.7693686043164254, 0.5133392783017465]], "transform": {"center": [388.7916666666667, 118.43055555555556], "scale": 27.163027335191224, "angle": 0.15416410878170614}}
],
"url": "z_selfie.jpg"}
]
// recent work from my @VicUniWgtn 3rd year media design students that combines @nulhom's dlib face library with @p5xjs
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 drawFaceCheckbox;
var faceGuideCheckbox;
var facePointsCheckbox;
var sliders = [];
var NUM_SLIDERS = 12;
var sliderTint;
var selfieData = []
var trainData = {}
var trainDataKeys = []
var trainValues = {}
var validData = {}
var validDataKeys = []
var faceMapping = null;
var loadedSelfieData = [];
function preload () {
loadedSelfieData = loadJSON('sample_images.json');
trainData = loadJSON('training_images.json');
trainValues = loadJSON('training_values.json');
validData = loadJSON('testing_images.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 loadedSelfieDataArray = Object.values(loadedSelfieData);
Array.prototype.unshift.apply(selfieData, loadedSelfieDataArray);
// create the drawing canvas, save the canvas element
main_canvas = createCanvas(canvasWidth, canvasHeight);
main_canvas.parent('canvasContainer');
curRandomSeed = int(focusedRandom(0, 100));
mainFace = new Face();
littleFace = new Face();
for(var i=0; i<selfieData.length; i++) {
var data = selfieData[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('Faces');
faceSelector.option('Train');
faceSelector.option('NearestNeighbors');
faceSelector.option('TrainingQuiz');
faceSelector.option('InterpolationQuiz');
faceSelector.value('Faces');
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);
}
drawFaceCheckbox = createCheckbox('', true);
drawFaceCheckbox.parent('checkbox1Container');
faceGuideCheckbox = createCheckbox('', false);
faceGuideCheckbox.parent('checkbox2Container');
facePointsCheckbox = createCheckbox('', false);
facePointsCheckbox.parent('checkbox3Container');
sliderTint = createSlider(0, 100, 10);
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 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 == 'Faces' || mode == 'FacePair' || mode == 'Train') {
var do_train = (mode == 'Train');
var is_face = (mode == 'Faces');
var show_face_guide = faceGuideCheckbox.checked();
var show_face_points = facePointsCheckbox.checked();
var do_draw_face = drawFaceCheckbox.checked();
if(do_train) {
// var keys = Object.keys(trainData);
var curKey = trainDataKeys[curTrainIndex];
var data = trainData[curKey];
}
else {
var data = selfieData[curFaceIndex];
}
// Displays the image at its actual size at point (0,0)
var img = data.image
if (is_face) {
x2 = 0;
y1 = 0;
x1 = 0;
var im_w = 960;
var im_h = 500;
var rect_w = 960;
var rect_h = 540;
image(img, x2, y1, im_w, im_h);
var is_face = true;
}
else {
var x1 = (width/4-400/2);
var x2 = (3*width/4-400/2);
var y1 = (height/2-400/2);
var rect_w = 400;
var rect_h = 400;
var im_w = 400;
var im_h = 400;
image(img, x1, y1, 400, 400);
var is_face = false;
}
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);
}
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, rect_w, rect_h);
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 = im_w / img.width;
var scale_y = im_h / 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];
if (show_face_points) {
ellipse(cur_x, cur_y, 5/data_scale, 5/data_scale);
}
// get ready for drawing the face
shiftedSection[i][0] = cur_x;
shiftedSection[i][1] = cur_y;
}
});
noFill();
if(show_face_guide) {
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;
// interpolation
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);
trySettings = results[0];
if (typeof trySettings !== 'undefined') {
settings = trySettings;
// print("Using embedding ", i, results)
}
}
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);
if (do_draw_face) {
mainFace.draw(shifted_positions);
}
pop();
}
if(do_train) {
textDisplay = "Train: " + curKey;
}
else {
textDisplay = "";
}
}
else if (mode == 'NearestNeighbors') {
// 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 == 'TrainingQuiz' || mode == 'InterpolationQuiz') {
var curKey = trainDataKeys[curTrainIndex];
var data = trainData[curKey];
var valid_mode = false;
if (mode == 'InterpolationQuiz') {
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);
if (typeof settings !== 'undefined') {
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)
if (typeof nearData !== 'undefined') {
var img = nearData.image
var x2 = (width/2 - 200 + j*100);
image(img, x2, y3, 80, 80);
}
}
}
}
}
if(valid_mode) {
if(quiz_done) {
textDisplay = "InterpolationQuiz: hit spacebar to continue";
}
else {
textDisplay = "InterpolationQuiz: hit 1, 2, 3, or 4 to guess";
}
}
else {
if(quiz_done) {
textDisplay = "TrainingQuiz: hit spacebar to continue";
}
else {
textDisplay = "TrainingQuiz: 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 != 'Faces') {
faceSelector.value('Faces');
}
else if (key == 'w' && mode != 'Train') {
faceSelector.value('Train');
}
else if (key == 'e' && mode != 'NearestNeighbors') {
faceSelector.value('NearestNeighbors');
}
else if (key == 'r' && mode != 'TrainingQuiz') {
faceSelector.value('TrainingQuiz');
}
else if (key == 't' && mode != 'InterpolationQuiz') {
faceSelector.value('InterpolationQuiz');
}
if (key == ' ' &&
(mode == 'TrainingQuiz' || mode == 'InterpolationQuiz') && quiz_done) {
quiz_done = false;
if(mode == 'TrainingQuiz') {
curTrainIndex = (curTrainIndex + 1) % trainDataKeys.length;
}
else {
curValidIndex = (curValidIndex + 1) % validDataKeys.length;
}
changeRandomSeed();
}
else if ((mode == 'TrainingQuiz' || mode == 'InterpolationQuiz') && 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 == 'NearestNeighbors') {
// 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 == 'Faces') {
if (keyCode == LEFT_ARROW || keyCode == UP_ARROW) {
curFaceIndex = (curFaceIndex + selfieData.length - 1) % selfieData.length;
} else if (keyCode === RIGHT_ARROW || keyCode == DOWN_ARROW) {
curFaceIndex = (curFaceIndex + 1) % selfieData.length;
}
}
else if (mode == 'Train' || mode == 'NearestNeighbors') {
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();
}
}
}
{
"162771": {"landmarks": [{"chin": [[-1.607575262062853, -1.0016724859194308], [-1.6351091555381696, -0.5396664325705911], [-1.5394992491248505, -0.07852759428757607], [-1.4131033927393726, 0.38239444022898283], [-1.2869243401203507, 0.8125305247733828], [-1.0378182913791492, 1.2110134442797993], [-0.7583599001987015, 1.5477076600754416], [-0.4175464128403919, 1.8531823183660128], [0.04467644427490394, 1.9115021618134882], [0.5370348400629903, 1.8772473515780308], [1.0280924132523397, 1.6582768415096198], [1.457361282730915, 1.4089539890019627], [1.7938386947601013, 1.0987096478493557], [2.006305091834827, 0.6661887218739381], [2.094977277721549, 0.14217716104786826], [2.1528635136361123, -0.3816175960117454], [2.180180603344973, -0.874409599332744]], "left_eye": [[-1.2385774699298584, -1.0658460310612226], [-1.0549457889291858, -1.2210766035207539], [-0.7776554354132997, -1.1922418874467005], [-0.5606361592429941, -0.9782578640067813], [-0.8067069552538093, -0.9457374839029732], [-1.0837805050032392, -0.9437862500048677]], "right_eye": [[0.48630294357686454, -0.9548432420941318], [0.7002869670167837, -1.1718625182644373], [0.9771437129997577, -1.2045997021347015], [1.224732135375766, -1.0216184324333974], [1.0100977006364784, -0.8969570061795687], [0.7330241508870481, -0.8950057722814634]], "transform": {"center": [126.98611111111111, 165.90277777777777], "angle": 0.007042179393800594, "scale": 32.48154449875639}, "nose_tip": [[-0.429904227528393, 0.09838316995295557], [-0.30611001634038887, 0.18987380480360766], [-0.15196346271313826, 0.21957573594348576], [0.0015326796147439262, 0.15691981716688713], [0.18603157568124115, 0.12483304459599127]], "bottom_lip": [[0.7442979467427684, 0.7058636262707996], [0.407603730947126, 0.9853220174512474], [0.13139739626352048, 1.1104170512379883], [-0.08410425354159183, 1.1119346776031815], [-0.2690367571410014, 1.0824495502297597], [-0.4854056220119383, 0.9608233767063171], [-0.7026417019487, 0.7160534032942392], [-0.5484951483214492, 0.7457553344341172], [-0.27142159857201914, 0.7438041005360118], [-0.08648909497260958, 0.7732892279094337], [0.09822660486034383, 0.7719884053106968], [0.5905850006484301, 0.7377335950752393]], "right_eyebrow": [[0.26689882597554143, -1.507472715227799], [0.6044602568370085, -1.663787306519611], [0.9428889027643003, -1.6969580979227878], [1.2817511562245043, -1.6685569893816465], [1.5906946747783741, -1.5167952771854138]], "nose_bridge": [[-0.13028327093213807, -1.0736509666536442], [-0.15890118323973537, -0.7655746631655991], [-0.18751909554733268, -0.4574983596775539], [-0.2159202040884738, -0.11863610621734985]], "left_eyebrow": [[-1.6108273185596955, -1.4634617355018142], [-1.3966264913533202, -1.6496950616999606], [-1.1195529416038899, -1.651646295598066], [-0.8112598343493886, -1.5922424333183098], [-0.5331022657676776, -1.440263917355621]], "top_lip": [[-0.7026417019487, 0.7160534032942392], [-0.4882240709758684, 0.5606060270682514], [-0.2731560287036684, 0.4975165007587405], [-0.1187926713099616, 0.5580043818707774], [0.09627537096223839, 0.4949148555612666], [0.4047852819831959, 0.5851046678131817], [0.7442979467427684, 0.7058636262707996], [0.5905850006484301, 0.7377335950752393], [0.09800980109388767, 0.7412024553385379], [-0.08670589873906574, 0.7425032779372748], [-0.27142159857201914, 0.7438041005360118], [-0.5484951483214492, 0.7457553344341172]]}], "url": "http://i.imgur.com/rfiOADa.png", "embedding": [[-0.19199231266975403, 0.03304362669587135, 0.1075761616230011, -0.0917709618806839, -0.13961055874824524, 0.00012209592387080193, -0.06626219302415848, -0.06322018802165985, 0.19075405597686768, -0.06821633875370026, 0.15641897916793823, -0.06254762411117554, -0.30231013894081116, -0.004690755158662796, -0.0710826888680458, 0.18481042981147766, -0.2080455869436264, -0.19378142058849335, -0.0011450230376794934, -0.04920466989278793, 0.06331010907888412, -0.012654176913201809, -0.1021374762058258, 0.13186904788017273, -0.17277851700782776, -0.33151668310165405, -0.05525814741849899, -0.07054845243692398, -0.09774177521467209, -0.10061559081077576, -0.02219279855489731, 0.1288725882768631, -0.18329234421253204, -0.006416132673621178, 0.05255170539021492, 0.24546800553798676, -0.011300657875835896, -0.12235333025455475, 0.1155686229467392, 0.0043295007199049, -0.24746721982955933, -0.1198839321732521, 0.1308339536190033, 0.24733790755271912, 0.2540341019630432, -0.023198286071419716, -0.031080076470971107, 0.028193168342113495, 0.1716940999031067, -0.3713452219963074, -0.0015118077863007784, 0.2419542372226715, 0.07179192453622818, 0.15637677907943726, 0.09311988204717636, -0.2620907127857208, 0.054293613880872726, 0.08634345978498459, -0.18141096830368042, 0.01106557622551918, 0.09434710443019867, -0.20883598923683167, 0.027382981032133102, -0.08651497215032578, 0.1547403484582901, 0.13238966464996338, -0.15206730365753174, -0.10741911828517914, 0.1930995136499405, -0.1252286285161972, 0.022872935980558395, 0.06528419256210327, -0.1662655472755432, -0.2524131238460541, -0.21320532262325287, 0.07889494299888611, 0.3763290047645569, 0.21379584074020386, -0.11394534260034561, 0.05277900770306587, -0.02624240703880787, 0.01467124279588461, -0.02355523779988289, 0.10378387570381165, 0.0397784486413002, 0.06210273131728172, -0.11623667180538177, 0.10499092936515808, 0.13320422172546387, 0.007816466502845287, 0.09804466366767883, 0.231757253408432, -0.07578583061695099, -0.024223757907748222, 0.06595867872238159, 0.13981860876083374, -0.12178774178028107, 0.0566699281334877, -0.1336042881011963, 0.05546551197767258, 0.026742784306406975, -0.1182689294219017, 0.07645969092845917, 0.015188336372375488, -0.10647159069776535, 0.11180492490530014, -0.02790406160056591, 0.015889128670096397, -0.14197072386741638, -0.10129876434803009, -0.08079700171947479, 0.07529893517494202, 0.1779358983039856, -0.25533169507980347, 0.24735254049301147, 0.11780703067779541, -0.03312363848090172, 0.21384043991565704, 0.03390860930085182, 0.11753170192241669, -0.00737223494797945, -0.1722155511379242, -0.059837743639945984, -0.0889066755771637, -0.019155334681272507, -0.019926656037569046, 0.02526269666850567, 0.026740215718746185]]},
"162772": {"landmarks": [{"bottom_lip": [[0.7536277181854519, 0.6478190477052898], [0.4923432042387591, 0.9098620908294747], [0.25987960040350666, 0.997420474420173], [-0.0017420376220714966, 1.0268734921795233], [-0.2343742034967667, 0.9981368630878045], [-0.49624868458150884, 0.8531473618235289], [-0.7583338682155545, 0.5627890947062318], [-0.6129229618526721, 0.5916521453275327], [-0.2057218554247691, 0.7073571908719005], [0.026910310449926082, 0.7360938199636197], [0.2595003358147606, 0.7357566958847342], [0.608301092842291, 0.6771035034251974]], "nose_bridge": [[0.08231868365019092, -1.1537844171453824], [0.08274008874879765, -0.863046885439339], [0.11227738752786938, -0.5432777410725522], [0.1418146863069411, -0.2235085967057655]], "left_eyebrow": [[-1.6621486470959286, -1.1803297397243462], [-1.400948414168957, -1.5005202891897396], [-0.9940422913100788, -1.588331515839602], [-0.616041359582362, -1.5598055892971863], [-0.1798086404937153, -1.4732164374332835]], "nose_tip": [[-0.2939544871732382, 0.009713536306979114], [-0.09039607446914734, 0.038492305908558705], [0.08417286608406056, 0.12546072236120762], [0.2585311040879651, 0.06706037296083495], [0.43288934209186963, 0.00866002356046227]], "left_eye": [[-1.1095787748150039, -1.0648353967292818], [-0.9062732051700771, -1.210499146151328], [-0.6736831798052426, -1.2108362702302133], [-0.46995620506170904, -1.0657624879462166], [-0.6734303367460786, -1.0363937512065875], [-0.9059782216010525, -1.0069828739570978]], "chin": [[-2.010654420554434, -0.9181602750705792], [-2.0098958913769422, -0.3948327179997016], [-1.9509898558582415, 0.12841055805145477], [-1.8920838203395407, 0.651653834102611], [-1.716967053158144, 1.1165810417731161], [-1.3966079416533077, 1.4940762873825046], [-0.9600380984857756, 1.8132554646112422], [-0.523552536337965, 2.0742871354987704], [-9.855773750522051e-05, 2.160749865833092], [0.5231025778037904, 2.0727700771437862], [0.9297558576035049, 1.8105163314702983], [1.278177350042289, 1.4901993604753225], [1.539209020929818, 1.053713798327512], [1.6839035386250687, 0.5883230450485395], [1.7122187626181806, 0.06495334746780125], [1.7405761271211537, -0.4293425969423328], [1.7398597384535222, -0.9235964008426061]], "right_eyebrow": [[0.2853714102359537, -1.4738906855910543], [0.6632037799242277, -1.5616597717310559], [1.012046677461619, -1.5912392110199884], [1.3611002775483134, -1.4754498844558992], [1.5650379548411502, -1.1850073363188809]], "right_eye": [[0.489519790078094, -1.0380793716010144], [0.6927832192131602, -1.212816874193665], [0.9253732445779947, -1.2131539982725503], [1.1000264661509238, -1.068038075478693], [0.9547419813176237, -1.009679866588181], [0.6930782027821849, -1.0093006019994348]], "top_lip": [[-0.7583338682155545, 0.5627890947062318], [-0.4676806175292327, 0.5042201832664166], [-0.17698522633305017, 0.4747250249972055], [0.026615326880901364, 0.5325775477693894], [0.2591632117358752, 0.5031666705198997], [0.5209112712910354, 0.5609349122723623], [0.7536277181854519, 0.6478190477052898], [0.608301092842291, 0.6771035034251974], [0.2593739142851786, 0.6485354363729212], [0.02678388892034406, 0.6488725604518066], [-0.1767745237837468, 0.6200937908502271], [-0.6129229618526721, 0.5916521453275327]], "transform": {"center": [124.11111111111111, 167.68055555555554], "scale": 34.39524796482399, "angle": 0.001449433793531105}}], "embedding": [[-0.13458849489688873, 0.18783926963806152, 0.12211830914020538, -0.05334194377064705, -0.10399429500102997, -0.039955269545316696, -0.03108201175928116, 0.01859379932284355, 0.07633759826421738, 0.06259777396917343, 0.23034024238586426, -0.03474847227334976, -0.25321972370147705, -0.03370027244091034, -0.07714808732271194, 0.08247002959251404, -0.12908996641635895, -0.09834130853414536, -0.14002446830272675, -0.01703549735248089, 0.13352596759796143, 0.03218216449022293, -0.052095066756010056, 0.06092812865972519, -0.12640011310577393, -0.327085018157959, -0.04293559491634369, -0.09422487020492554, -0.044240377843379974, -0.2258264571428299, 0.0938151478767395, -0.04344501346349716, -0.22863931953907013, -0.1189935952425003, 0.00020758435130119324, -0.0076881470158696175, -0.04254939779639244, -0.1283533126115799, 0.1411626785993576, -0.06601619720458984, -0.09524679183959961, 0.028359079733490944, 0.13729214668273926, 0.2587352395057678, 0.1408926099538803, 0.060763366520404816, -0.006401342339813709, -0.018521197140216827, 0.058661650866270065, -0.2886699438095093, 0.018016841262578964, 0.13067179918289185, 0.07780066877603531, 0.1064235046505928, 0.12125846743583679, -0.1389433741569519, 0.016111107543110847, 0.06025636941194534, -0.26577702164649963, 0.06614595651626587, -0.034951407462358475, 0.018772738054394722, -0.06835891306400299, -0.11049246788024902, 0.12247432768344879, 0.09167101979255676, -0.12344585359096527, -0.13978420197963715, 0.051168378442525864, -0.18746709823608398, -0.010392813943326473, 0.08455924689769745, -0.05265878885984421, -0.19236664474010468, -0.2286907285451889, 0.08461743593215942, 0.39407792687416077, 0.1647697538137436, -0.24717719852924347, -0.03689943999052048, -0.07494106143712997, -0.08659708499908447, -0.004911438561975956, -0.044506222009658813, -0.038398392498493195, -0.0030497796833515167, -0.09975835680961609, 0.09639745950698853, 0.1601402461528778, 0.005910106003284454, -0.033128730952739716, 0.23342202603816986, 0.044263627380132675, -0.06245050206780434, 0.029652953147888184, 0.035180456936359406, -0.12944571673870087, 0.014090625569224358, -0.13331370055675507, 0.05016038566827774, 0.017193999141454697, -0.02706022746860981, -0.0539405457675457, 0.05948426201939583, -0.06025674194097519, 0.05312708765268326, 0.042135290801525116, -0.07782381772994995, -0.10415518283843994, 0.038667745888233185, -0.24488084018230438, -0.09461881220340729, 0.1418842077255249, -0.23736053705215454, 0.1935591697692871, 0.1522655189037323, -0.023321334272623062, 0.08324103057384491, 0.07541506737470627, 0.03458564728498459, 0.06500906497240067, 0.0026144757866859436, -0.03976376727223396, -0.11623496562242508, 0.07078461349010468, -0.009684414602816105, 0.04202553629875183, -0.055069535970687866]], "url": "http://i.imgur.com/TEgpsfJ.png"},
"162774": {"url": "http://i.imgur.com/FWf5ghO.png", "landmarks": [{"right_eyebrow": [[0.09651668152417747, -1.5856343148203234], [0.5344311083646068, -1.7092970000203305], [0.9744883271269944, -1.6864167984276721], [1.3580711830942742, -1.5161365932735653], [1.6554425405235216, -1.2273364035321512]], "nose_tip": [[-0.4660841545049428, 0.03490860758682832], [-0.3186841509434941, 0.09138297038193617], [-0.17128414738204548, 0.14785733317704403], [0.0037102000003696022, 0.08666882815362796], [0.20801312474131775, 0.025051764745820236]], "left_eyebrow": [[-1.509455255813658, -1.1517435206593192], [-1.3969350886078338, -1.4758521051407498], [-1.1059921069444614, -1.6266805757773315], [-0.7835977560005978, -1.6313947180056398], [-0.43060915254502596, -1.5486116865427406]], "nose_bridge": [[-0.15997502216796194, -1.0835314742657363], [-0.18499801568257845, -0.790017142296014], [-0.23890102817133635, -0.466765674583367], [-0.2639240216859529, -0.17325134261364472]], "chin": [[-1.6228325397882652, -0.8862520908949552], [-1.5870955866638572, -0.44705198890135084], [-1.5220500561809163, -0.008280445292138203], [-1.4570045256979753, 0.43049109831707444], [-1.3626504178565013, 0.8688340835418955], [-1.1221819816067535, 1.275725699486225], [-0.8235249490243315, 1.6524516213032383], [-0.46667932010923485, 1.9990118489929354], [-0.02533642619367228, 2.109817782661193], [0.5013608494911396, 2.0434865770250767], [0.9961781975110684, 1.801732465622154], [1.4608298514036808, 1.5017897578865569], [1.8660072338104439, 1.1440870122026772], [2.094047476912834, 0.7010298847495479], [2.1742591580693826, 0.1721898171427777], [2.225590820251791, -0.3269131147210677], [2.3053739430239486, -0.8850617596863709]], "right_eye": [[0.4567907775144074, -1.004605468262362], [0.6598080271021806, -1.1541482637457687], [0.894276645970445, -1.157576730820902], [1.1308880567606678, -1.0144623111033702], [0.8968479962767949, -0.9817252666697037], [0.6623793774085305, -0.9782967995945705]], "bottom_lip": [[0.744138684882746, 0.6035092609974316], [0.48507563088425665, 0.9297606374008204], [0.1648240718623512, 1.0810176664217939], [-0.06921598862152163, 1.1137547108554602], [-0.3041131658741778, 1.0878746005720603], [-0.5114159993058676, 0.9443316224701367], [-0.7212901830439071, 0.6249371802170144], [-0.604055873609775, 0.6232229466794478], [-0.30754163294931103, 0.8534059817037959], [-0.07264445569665488, 0.8792860919871957], [0.16139560478721798, 0.8465490475535294], [0.6566415111915385, 0.6341035135091397]], "transform": {"angle": 0.014621243451538164, "center": [126.91666666666667, 167.04166666666666], "scale": 34.1160575381219}, "top_lip": [[-0.7212901830439071, 0.6249371802170144], [-0.5475815108146671, 0.4758229431179992], [-0.3139700087151859, 0.41377732132579986], [-0.10838140882106279, 0.4400859899935914], [0.09635007430427701, 0.40777750394431667], [0.44848156099106545, 0.4319433806901499], [0.744138684882746, 0.6035092609974316], [0.6566415111915385, 0.6341035135091397], [0.12737288520037668, 0.5245832549940572], [-0.10709573366788781, 0.5280117220691904], [-0.31225577517761927, 0.5310116307599321], [-0.604055873609775, 0.6232229466794478]], "left_eye": [[-1.155180977204911, -0.9810347571208209], [-0.9810437465912794, -1.1008404168613029], [-0.7465751277230148, -1.104268883936436], [-0.5103922753171838, -0.9904630415774374], [-0.7440037774166649, -0.928417419785238], [-0.9784723962849294, -0.9249889527101046]]}], "embedding": [[-0.150230273604393, 0.17592468857765198, 0.09524446725845337, -0.14394091069698334, -0.13907331228256226, 0.10236910730600357, -0.012744921259582043, 0.0014583393931388855, 0.12395117431879044, -0.09742890298366547, 0.11600027978420258, -0.014955846592783928, -0.32594045996665955, -0.018512047827243805, 0.04864174500107765, 0.13444185256958008, -0.17991317808628082, -0.20163515210151672, -0.048124127089977264, -0.13501638174057007, 0.07723059505224228, 0.028043748810887337, -0.12980657815933228, 0.03292698413133621, -0.19819560647010803, -0.22564095258712769, -0.05542343109846115, -0.021724693477153778, 0.01454119198024273, -0.13765642046928406, 0.04475684463977814, -0.02869027480483055, -0.1645386517047882, -0.01505003497004509, 0.014119412750005722, 0.149887353181839, -0.0468098409473896, -0.09208525717258453, 0.1497700959444046, 0.01438206061720848, -0.03871721029281616, 0.003298151306807995, 0.07456645369529724, 0.32875317335128784, 0.09334646165370941, 0.029223810881376266, 0.04137059301137924, -0.031402427703142166, 0.11935915052890778, -0.26178935170173645, 0.0008114837110042572, 0.16426469385623932, 0.15174371004104614, 0.145204558968544, 0.08082886785268784, -0.19425153732299805, 0.11443837732076645, 0.13096719980239868, -0.20554883778095245, 0.14575828611850739, 0.02788461372256279, -0.11163660883903503, 0.001986066810786724, -0.04830966144800186, 0.23353993892669678, 0.012654013931751251, -0.0802341103553772, -0.17477671802043915, 0.17627160251140594, -0.09721002727746964, -0.12156945466995239, 0.06808866560459137, -0.10789939016103745, -0.11273626983165741, -0.2492457926273346, 0.019102446734905243, 0.3180108964443207, 0.18967141211032867, -0.2397802323102951, -0.013572592288255692, -0.04210590198636055, -0.023666052147746086, 0.08059192448854446, 0.05441968888044357, -0.07991580665111542, -0.0381811186671257, -0.11981981992721558, 0.11200587451457977, 0.2715061604976654, -0.020768985152244568, -0.0076208412647247314, 0.20459412038326263, 0.17651651799678802, 0.011720096692442894, 0.009767726063728333, -0.03114895522594452, -0.06595700979232788, -0.013538891449570656, -0.1160292774438858, -0.0014580786228179932, 0.012806967832148075, -0.11449319124221802, -0.01048915833234787, 0.13739468157291412, -0.2022673487663269, 0.18102841079235077, 0.05007999390363693, -0.060249656438827515, -0.16785362362861633, 0.027350760996341705, -0.17543970048427582, 0.02956201136112213, 0.2082585245370865, -0.3050198256969452, 0.14847946166992188, 0.3139500617980957, 0.012281574308872223, 0.06797559559345245, 0.04928690567612648, 0.02009490132331848, 0.04587620869278908, -0.050245799124240875, -0.11470719426870346, -0.10213403403759003, 0.024586034938693047, -0.0673326849937439, 0.0292481929063797, 0.08022406697273254]]},
"162775": {"landmarks": [{"left_eyebrow": [[-1.6458876469594925, -1.6241020652686422], [-1.3189624751276434, -1.7247576591102813], [-0.9583277602542645, -1.6945958806908852], [-0.6299834825735617, -1.5986706396787587], [-0.30092965196843224, -1.404454981239749]], "bottom_lip": [[0.6657672847280601, 0.8821290804513896], [0.437605565606045, 1.0476020663198566], [0.2417342836767063, 1.1473115895955932], [0.04538996646441637, 1.1814941679200743], [-0.11866391355519716, 1.1499132836518249], [-0.3814812462846447, 1.0535150073567467], [-0.6450081319385191, 0.8588263136347861], [-0.5139542420360087, 0.8578802430688838], [-0.12079257232847761, 0.8550420313711765], [0.0760247801667635, 0.8863863979979505], [0.23984214254490147, 0.8852038097905724], [0.5347133948255497, 0.883075151017292]], "top_lip": [[-0.6450081319385191, 0.8588263136347861], [-0.35084643258229753, 0.7584072374346229], [-0.08921168806022803, 0.6909881513515629], [0.07507870960086109, 0.7553325080954401], [0.23842303669604784, 0.6886229749368069], [0.4354769068327646, 0.7527308140392084], [0.6657672847280601, 0.8821290804513896], [0.5347133948255497, 0.883075151017292], [0.23960562490342588, 0.8524403373149448], [0.0760247801667635, 0.8863863979979505], [-0.08802909985285001, 0.8548055137297008], [-0.5139542420360087, 0.8578802430688838]], "left_eye": [[-1.3147051575810826, -1.1350151545489846], [-1.0535434483419643, -1.2679611855832997], [-0.791199150895468, -1.237089854239477], [-0.5601992200757457, -1.0094011704004133], [-0.8220704822392908, -0.9747455567929807], [-1.084414779685787, -1.0056168881368035]], "right_eyebrow": [[0.45239369732952667, -1.4426583594693154], [0.7463188790442725, -1.5758409081451064], [1.040480578400494, -1.6762599843452695], [1.334878795398191, -1.7439155880698052], [1.5976961281276385, -1.647517311774727]], "transform": {"angle": 0.0072188176397093165, "scale": 30.521000031146336, "center": [122.875, 163.93055555555554]}, "chin": [[-1.9702111247351102, -1.1630482741951], [-1.9664268424715003, -0.6388327145850587], [-1.8973521328981109, -0.14785366273359613], [-1.7297504882563635, 0.37517930866906724], [-1.497094933946312, 0.8322122998375242], [-1.1993854699679565, 1.223245310771775], [-0.8366220963212968, 1.548278341471819], [-0.47456827559906417, 1.7750209547449805], [-0.08093357060858189, 1.8377096879985284], [0.31175506381599793, 1.769344531349566], [0.6042611396818902, 1.4395811478200098], [0.8965306979063068, 1.0770542918148258], [1.1558002660136204, 0.6820004809754899], [1.381833326362355, 0.2216562428263745], [1.575102914235462, -0.23845147768126534], [1.637082094564583, -0.7303766000986304], [1.6337708475839245, -1.1890652147574166]], "nose_tip": [[-0.25610377977754883, 0.26624559737578235], [-0.0592864272823077, 0.2975899640025563], [0.10500397037878144, 0.3619343207464334], [0.2355848249983406, 0.29546130522927583], [0.3989291520935273, 0.22875177207064262]], "nose_bridge": [[0.09483371179533046, -1.0468949957055527], [0.0974354058515621, -0.6864967984736493], [0.10003709990779375, -0.3260986012417459], [0.10287531160550101, 0.06706306846578514]], "right_eye": [[0.6190492714053718, -1.0506792779691625], [0.8469744728859113, -1.2489157363132573], [1.1088457350494565, -1.2835713499206898], [1.3061361228276487, -1.1867000383426605], [1.143501348656889, -1.0217000877571447], [0.8816300864933437, -0.9870444741497121]]}], "embedding": [[-0.06333905458450317, 0.12867870926856995, 0.07770118862390518, -0.04215574264526367, -0.15735599398612976, -0.046129509806632996, -0.0188314039260149, -0.05182972922921181, 0.1823466569185257, -0.055076368153095245, 0.2172451615333557, 0.019020825624465942, -0.17829114198684692, -0.028739050030708313, 0.007598515599966049, 0.14915233850479126, -0.2918657064437866, -0.14755238592624664, 0.02144337072968483, -0.008275719359517097, 0.11333052814006805, 0.0697631761431694, 0.0386715866625309, 0.12439720332622528, -0.13813330233097076, -0.32681262493133545, -0.04747531935572624, -0.08119899779558182, -0.05776998773217201, -0.10620931535959244, 0.007597313262522221, 0.1343512237071991, -0.1800309121608734, -0.04472316801548004, 0.00820908322930336, 0.07424253225326538, -0.04337886720895767, -0.10620783269405365, 0.18881383538246155, 0.026197334751486778, -0.24531739950180054, -0.01300901360809803, 0.0500064492225647, 0.29953017830848694, 0.2718287706375122, -0.03580617532134056, -0.0021043249871581793, -0.034790776669979095, 0.14572645723819733, -0.257415235042572, -0.063597172498703, 0.20626573264598846, 0.002200394868850708, 0.003099508583545685, 0.07120011746883392, -0.08983305841684341, -0.010022077709436417, 0.046433284878730774, -0.1839061826467514, -0.038324158638715744, 0.05651911348104477, -0.15581507980823517, 0.05566959083080292, -0.17456820607185364, 0.17221277952194214, 0.04983249306678772, -0.06989540159702301, -0.14161363244056702, 0.11263705790042877, -0.17074069380760193, -0.15051959455013275, 0.13071417808532715, -0.1450435072183609, -0.19490811228752136, -0.2532558739185333, -0.061569783836603165, 0.36487168073654175, 0.07205940037965775, -0.09993293881416321, 0.10327563434839249, 0.0019242176786065102, -0.08201722055673599, 0.04565495625138283, 0.19894924759864807, 0.06545601785182953, 0.06934323161840439, -0.11846932768821716, 0.09900115430355072, 0.21345803141593933, -0.04576510563492775, 0.004951572045683861, 0.25559359788894653, -0.030182288959622383, -0.006155217066407204, 0.09031779319047928, 0.04741337150335312, -0.031216975301504135, 0.10039573162794113, -0.15610238909721375, 0.07246612012386322, -0.03936465084552765, -0.08230632543563843, -0.037393905222415924, 0.05333329364657402, -0.11932265758514404, 0.057536009699106216, -0.03495293855667114, 0.011997954919934273, -0.0970286875963211, -0.12278413027524948, -0.11497187614440918, 0.006196565926074982, 0.14486253261566162, -0.2808203101158142, 0.15972907841205597, 0.11329536139965057, -0.07114673405885696, 0.12910930812358856, -0.04750712215900421, 0.08561724424362183, -0.08085470646619797, -0.10319317132234573, -0.1772492527961731, -0.03008742444217205, 0.064580537378788, -0.03818254545331001, 0.06900224089622498, -0.022486696019768715]], "url": "http://i.imgur.com/HuBH6Ab.png"},
"162776": {"embedding": [[-0.13748158514499664, 0.08246216922998428, 0.08100798726081848, -0.045716289430856705, -0.08949843049049377, 0.05788769945502281, -0.06571714580059052, -0.08635345101356506, 0.08797667920589447, -0.1363690048456192, 0.16902634501457214, -0.02924294024705887, -0.26047196984291077, 0.014325914904475212, 0.01812155544757843, 0.23699632287025452, -0.2260901927947998, -0.2608793079853058, -0.10173803567886353, -0.09498061239719391, -0.006629016250371933, 0.09226319938898087, -0.03341895341873169, 0.050729360431432724, -0.26881369948387146, -0.3661962151527405, -0.020191853865981102, -0.044892359524965286, -0.004805004224181175, -0.10502033680677414, 0.032685600221157074, 0.023527901619672775, -0.19683924317359924, 0.11878249794244766, 0.14164122939109802, 0.21550685167312622, -0.004813202656805515, -0.09297534078359604, 0.07248403877019882, 0.022760896012187004, -0.26715898513793945, -0.04519650340080261, 0.17767855525016785, 0.25402361154556274, 0.23774686455726624, 0.002840546891093254, -0.006831381935626268, -0.09684041142463684, 0.1123591810464859, -0.31567665934562683, 0.062052566558122635, 0.1265888214111328, 0.02321356162428856, 0.15832707285881042, 0.09509136527776718, -0.298521488904953, 0.012453015893697739, 0.15117837488651276, -0.13090811669826508, 0.05563504621386528, -0.003700029104948044, -0.05255410820245743, 0.06130220741033554, -0.016141757369041443, 0.1904875636100769, 0.06302101910114288, -0.1642867624759674, -0.14071005582809448, 0.18841712176799774, -0.17821091413497925, -0.013830405659973621, 0.03183355927467346, -0.10610394179821014, -0.24202436208724976, -0.2884926497936249, -0.028218287974596024, 0.3302012085914612, 0.1524835079908371, -0.2044122964143753, 0.0748632624745369, 0.054951950907707214, 0.03662077337503433, 0.025219760835170746, 0.1804446130990982, -0.025434250012040138, 0.0429849810898304, -0.09291412681341171, 0.06157401576638222, 0.2718605697154999, 0.0034993942826986313, 0.04768011346459389, 0.267116516828537, -0.06446945667266846, -0.03663432598114014, 0.10207566618919373, 0.09574190527200699, -0.1803339272737503, -0.04892006516456604, -0.18368463218212128, -0.12029142677783966, -0.08567648380994797, -0.05679101124405861, -0.002617333084344864, 0.12950491905212402, -0.1617768108844757, 0.2051447480916977, 0.001905009150505066, -0.007720742374658585, -0.06964801251888275, 0.05966056138277054, -0.02940243110060692, -0.050301894545555115, 0.15259896218776703, -0.2347269207239151, 0.2255682647228241, 0.2544938623905182, 0.032654181122779846, 0.20728342235088348, 0.09432750195264816, 0.08880546689033508, 0.024987924844026566, -0.010624837130308151, -0.11774042248725891, -0.031155604869127274, -0.049955710768699646, -0.10252991318702698, -0.015856219455599785, 0.04210522025823593]], "url": "http://i.imgur.com/s0RiMi9.png", "landmarks": [{"right_eyebrow": [[0.5048368450116039, -1.6460896911117742], [0.781425045730804, -1.7433672477051458], [1.0281281390956993, -1.778333844746422], [1.2758475303979893, -1.7514976312043002], [1.4334034506686673, -1.5686299442975915]], "nose_bridge": [[0.2039531755937677, -1.1465857167576172], [0.24095236850983265, -0.7762770022259257], [0.2779515614258976, -0.40596828769423404], [0.31444260537326546, -0.06656097845424146]], "top_lip": [[-0.6622067887123729, 0.6913335155448452], [-0.3233076284410775, 0.6239410663057783], [-0.014801724492783996, 0.5879581713271078], [0.14072159990310565, 0.6472202370670199], [0.3256218826846029, 0.613269937963138], [0.5115384634034945, 0.6411224494426541], [0.6675699367680813, 0.7312859204742655], [0.5135710592782831, 0.7647280706094505], [0.2972612222363896, 0.7682851133903306], [0.14275419577789428, 0.7708258582338163], [-0.04316238494099727, 0.7429733467543002], [-0.5380930185768794, 0.7202023249617556]], "transform": {"scale": 32.35661330211671, "angle": 0.016442720587363905, "center": [121.79166666666667, 165.98611111111111]}, "nose_tip": [[-0.14552143122134048, 0.1573710931181094], [0.04090329846624824, 0.2161250098893246], [0.22783617712253412, 0.30578033195223886], [0.3504255003519361, 0.24194492549405205], [0.473014823581338, 0.17810951903586528]], "right_eye": [[0.5155079733542441, -0.9971601799860935], [0.7287689165839546, -1.1861256545171681], [1.006373415240549, -1.2216004005271415], [1.1943225918342293, -1.0701422678808292], [1.0109467559588234, -0.94348775290185], [0.763735513625231, -0.9394225611522727]], "bottom_lip": [[0.6675699367680813, 0.7312859204742655], [0.4862266967674641, 0.981546056620041], [0.2719494556003593, 1.1087087205677173], [0.08654102385016489, 1.1117576143799004], [-0.09886740790002951, 1.1148065081920833], [-0.37901265140010976, 0.9957742277435615], [-0.6622067887123729, 0.6913335155448452], [-0.5380930185768794, 0.7202023249617556], [-0.07253934332660486, 0.8361857115980946], [0.1133772373922867, 0.8640382230776107], [0.2673761148820849, 0.8305960729424259], [0.5135710592782831, 0.7647280706094505]], "left_eyebrow": [[-1.532623308365746, -1.4889462380109653], [-1.2575595545526372, -1.6789280104794342], [-0.9186603942813419, -1.746320459718501], [-0.578236787103955, -1.7210086930824708], [-0.23628873302047665, -1.602992710571343]], "chin": [[-2.204323841283971, -0.9833444760324426], [-2.1956853088161195, -0.4580205860735586], [-2.125243965764869, 0.06628700594793124], [-1.9929998121302215, 0.5895783000320267], [-1.7386744842348687, 1.0181327823662365], [-1.392153089433116, 1.4142614125026556], [-0.9853533309540566, 1.7166695288265832], [-0.5177670598289932, 1.9562585366297183], [-0.02232827722441378, 2.009930963713962], [0.3778655446615826, 1.9106208112458016], [0.6817981078916018, 1.5965252686418394], [0.9229115626008283, 1.2216432133918735], [1.1017140577579596, 0.8168760507876025], [1.2491069986546948, 0.38171563186032986], [1.3650903852910337, -0.08383804338994484], [1.4506805156043707, -0.5179821643798233], [1.4435664300426103, -0.9506018384636102]], "left_eye": [[-1.154692359303597, -1.0624243515515444], [-0.9409232671051893, -1.2204884207909197], [-0.6623024705112005, -1.194160356217495], [-0.4429437396571241, -1.0123089672481806], [-0.6582372787616233, -0.9469491138839025], [-0.9363499263869148, -0.942375773165628]]}]},
"162777": {"landmarks": [{"left_eyebrow": [[-1.651840325569327, -1.4779747557391145], [-1.3975253449155725, -1.6325394681088983], [-1.0513381194184095, -1.5651201865181856], [-0.7366940782704482, -1.4980948060995007], [-0.42283783946654313, -1.3679830569824127]], "right_eye": [[0.5810294432995192, -0.9137736385886882], [0.8041951407761003, -1.100275436479702], [1.0569345167417425, -1.128667411452679], [1.2765551036700704, -1.0312805502008766], [1.085326491714719, -0.8759280354870367], [0.8329810169211052, -0.8790792448632616]], "left_eye": [[-1.247293545438098, -1.0312494596139243], [-1.0253095514776014, -1.123121704457333], [-0.7418147935068137, -1.0880334095598778], [-0.5545251932717438, -0.9279540807817005], [-0.807658470409414, -0.868018921459522], [-1.059610044031, -0.9027133151849487]], "chin": [[-1.8753999242179362, -1.259929773498899], [-1.787466691094809, -0.7225139360463849], [-1.6991395567996537, -0.21664128294307256], [-1.6108124225044984, 0.28923137016023986], [-1.4270679328176814, 0.7331993580812332], [-1.1479060877392029, 1.115262680819907], [-0.8052639727902932, 1.4665706215534358], [-0.4310786734921814, 1.8182724634589926], [-0.021805079296614845, 1.8864795473937614], [0.3894380207590923, 1.7969707095825216], [0.8665247977173998, 1.487447383670926], [1.2809191071493318, 1.1455930710660722], [1.6330148502269166, 0.7398645874187588], [1.828576375074577, 0.23753704486369953], [1.9299022480466603, -0.2975153855566459], [2.0631652065399733, -0.863717099154165], [2.164491079512057, -1.3987695295745104]], "top_lip": [[-0.7007868904419849, 0.6791727163394763], [-0.4480475144763427, 0.6507807413664995], [-0.22685132285990237, 0.6219948652214945], [-0.06992320345794983, 0.6870507397800387], [0.12012370498131691, 0.6263277781138038], [0.3720752786029028, 0.6610221718392306], [0.6871132209228922, 0.6965043679087135], [0.560152681182029, 0.7580151319190046], [0.1177602979491482, 0.8155868842090144], [-0.07189270931809043, 0.8447666615260474], [-0.22921472989207106, 0.8112539713167051], [-0.575401955389234, 0.7438346897259923]], "right_eyebrow": [[0.33538028843038326, -1.453158981901343], [0.7154741053089168, -1.5746049052338127], [1.095174021015422, -1.6645076442170803], [1.4740861343778713, -1.6913240145019448], [1.7879423731817763, -1.5612122653848566]], "transform": {"scale": 31.700098093472874, "angle": -0.01248703029852172, "center": [125.94444444444444, 163.19444444444446]}, "nose_bridge": [[-0.04904644134045953, -0.9847380307276542], [-0.05377325540479695, -0.6062198185372332], [-0.09043715499036425, -0.1965523231696385], [-0.09516396905470169, 0.18196588902078253]], "nose_tip": [[-0.41177751606280355, 0.2726564303481066], [-0.254849396660851, 0.3377123049066507], [-0.09831517843092663, 0.4343113638143965], [0.09212563118036823, 0.34204521779896], [0.282172539619635, 0.2813222561327252]], "bottom_lip": [[0.6871132209228922, 0.6965043679087135], [0.3677423657105935, 1.00799719968045], [0.11382128622886702, 1.131018727701032], [-0.07543781986634349, 1.1286553206688632], [-0.264696925961554, 1.1262919136366945], [-0.48392361171785375, 0.9973618680356907], [-0.7007868904419849, 0.6791727163394763], [-0.575401955389234, 0.7438346897259923], [-0.22921472989207106, 0.8112539713167051], [-0.07189270931809043, 0.8447666615260474], [0.1177602979491482, 0.8155868842090144], [0.560152681182029, 0.7580151319190046]]}], "embedding": [[-0.1098610982298851, 0.1520324945449829, 0.08979738503694534, -0.14512188732624054, -0.11019250750541687, -0.044956885278224945, -0.05902331322431564, -0.14521367847919464, 0.2207895964384079, -0.06996187567710876, 0.07819831371307373, -0.036144014447927475, -0.19021320343017578, 0.053918980062007904, -0.021907955408096313, 0.17335662245750427, -0.14673136174678802, -0.25335896015167236, 0.03311130777001381, -0.026371635496616364, 0.08481539785861969, 0.02046748250722885, -0.11159828305244446, 0.15870171785354614, -0.1562618762254715, -0.26240822672843933, -0.1373424530029297, -0.015858657658100128, -0.10536695271730423, -0.08090262115001678, 0.06853719800710678, 0.13559715449810028, -0.17650076746940613, 0.031013626605272293, 0.0310104638338089, 0.12321212887763977, 0.019711608067154884, -0.17369771003723145, 0.17090430855751038, 0.11708910763263702, -0.2643629014492035, -0.021339135244488716, 0.052784696221351624, 0.3249238431453705, 0.20335325598716736, -0.03368764370679855, -0.0008547604084014893, -0.010410450398921967, 0.18994122743606567, -0.24245984852313995, -0.004388571251183748, 0.26635032892227173, 0.05703440681099892, 0.05997280776500702, 0.04923166707158089, -0.15128591656684875, 0.07998441159725189, 0.01199061144143343, -0.24046672880649567, 0.0020773764699697495, 0.11252821981906891, -0.14056314527988434, -0.007493233308196068, -0.184254989027977, 0.1314365714788437, 0.14533399045467377, -0.10358220338821411, -0.13783477246761322, 0.20661213994026184, -0.12740102410316467, -0.13437005877494812, -0.007432134356349707, -0.23492302000522614, -0.20493032038211823, -0.250801146030426, 0.03392219543457031, 0.34578463435173035, 0.20503339171409607, -0.1723909229040146, 0.10107488930225372, 0.013986598700284958, 0.01755800098180771, -0.027936380356550217, 0.1908525675535202, 0.029560409486293793, 0.05268499255180359, -0.04075902700424194, 0.061941664665937424, 0.22927801311016083, 0.007097546011209488, -0.008177636191248894, 0.25277483463287354, -0.04331269860267639, -0.018131183460354805, -0.019993113353848457, 0.04692147672176361, -0.05962688475847244, 0.054565027356147766, -0.13670223951339722, 0.029842205345630646, -0.011077580973505974, 0.003972537815570831, 0.0023993849754333496, 0.17851485311985016, -0.20310823619365692, 0.19376273453235626, 0.02266344055533409, -0.0031122229993343353, -0.1533776968717575, 0.02527588978409767, -0.12045078724622726, -0.00020133145153522491, 0.1494642049074173, -0.1644074022769928, 0.1770549714565277, 0.14596065878868103, -0.024978889152407646, 0.07944401353597641, 0.022069811820983887, 0.11255539953708649, 0.025919819250702858, -0.07916036993265152, -0.13798996806144714, -0.11675110459327698, 0.058013852685689926, -0.01150586735457182, 9.430572390556335e-05, 0.06660146266222]], "url": "http://i.imgur.com/sZXZCOO.png"},
"162778": {"embedding": [[-0.046431634575128555, -0.030955754220485687, 0.005677908658981323, -0.010015346109867096, -0.013952076435089111, 0.03467671200633049, 0.03878180682659149, 0.016492154449224472, 0.11101451516151428, -0.04342825338244438, 0.2086424082517624, -0.07703647017478943, -0.3331315815448761, -0.015464238822460175, -0.04164668172597885, 0.08239169418811798, -0.1343960165977478, -0.030846890062093735, -0.1812801957130432, -0.098513163626194, 0.10870864987373352, 0.009139016270637512, 0.0749627947807312, -0.02544376254081726, -0.2443353533744812, -0.18233148753643036, -0.04115809500217438, -0.11136413365602493, -0.003584841266274452, -0.08669354021549225, 0.0064499154686927795, 0.07996505498886108, -0.21564632654190063, -0.09294072538614273, 0.04580395296216011, 0.051120124757289886, -0.009962085634469986, -0.02864646166563034, 0.1530337780714035, -0.005158981308341026, -0.13492076098918915, 0.021492913365364075, 0.03644882142543793, 0.2441387176513672, 0.20663824677467346, 0.08144249022006989, -0.06456758081912994, -0.04900698736310005, 0.10246241837739944, -0.30338943004608154, 0.06722459942102432, 0.12048138678073883, 0.14376817643642426, 0.11512157320976257, 0.10160523653030396, -0.15818357467651367, 0.06561700999736786, 0.2384667992591858, -0.13091641664505005, 0.05262818932533264, -0.01655222848057747, -0.05759406089782715, 0.07540769129991531, -0.12756459414958954, 0.11404655873775482, -0.014281488955020905, -0.1274234652519226, -0.05513470247387886, 0.14153476059436798, -0.09382544457912445, -0.020970840007066727, 0.09625311195850372, -0.12892921268939972, -0.19517847895622253, -0.33380067348480225, -0.0022168243303894997, 0.32746732234954834, 0.19983923435211182, -0.1750640869140625, 0.012729328125715256, -0.06308040767908096, 0.022072315216064453, -0.011306945234537125, 0.02090240642428398, -0.08387576043605804, 0.022698625922203064, -0.04285087436437607, -0.005622148513793945, 0.15830709040164948, -0.03996783867478371, -0.05747716873884201, 0.22304753959178925, -0.032743897289037704, -0.06632989645004272, 0.05291976407170296, -0.035293497145175934, -0.12759549915790558, -0.07731874287128448, -0.14090654253959656, -0.041578005999326706, -0.03937297686934471, -0.19051319360733032, -0.004575498402118683, 0.10086753964424133, -0.2177455723285675, 0.1428065448999405, -0.05797281861305237, -0.029252460226416588, -0.04532371088862419, -0.014926891773939133, -0.05165788531303406, 0.08267524838447571, 0.164058119058609, -0.3096999228000641, 0.15403679013252258, 0.2285405844449997, 0.05844217538833618, 0.13007070124149323, 0.057000260800123215, 0.06263498961925507, -0.05828142911195755, 0.09225188195705414, -0.18546101450920105, -0.13127732276916504, 0.05873870477080345, -0.0192527174949646, 0.08382851630449295, 0.03357502073049545]], "url": "http://i.imgur.com/p6MSxif.png", "landmarks": [{"nose_tip": [[-0.49643042567517826, 0.12317129892000832], [-0.34861777138044125, 0.21304492863640492], [-0.14129633746971826, 0.27360021161082115], [0.09656436376782045, 0.18599400583769019], [0.3342506477789541, 0.12805498125934972]], "left_eye": [[-1.1719733213255614, -1.0378603638841348], [-0.9634309668300031, -1.1849753492732518], [-0.7260935172716796, -1.1835800114620112], [-0.5194697522665768, -1.0043560037084336], [-0.7571560362777103, -0.946416979130093], [-0.9944934858360339, -0.9478123169413335]], "right_eye": [[0.48938882558270325, -1.028092999205452], [0.6684384161098762, -1.2050495830157646], [0.9354430468629902, -1.2034798279781191], [1.1720828275156936, -1.0834157653877172], [0.9637148902465402, -0.9659679611933906], [0.6967102594934261, -0.967537716231036]], "chin": [[-1.6756177327313788, -1.1594941815121826], [-1.6192484631906838, -0.6548032667479351], [-1.5627047764235835, -0.1797795331784779], [-1.4763194912352882, 0.26575143642259386], [-1.360441442078607, 0.741124004444861], [-1.1255458336899544, 1.1578598789831678], [-0.8311414456853156, 1.5452774067794939], [-0.5070698764858863, 1.932869351802225], [-0.03326706350126453, 2.0839959333986586], [0.4714238512629831, 2.027626663857963], [0.9180013242224851, 1.763238291500925], [1.3652764660876076, 1.3801811943647249], [1.7238988988211685, 0.937266483159729], [1.9643758584547828, 0.40465255946474143], [2.086358510535641, -0.15832621433065672], [2.178848398648113, -0.7511465865472504], [2.241671105565795, -1.344141375990249]], "left_eyebrow": [[-1.5562513390465966, -1.277465237385724], [-1.3768529140666137, -1.5137561835856177], [-1.0800066848923042, -1.5416791925163573], [-0.7540165262024194, -1.480426240636321], [-0.45821680038654033, -1.3303461623983182]], "nose_bridge": [[-0.10378038108670053, -1.0612485249283437], [-0.1355405689983516, -0.7054167678172634], [-0.1376335757152122, -0.3494105934797781], [-0.16939376362686323, 0.006421163631302115]], "transform": {"center": [126.70833333333333, 164.75], "angle": -0.005879062650826614, "scale": 33.706698044388084}, "bottom_lip": [[0.7762932728519248, 0.635013319966863], [0.44768685576596434, 1.0187680860086832], [0.15014295768603467, 1.165359819718585], [-0.08736890909869391, 1.1936316631021349], [-0.2948647602358219, 1.1627435613225092], [-0.5311557064357152, 0.9833451363425261], [-0.766051314824368, 0.5666092618042194], [-0.6182386605296311, 0.656482891520616], [-0.2934694224245815, 0.9254061117641856], [-0.0859735712874535, 0.9562942135438113], [0.12169669707607958, 0.9575151341286466], [0.657450130846358, 0.6639828322560332]], "right_eyebrow": [[0.2541443827412403, -1.385494511354178], [0.6108482259843457, -1.5020702294164792], [0.9672032347746412, -1.5593115850891994], [1.3528765903069169, -1.5570441611459338], [1.6485018988963909, -1.3772969017131405]], "top_lip": [[-0.766051314824368, 0.5666092618042194], [-0.49922110129765906, 0.5978461980366554], [-0.29137641570772094, 0.5693999374267003], [-0.08405498179699795, 0.6299552204011165], [0.12396412101934523, 0.5718417785963709], [0.42046151574084456, 0.6032531320552119], [0.7762932728519248, 0.635013319966863], [0.657450130846358, 0.6639828322560332], [0.12326645211372503, 0.6905105033755328], [-0.0845782334762131, 0.7189567639854878], [-0.29207408461334117, 0.6880686622058622], [-0.6182386605296311, 0.656482891520616]]}]},
"162779": {"landmarks": [{"right_eye": [[0.4583367373772865, -1.0373943564905561], [0.644501367946062, -1.1566978199810933], [0.8897631583114164, -1.1522612443915736], [1.1339158047793907, -1.0865092212107152], [0.9170934504149458, -0.9677603296688679], [0.6718316600495915, -0.9721969052583878]], "left_eyebrow": [[-1.4341235587238594, -1.5316436742443742], [-1.3092743757464225, -1.6520562816322915], [-1.0344640054827787, -1.585749686502743], [-0.7914205029121844, -1.4586822157305461], [-0.5177192765459209, -1.3310601730096594]], "bottom_lip": [[0.7634065261056298, 0.7468539150938521], [0.4211804168150578, 1.016673137819286], [0.11238489106360501, 1.133758313515063], [-0.13287689930174928, 1.1293217379255434], [-0.34692639392274427, 1.0947820104890442], [-0.4979967251063308, 0.9693782555629172], [-0.6462941965464674, 0.6906858816584437], [-0.5860878928525087, 0.7531104731471623], [-0.34248981833322445, 0.84952022012369], [-0.12844032371222944, 0.884059947560189], [0.08616374285745557, 0.8879419512010188], [0.670878782769932, 0.7758479230434515]], "right_eyebrow": [[0.004016599929146991, -1.3522901736775987], [0.37468214522062837, -1.4989239292716654], [0.8049994222573783, -1.5524753695813442], [1.202995259652389, -1.5146082104527054], [1.5987728092526399, -1.3541101561413889]], "top_lip": [[-0.6462941965464674, 0.6906858816584437], [-0.49411472146550095, 0.7547741889932322], [-0.3408261024871545, 0.7575470487366821], [-0.1579889036105188, 0.8221899280201606], [0.05716973490785622, 0.7954142078653211], [0.3944046966602183, 0.8015144993009109], [0.7634065261056298, 0.7468539150938521], [0.670878782769932, 0.7758479230434515], [0.08616374285745557, 0.8879419512010188], [-0.1596526194565887, 0.9141630994071683], [-0.3430443902819144, 0.8801779439193591], [-0.5860878928525087, 0.7531104731471623]], "chin": [[-1.4374509904159993, -1.3476973314703586], [-1.445769569646349, -0.8878314745353193], [-1.4234304250810295, -0.42741104565159005], [-1.3397758329243714, 0.03411852712951917], [-1.1641480693807056, 0.4973118157566983], [-0.9260957143483209, 0.9002988006899189], [-0.6584947794176469, 1.3651558051631678], [-0.35912697679392386, 1.7692519339937685], [0.06786286855068621, 1.8996468364581054], [0.5589410212300848, 1.8778622638414757], [1.0544557494990032, 1.610815900859492], [1.5209764698183221, 1.2512417945418102], [1.8960785906993232, 0.8593462485823893], [2.120110380396738, 0.34204694769684124], [2.2220658468601653, -0.208128364779136], [2.2944727334253034, -0.8201736967951417], [2.3362218961947727, -1.4327736007598373]], "nose_tip": [[-0.6073178935204483, 0.2313745966720944], [-0.4568021342855519, 0.38743607539389074], [-0.2745195073576061, 0.48273667847303847], [-0.027594001146181893, 0.39520008267555046], [0.18867378126957304, 0.3071089149293725]], "nose_bridge": [[-0.24734548187179706, -1.0194917875147564], [-0.2857672129491261, -0.5908382263240765], [-0.35429209587343435, -0.19339696087775574], [-0.39271382695076346, 0.23525660031292425]], "transform": {"center": [128.66666666666666, 163.09722222222223], "scale": 32.612872314262965, "angle": -0.018087170325658198}, "left_eye": [[-1.1336466122027566, -1.1888629930051122], [-0.9485911255313607, -1.246851008904311], [-0.7345416309103658, -1.2123112814678119], [-0.5221558521354407, -1.085798382644305], [-0.768526786398175, -1.028919510642486], [-0.9825762810191698, -1.0634592380789853]]}], "url": "http://i.imgur.com/nO6Yftz.png", "embedding": [[-0.10431142151355743, 0.16035133600234985, 0.05272410064935684, -0.018884073942899704, -0.11945679783821106, -0.018122056499123573, -0.07000144571065903, -0.11376088112592697, 0.10425516217947006, -0.0833924412727356, 0.30700168013572693, -0.016650386154651642, -0.1540173590183258, -0.09236516803503036, 0.032473865896463394, 0.13262620568275452, -0.11996505409479141, -0.19031894207000732, -0.08371435105800629, -0.07677599787712097, 0.030453134328126907, 0.01130521297454834, 0.031986404210329056, 0.06903506815433502, -0.18290826678276062, -0.4389800429344177, -0.09090061485767365, -0.08553758263587952, 0.12861603498458862, -0.04576830193400383, 0.026975765824317932, -0.04960256069898605, -0.1879895031452179, -0.014659836888313293, 0.008238200098276138, 0.04513537138700485, -0.0872417464852333, -0.15080875158309937, 0.22459064424037933, -0.011460915207862854, -0.21401087939739227, 0.10043969750404358, 0.0018429234623908997, 0.2627479135990143, 0.12266233563423157, 0.006245024502277374, 0.15943209826946259, -0.11558357626199722, 0.12646619975566864, -0.16176946461200714, 0.14490246772766113, 0.16990786790847778, 0.13594341278076172, 0.013664357364177704, 0.08378490805625916, -0.14180612564086914, -0.012198574841022491, 0.21451140940189362, -0.2306707799434662, 0.11147663742303848, 0.05409974604845047, 0.07127203047275543, 0.0026801982894539833, -0.14720973372459412, 0.16350339353084564, 0.13165676593780518, -0.12191715836524963, -0.1727188229560852, 0.16641440987586975, -0.14469075202941895, -0.0545036718249321, 0.08177772164344788, -0.13532409071922302, -0.2717973291873932, -0.30788448452949524, 0.13458260893821716, 0.4076249599456787, 0.19348859786987305, -0.19476766884326935, -0.028783967718482018, 0.025997936725616455, -0.03647729381918907, 0.032169777899980545, 0.10744524002075195, -0.11157844960689545, -0.09209126234054565, -0.12430383265018463, 0.023816216737031937, 0.23939339816570282, 0.0522383451461792, -0.073973149061203, 0.23946316540241241, 0.014169633388519287, 0.015918750315904617, -0.011458391323685646, 0.0875859260559082, -0.19098308682441711, 0.042441561818122864, -0.053267136216163635, 0.023940738290548325, -0.005545786581933498, -0.04894282668828964, -0.04721135273575783, 0.12677055597305298, -0.14509309828281403, 0.22948969900608063, -0.05801301449537277, 0.005867268890142441, -0.045296378433704376, 0.076080322265625, -0.10185184329748154, -0.049697522073984146, 0.1275174468755722, -0.2016730010509491, 0.1923372596502304, 0.19543123245239258, 0.13819225132465363, 0.17194169759750366, 0.14255103468894958, 0.030395450070500374, 0.03634928911924362, -0.012572500854730606, -0.2529429495334625, -0.0763576477766037, 0.020786181092262268, -0.12067760527133942, 0.044536083936691284, 0.07639487087726593]]},
"162780": {"embedding": [[-0.09731616079807281, 0.02542516030371189, 0.12075088918209076, -0.06123291701078415, -0.12732556462287903, -0.06632762402296066, -0.0422784648835659, -0.06494081020355225, 0.13309361040592194, -0.05021987110376358, 0.11206069588661194, -0.16581210494041443, -0.3072889447212219, 0.13111519813537598, -0.08597004413604736, 0.13752660155296326, -0.11002207547426224, -0.1146702691912651, -0.0862099751830101, -0.11078167706727982, 0.06215044483542442, 0.12923453748226166, -0.054681628942489624, 0.06693056225776672, -0.1102600172162056, -0.27340567111968994, -0.10153959691524506, -0.0565272681415081, -0.057627130299806595, -0.07313049584627151, -0.016270892694592476, 0.05474194884300232, -0.1658344715833664, 0.0013265572488307953, 0.0381411574780941, 0.07362361997365952, -0.07187210768461227, -0.16500937938690186, 0.0813509151339531, -0.0080039594322443, -0.17930783331394196, -0.020215682685375214, 0.15789566934108734, 0.22181007266044617, 0.23665471374988556, -0.013761445879936218, -0.036708224564790726, -0.08022353053092957, 0.07331635057926178, -0.2987143099308014, 0.00463517103344202, 0.17331378161907196, 0.02883506938815117, 0.1492101550102234, 0.08138900250196457, -0.21017679572105408, -0.06174267828464508, 0.18176957964897156, -0.15512850880622864, 0.12946535646915436, 0.028273336589336395, -0.05811825767159462, -0.006801791489124298, -0.15440234541893005, 0.1615421622991562, 0.07000331580638885, -0.18793585896492004, -0.13186012208461761, 0.14040076732635498, -0.20308300852775574, -0.018317196518182755, 0.10571277886629105, -0.15867240726947784, -0.2567271590232849, -0.20757092535495758, 0.07445415109395981, 0.4082111418247223, 0.1045738086104393, -0.10423285514116287, 0.0489591620862484, -0.05008320137858391, -0.041051775217056274, -0.03244904801249504, 0.10296700894832611, 0.06550750136375427, -0.039770688861608505, -0.06032269448041916, 0.07217284291982651, 0.22792357206344604, -0.10036718100309372, 0.02649664878845215, 0.27604836225509644, -0.06601814180612564, -0.02191094122827053, -0.04591367766261101, 0.10986095666885376, -0.12320707738399506, 0.00934685580432415, -0.11594057083129883, 0.007703065872192383, -0.04286845028400421, -0.11570293456315994, -0.02919815480709076, 0.05415507033467293, -0.1000400260090828, 0.1203332245349884, 0.044327348470687866, -0.022741341963410378, -0.07623758167028427, -0.04595673084259033, -0.09363702684640884, -0.011246204376220703, 0.2159355729818344, -0.2704963684082031, 0.18482866883277893, 0.1506270468235016, 0.0756351500749588, 0.16833609342575073, -0.027268419042229652, 0.09528001397848129, 0.06678309291601181, -0.05000662803649902, -0.11035331338644028, -0.029395373538136482, 0.003020733594894409, 0.015584844164550304, -0.0738431066274643, 0.0662534162402153]], "landmarks": [{"top_lip": [[-0.6728958722559869, 0.8859563204871745], [-0.6384615833930334, 0.5599746364130833], [-0.45782084697845854, 0.38452689935113776], [-0.28020936018625076, 0.4167974384838292], [-0.10129962355588573, 0.36004585924739047], [0.22338381068004812, 0.48350226647947414], [0.5755775346420964, 0.7557616209394937], [0.427207337360213, 0.7535978712092315], [-0.04584629415760437, 0.6279777142468856], [-0.25399732029829364, 0.6546225040808952], [-0.4028002675262296, 0.6821327938070096], [-0.5537669644844277, 0.8580132808150076]], "bottom_lip": [[0.5755775346420964, 0.7557616209394937], [0.30461643002023414, 1.018933226532412], [0.0061450356722574165, 1.1333018848973944], [-0.1723319510120552, 1.1603794246774564], [-0.38005022720669207, 1.1573501750550892], [-0.5567962141067949, 1.0657315570096444], [-0.6728958722559869, 0.8859563204871745], [-0.5537669644844277, 0.8580132808150076], [-0.40496401725649184, 0.8305029910888931], [-0.22691978051823167, 0.8330994907652078], [-0.04844279383391905, 0.8060219509851458], [0.427207337360213, 0.7535978712092315]], "transform": {"angle": -0.014582418815499059, "scale": 33.69590715429126, "center": [128.23611111111111, 167.81944444444446]}, "left_eyebrow": [[-1.2618634551017542, -1.467380545433686], [-1.1706775870023618, -1.6144524928774118], [-0.9917678503719968, -1.6712040721138504], [-0.8137236136337368, -1.6686075724375358], [-0.6374103766796863, -1.5473149149357146]], "right_eyebrow": [[0.25497455674187675, -1.6827026138360244], [0.5543114509819584, -1.85641935111376], [0.9112654243505837, -1.9105744306738843], [1.2363816085325698, -1.8167920628981773], [1.5300927534739697, -1.6047462872430158]], "left_eye": [[-1.0030193489693604, -0.8996790462480566], [-0.8821594414135915, -1.0463182437457303], [-0.6443343758165254, -1.0725302836336874], [-0.4383470994060984, -0.9508048761858133], [-0.647796375384945, -0.8351379679826738], [-0.8559474015256343, -0.8084931781486643]], "nose_tip": [[-0.4521950976797767, -0.0012356135817592337], [-0.36360572925669904, 0.0297366757127748], [-0.2453423213772447, 0.061141714953361286], [-0.09610662420325636, 0.003957385770870134], [0.05269632302467956, -0.02355290395524432]], "chin": [[-1.1827945854918303, -0.7835793880988645], [-1.2477684137032659, -0.39868237505807236], [-1.2241528734916232, 0.01718692727725383], [-1.1115152149108507, 0.43435447945073735], [-0.9988775563300781, 0.8515220316242209], [-0.8866726476953581, 1.2983636232540812], [-0.7146869102018322, 1.7163966753196693], [-0.4218412651525373, 1.9877905298875842], [0.05207786625738494, 2.0540626079371767], [0.616750115820647, 2.00293677799942], [1.1539120756577947, 1.803008000833727], [1.5736761275075928, 1.5123261055146944], [1.8756095214239892, 1.1605651314986984], [2.060577757299088, 0.6883769998729861], [2.1573893746971624, 0.15554253949636293], [2.2240942026928074, -0.34805063136993597], [2.261124991232076, -0.8520765521822874]], "right_eye": [[0.45360508406941225, -1.0565185356297468], [0.6634871099943113, -1.201859483289263], [0.930986215047754, -1.2276387732311678], [1.1666475309145576, -1.1054806158372417], [0.9567655049896588, -0.9601396681777252], [0.6896991498822685, -0.9640344176921972]], "nose_bridge": [[-0.22803232353514682, -1.1258198633017067], [-0.2611683625599431, -0.8888602975967455], [-0.32397844104111606, -0.6523334818378367], [-0.38678851952228904, -0.4158066660789281]]}], "url": "http://i.imgur.com/HMj9axM.png"},
"162781": {"landmarks": [{"chin": [[-1.689743215600675, -1.0432613394305714], [-1.6383680966471623, -0.5587329060877391], [-1.5562150540981805, -0.10385120431399475], [-1.4746276075623894, 0.3812428250420279], [-1.3930401610265981, 0.8663368543980504], [-1.1894722121353132, 1.2932686126422774], [-0.8639237608885352, 1.6620380997747088], [-0.4449103468289712, 1.8814427370353197], [0.007143374878822113, 1.9503513323977293], [0.5218841358039328, 1.8995418094574066], [1.0400184728081847, 1.6674583210234144], [1.4988593466742608, 1.373818985398485], [1.8089009666817062, 0.9565023593784916], [1.9091530816527744, 0.444589578519332], [2.009405196623843, -0.06732320233982757], [2.0794449840126332, -0.5798015792121773], [2.119272443819145, -1.0928455520977174]], "bottom_lip": [[0.693872826203362, 0.7845136689790625], [0.387790378288248, 0.990344001923108], [0.08397031442589488, 1.0753250245380404], [-0.12808157466324308, 1.1015781800279874], [-0.30878994414372235, 1.0679722763665676], [-0.5191450451932897, 1.0035884491096798], [-0.6964598385946277, 0.7887085799545908], [-0.5756105282655146, 0.7909709640073516], [-0.30313398401182023, 0.7658490005437854], [-0.1218600185181507, 0.7692425766229266], [0.08962627455779704, 0.7732017487152582], [0.5428111882919707, 0.7816856889131114]], "nose_bridge": [[-0.08735866171354754, -1.0737094058960466], [-0.12322694942772797, -0.7721517260864544], [-0.12944850557282034, -0.4398161226813936], [-0.16531679328700075, -0.13825844287180133]], "left_eyebrow": [[-1.5307632335046208, -1.463405945516516], [-1.286236632780444, -1.6099428153223854], [-0.9841133569576614, -1.6042868551904832], [-0.6825556771480691, -1.568418567476303], [-0.38269478537804746, -1.4419132970152877]], "right_eyebrow": [[0.31331994104073274, -1.4893292438764694], [0.617705600916276, -1.60452259407368], [0.9215256647786292, -1.6895036166886126], [1.2835079997527779, -1.6525041369480518], [1.6135812191050778, -1.5254332704738467]], "right_eye": [[0.48610996633654896, -1.0327507540631542], [0.7009898354916381, -1.2100655474644921], [0.9729007837321423, -1.2049751833457802], [1.2123370203376074, -1.0796011049111456], [0.9985883432088988, -0.9627109666743642], [0.7266773949683946, -0.9678013307930761]], "top_lip": [[-0.6964598385946277, 0.7887085799545908], [-0.5117922970218169, 0.6108281905400624], [-0.29860921590629846, 0.5241503798855592], [-0.11846644243900942, 0.587968611129257], [0.09415104266331877, 0.531503128057032], [0.36436520286425234, 0.6272304749225787], [0.693872826203362, 0.7845136689790625], [0.5428111882919707, 0.7816856889131114], [0.08962627455779704, 0.7732017487152582], [-0.09164769093587247, 0.7698081726361169], [-0.27292165642954197, 0.7664145965569755], [-0.5756105282655146, 0.7909709640073516]], "nose_tip": [[-0.3818934504816604, 0.1296933332763714], [-0.26217533217892786, 0.19238037249368875], [-0.11167929028072682, 0.2254206801419181], [0.04051353965704484, 0.16782400504331266], [0.22235310116390453, 0.1410052535401757]], "transform": {"scale": 33.09327329918153, "center": [126.55555555555556, 165.47222222222223], "angle": -0.01871851653017734}, "left_eye": [[-1.1453557231064764, -1.063292938775426], [-0.9618193735600461, -1.1807486730253975], [-0.7201207529018201, -1.176223904919876], [-0.5120280359050137, -0.9909907673338749], [-0.7548578485896201, -0.9350908802748401], [-0.9965564692478461, -0.9396156483803618]]}], "embedding": [[-0.09350351244211197, 0.14422738552093506, 0.1275048553943634, -0.08503967523574829, -0.1868029683828354, -0.007400467060506344, -0.07506908476352692, -0.010083083063364029, 0.22205141186714172, -0.08950842916965485, 0.17768001556396484, -0.007220089435577393, -0.23691099882125854, 0.016597146168351173, -0.017722174525260925, 0.13111643493175507, -0.13674825429916382, -0.17131590843200684, -0.07883143424987793, -0.004379782825708389, 0.11327831447124481, 0.036628443747758865, 0.10361851751804352, 0.026155687868595123, -0.12673480808734894, -0.34150394797325134, -0.048759475350379944, -0.015282992273569107, -0.010797740891575813, -0.11949708312749863, 0.024004988372325897, 0.1115732342004776, -0.1924465000629425, -0.009187193587422371, -0.043408140540122986, 0.15117841958999634, -0.04423218220472336, -0.1648501455783844, 0.12995482981204987, -0.031235206872224808, -0.2607286274433136, -0.027623431757092476, -0.02918679267168045, 0.25049567222595215, 0.3055203855037689, 0.03684214502573013, 0.011399874463677406, -0.02315441146492958, 0.10119249671697617, -0.3927609622478485, 0.03908088430762291, 0.1681298315525055, -0.04295878857374191, 0.06656591594219208, 0.024854090064764023, -0.21384280920028687, 0.06642746925354004, 0.10289536416530609, -0.20364704728126526, -0.0734541043639183, 0.032560933381319046, -0.11135908961296082, 0.03256656602025032, -0.12262102961540222, 0.291606068611145, 0.18180502951145172, -0.13411715626716614, -0.15842187404632568, 0.15609624981880188, -0.1585012525320053, -0.04996528476476669, 0.10317396372556686, -0.18005967140197754, -0.1380358636379242, -0.2698121964931488, -0.007361173629760742, 0.41323012113571167, 0.10421601682901382, -0.11645936965942383, 0.05162475258111954, -0.13625037670135498, 0.05904177576303482, -0.09898357093334198, 0.0924365222454071, -0.03754311427474022, 0.007722645998001099, -0.19190628826618195, -0.0021772757172584534, 0.23903442919254303, -0.07629220187664032, -0.07332214713096619, 0.28723812103271484, 0.0535142682492733, -0.011764287948608398, 0.052344854921102524, 0.07321900874376297, -0.062240082770586014, 0.013903321698307991, -0.16820688545703888, 0.015604561194777489, -0.030705058947205544, -0.1038236916065216, -0.09958744794130325, 0.12133800238370895, -0.1899855136871338, 0.19840943813323975, -0.03990929573774338, 0.04058993235230446, -0.05772516131401062, -0.10500828921794891, -0.08567988872528076, -0.013243123888969421, 0.1650146245956421, -0.2911107540130615, 0.16711704432964325, 0.18259181082248688, 0.1127648651599884, 0.22733403742313385, 0.06641526520252228, 0.12721461057662964, -0.002061201259493828, -0.02712221071124077, -0.14689958095550537, -0.06553961336612701, 0.0123599236831069, 0.005543553736060858, -0.006284557282924652, 0.15418103337287903]], "url": "http://i.imgur.com/jv08EFk.png"},
"162782": {"landmarks": [{"right_eyebrow": [[0.2817991402737903, -1.6109961867557185], [0.6109038223650697, -1.7306544166104236], [0.969921436007951, -1.730638807854509], [1.2990144115322941, -1.5810338274770535], [1.5084296462570392, -1.3117615121372754]], "nose_tip": [[-0.3764687567434485, -0.025363675885503034], [-0.22687938512190756, 0.004560962233034858], [-0.047370578300466905, 0.004568766610992197], [0.1321395292506333, -0.02534156348129057], [0.3116496368017335, -0.05525189357357334]], "nose_bridge": [[-0.017401715373504094, -1.1622371769987123], [-0.04733155641068021, -0.892975267496211], [-0.07726139744785633, -0.6237133579937095], [-0.07727310401479233, -0.3544501477615486]], "left_eye": [[-1.0944623606801052, -0.9827751964450159], [-0.9149470502103669, -1.1323580644182591], [-0.7055201089186861, -1.1323489593106422], [-0.4960983705456436, -1.0126673163220647], [-0.7055266125669839, -0.9827582869594417], [-0.9149548545883243, -0.9528492575968183]], "left_eyebrow": [[-1.4534669670263909, -1.2819721499033314], [-1.2739464536380145, -1.5512275557575352], [-0.9747586052873155, -1.7008052208121403], [-0.6157409916444342, -1.7007896120562256], [-0.3165648498606714, -1.5811040668786696]], "chin": [[-1.6928302530035457, -0.8631286731572465], [-1.6928510646780985, -0.3844385216334048], [-1.633035607412171, 0.09425423134975602], [-1.573220150146244, 0.5729469843329168], [-1.4236502894695964, 1.0516436395050563], [-1.2142415583931494, 1.4705066271960348], [-0.8851563872467634, 1.7996204143949313], [-0.49623104497091836, 2.038982399642426], [-0.017544795636055308, 2.1287576147276996], [0.46114925807676505, 2.039024022991532], [0.9398498154378832, 1.7996997589041641], [1.3287985708476, 1.500535323687337], [1.5980786905653355, 1.1116112821411517], [1.7476901745910889, 0.6329276342656079], [1.8075485559357813, 0.12432194973084514], [1.8674056365508145, -0.3543656003336774], [1.8973458834252672, -0.8629725855980996]], "bottom_lip": [[0.790308570813746, 0.6628041453867421], [0.5509478862959104, 1.021811353192347], [0.22184060274531178, 1.2013058519875324], [-0.04742520894616827, 1.2611304143610769], [-0.2867689839784296, 1.23120187405356], [-0.5859451257621924, 1.111516328876004], [-0.7953577590276181, 0.7824077445957461], [-0.6756839204169981, 0.7524948130441441], [-0.2568378422115939, 0.9320218300808186], [-0.04741090091991315, 0.9320309351884355], [0.22185361004190735, 0.9021245072851315], [0.6706360329327854, 0.6627989424681039]], "right_eye": [[0.4912000669722799, -1.0126243922432994], [0.6707166781716779, -1.1921253946867827], [0.8801436194633587, -1.1921162895791657], [1.0895640571067418, -1.0425165121203486], [0.9100539495556415, -1.0126061820280656], [0.7006270082639607, -1.0126152871356826]], "transform": {"angle": -4.347629562367276e-05, "scale": 33.42454390161314, "center": [125.58333333333333, 167.84722222222223]}, "top_lip": [[-0.7953577590276181, 0.7824077445957461], [-0.5859165097096821, 0.4533173705307218], [-0.25681182761840277, 0.3336591406760165], [-0.04738618705638158, 0.36358638025387346], [0.1919614901648584, 0.30376051715066976], [0.5210570671485208, 0.39352922858764516], [0.790308570813746, 0.6628041453867421], [0.6706360329327854, 0.6627989424681039], [0.19195368578690106, 0.48326932397211037], [-0.047392690704679365, 0.513177052605074], [-0.2568196319963601, 0.5131679474974571], [-0.6756839204169981, 0.7524948130441441]]}, {"right_eyebrow": [[0.4544054306681634, -1.6028751493093663], [0.648786764972751, -1.5933860809667015], [0.8431680992773386, -1.583897012624037], [1.0375494335819262, -1.5744079442813725], [1.222441699543849, -1.3705375416341203]], "nose_tip": [[-0.11220498600595438, 0.02564352142296665], [0.08217634829863318, 0.035132589765631224], [0.2765576826032208, 0.0446216581082958], [0.4709390169078083, 0.054110726450960364], [0.5681296840601021, 0.058855260622292654]], "nose_bridge": [[0.2363014255069144, -1.1264108818905618], [0.22681235716424983, -0.9320295475859744], [0.30976942180254674, -0.6357130119577606], [0.3927264864408437, -0.33939647632954706]], "left_eye": [[-1.027177247472905, -1.1880898261178816], [-0.8280513789969849, -1.2757914249275106], [-0.6336700446923973, -1.2663023565848461], [-0.4487777787304744, -1.0624319539375942], [-0.6431591130350618, -1.0719210222802587], [-0.8375404473396494, -1.0814100906229231]], "left_eyebrow": [[-1.4941524465490446, -1.6005751655837182], [-1.1930913767494986, -1.7807228973743088], [-0.896774841121285, -1.8636799620126059], [-0.5080121725121098, -1.8447018253272767], [-0.22592923939789306, -1.636086888508692]], "chin": [[-2.406824724290347, -0.8657506359073586], [-2.338101262166047, -0.2778620988222635], [-2.361823933022708, 0.2080912369392054], [-2.191165269574782, 0.7035336410433388], [-1.9185714048032299, 1.1065299121665109], [-1.446851671555758, 1.4218245844800537], [-0.9751319383082857, 1.7371192567935965], [-0.49866767088948144, 1.9552232619548455], [-0.01745886929934483, 2.076136599963801], [0.37604833348116257, 1.997924069496836], [0.5894078044710793, 1.6186504692303254], [0.8952134084419576, 1.341312070287441], [1.108572879431874, 0.9620384700209305], [1.3266768845931234, 0.4855742026021261], [1.3456550212784524, 0.09681153399295095], [1.369377692135114, -0.389141801768518], [1.2911651616681492, -0.7826490045490254]], "bottom_lip": [[0.6321086120130699, 0.7439344648596814], [0.42349367519448544, 1.0260173979738982], [0.3168139396995271, 1.2156541981071536], [0.12243260539493953, 1.2061651297644889], [0.029986472413978033, 1.1042299284408628], [-0.256840994871571, 0.9928056587745723], [-0.5341793938144556, 0.687000054803694], [-0.4369887266621617, 0.6917445889750262], [0.039475540756642606, 0.9098485941362753], [0.23385687506123018, 0.9193376624789399], [0.331047542213524, 0.9240821966502721], [0.5349179448607762, 0.7391899306883492]], "right_eye": [[0.5231288927924634, -1.0149866122242712], [0.6250640941160895, -1.1074327452052326], [0.8194454284206771, -1.097943676862568], [1.0043376943826001, -0.8940732742153161], [0.8099563600780125, -0.9035623425579807], [0.6155750257734249, -0.9130514109006452]], "transform": {"angle": -0.04877804450712642, "scale": 10.27681583336198, "center": [224.13888888888889, 176.68055555555554]}, "top_lip": [[-0.5341793938144556, 0.687000054803694], [-0.1406721910339481, 0.6087875243367293], [0.15564434459426554, 0.5258304596984325], [0.2528350117465593, 0.5305749938697648], [0.3500256788988531, 0.5353195280410971], [0.5396624790321084, 0.6419992635360554], [0.6321086120130699, 0.7439344648596814], [0.5349179448607762, 0.7391899306883492], [0.34528114472752086, 0.6325101951933908], [0.24809047757522704, 0.6277656610220586], [0.15089981042293324, 0.6230211268507262], [-0.4369887266621617, 0.6917445889750262]]}], "embedding": [[-0.013360470533370972, 0.12125741690397263, 0.09213714301586151, -0.11512938886880875, -0.10865704715251923, -0.005853946786373854, -0.017173275351524353, -0.14160394668579102, 0.1277373731136322, -0.04194789007306099, 0.13435468077659607, -0.13041028380393982, -0.38304418325424194, 0.04102439060807228, -0.06595121324062347, 0.1553770899772644, -0.18044164776802063, -0.2056303173303604, -0.17548857629299164, 0.010837225243449211, -0.007720522582530975, 0.05434459447860718, 0.1150713562965393, 0.022556688636541367, -0.10646305978298187, -0.33615681529045105, -0.051009371876716614, -0.06795922666788101, -0.060699351131916046, -0.11086736619472504, -0.09146841615438461, 0.1036176085472107, -0.21880997717380524, -0.05019976943731308, 0.03920929506421089, 0.07766548544168472, -0.06792038679122925, -0.20046964287757874, 0.19130249321460724, -0.01909967139363289, -0.20318451523780823, -0.016719626262784004, 0.1145181953907013, 0.18288180232048035, 0.2697784900665283, -0.01879115216434002, 0.007317149080336094, -0.10878894478082657, 0.05260191857814789, -0.36074063181877136, 0.08773045241832733, 0.15756157040596008, 0.04155181348323822, 0.17764413356781006, -0.020820602774620056, -0.22421371936798096, 0.01438236515969038, 0.16119176149368286, -0.1880447417497635, 0.04676380008459091, 0.10300062596797943, -0.10758161544799805, -0.0014124801382422447, -0.09363605082035065, 0.23444253206253052, 0.1362481713294983, -0.15420646965503693, -0.14123323559761047, 0.1171414852142334, -0.14864473044872284, -0.03217819705605507, 0.04527667909860611, -0.1524614542722702, -0.1717109978199005, -0.18758809566497803, 0.009196734987199306, 0.39169859886169434, 0.13286250829696655, -0.15898209810256958, -0.01847965642809868, -0.17797765135765076, -0.05031372979283333, -0.07352239638566971, 0.07612316310405731, 0.0009125247597694397, -0.03047860786318779, -0.10929762572050095, 0.06408761441707611, 0.2523754835128784, -0.09836747497320175, -0.04208803549408913, 0.2930484116077423, 0.002664230763912201, 0.003348724450916052, 0.02926691807806492, 0.07790223509073257, -0.09376340359449387, 0.03702528774738312, -0.16114631295204163, 0.04454949498176575, -0.08428913354873657, -0.09425410628318787, -0.06642758101224899, 0.10424639284610748, -0.09683721512556076, 0.13205355405807495, 0.0014574825763702393, -0.03112015686929226, -0.0023489203304052353, -0.1106448620557785, -0.02581791952252388, -0.10649487376213074, 0.1647273302078247, -0.2957426905632019, 0.16834703087806702, 0.18730992078781128, 0.1028822809457779, 0.16631892323493958, -0.009933959692716599, 0.13919641077518463, 0.08920221030712128, -0.005515027791261673, -0.17668375372886658, -0.050447963178157806, 0.11360054463148117, 0.07743428647518158, -0.0015945564955472946, 0.10944262146949768], [-0.04005005955696106, 0.10230173915624619, 0.02376498281955719, -0.004620414227247238, -0.10864377021789551, -0.002908519469201565, -0.01445210725069046, -0.044530294835567474, 0.11695235967636108, 0.005706222727894783, 0.1576400101184845, 0.007069004699587822, -0.21453864872455597, -0.051434386521577835, 0.003079410642385483, 0.04916221648454666, -0.0862300768494606, -0.08149063587188721, -0.15292559564113617, -0.10739679634571075, 0.01084127277135849, 0.051036495715379715, 0.02002860978245735, 0.010552339255809784, -0.10192473232746124, -0.26985058188438416, -0.06734295934438705, -0.061975810676813126, 0.09737148135900497, -0.1097864955663681, 0.005221450701355934, 0.030530031770467758, -0.16075536608695984, -0.07616600394248962, 0.05712123215198517, 0.038772132247686386, -0.02046843059360981, -0.06720036268234253, 0.16184291243553162, -0.04680652171373367, -0.153940349817276, -0.030557584017515182, 0.05391405522823334, 0.26939940452575684, 0.19033564627170563, 0.028464067727327347, -0.01253117062151432, -0.055072616785764694, 0.09090878069400787, -0.20782198011875153, 0.03956308588385582, 0.18794722855091095, 0.13008010387420654, 0.12348379194736481, 0.03787852078676224, -0.1278374046087265, 0.01956314407289028, 0.14636531472206116, -0.1439599096775055, 0.048419009894132614, 0.040854599326848984, -0.11435923725366592, -0.036378294229507446, -0.1409052312374115, 0.1666496992111206, 0.0683782696723938, -0.1143793910741806, -0.14770957827568054, 0.08532953262329102, -0.17487414181232452, -0.043634165078401566, 0.0650252252817154, -0.08850163221359253, -0.1587039828300476, -0.22909453511238098, 0.043049998581409454, 0.32718580961227417, 0.21320907771587372, -0.22406718134880066, -0.025772374123334885, -0.12628939747810364, 0.013026801869273186, 0.022246163338422775, 0.026041582226753235, -0.07505425065755844, -0.022294119000434875, -0.07977534830570221, 0.01595465838909149, 0.1977665275335312, -0.07033485174179077, -0.00010100938379764557, 0.1847418248653412, 0.006809208542108536, 0.007531275041401386, -0.011927800253033638, 0.03896067291498184, -0.11353382468223572, 0.03197116404771805, -0.0690574124455452, 0.02059340849518776, 0.06627657264471054, -0.14476044476032257, 0.07025778293609619, 0.08924227952957153, -0.18717175722122192, 0.19853349030017853, 0.024326078593730927, 0.018766194581985474, 0.0622597336769104, -0.0011093895882368088, -0.04953814297914505, -0.05058073624968529, 0.2097209244966507, -0.24926820397377014, 0.26221776008605957, 0.19330917298793793, 0.0027188193053007126, 0.1638074815273285, 0.03365860879421234, 0.1596020609140396, -0.03823556751012802, -0.033004775643348694, -0.08464714884757996, -0.09672606736421585, 0.0034165438264608383, -0.03918375447392464, 0.0035258359275758266, 0.02005510777235031]], "url": "http://i.imgur.com/cpR83Pz.png"},
"162783": {"landmarks": [{"nose_bridge": [[-0.00018374259505307038, -1.1639306018428708], [-0.028690118853514274, -0.9669986963566048], [-0.029108155385188277, -0.7418739420106334], [-0.05766678621010874, -0.5168014422311209]], "top_lip": [[-0.5946895332724575, 0.7485324642022436], [-0.36914674239481204, 0.5238257463879461], [-0.17195356407624982, 0.41162915118017507], [-0.00316225288323035, 0.44008327287217697], [0.10950463342267396, 0.3840111025515211], [0.33436811493634927, 0.5251321105494274], [0.5872154270438934, 0.7507271559935321], [0.47475755900382605, 0.6942369491412024], [0.1091388514574592, 0.5809952626042462], [-0.003475780281985853, 0.6089268386316558], [-0.17231934604146457, 0.6086133112329003], [-0.5102154958262589, 0.7205486336083751]], "transform": {"angle": -0.0018569084168903315, "center": [125.08333333333333, 169.36111111111111], "scale": 35.53579094760105}, "left_eye": [[-1.1542616360169131, -0.9972294733082214], [-0.9570162031318916, -1.1375666628092387], [-0.7318391942194609, -1.1652892205708112], [-0.47888737297899825, -0.9959753637131994], [-0.7322572307511348, -0.9401644662248397], [-0.9855225793903529, -0.940634757322973]], "nose_tip": [[-0.33980429307300275, -0.12335566779026307], [-0.199205830739689, -0.06681320637147391], [-0.03041451954666954, -0.038359084679471946], [0.13848130077926843, -0.06618615157396289], [0.3074293756716657, -0.1221538127617003]], "bottom_lip": [[0.5872154270438934, 0.7507271559935321], [0.33389782383821603, 0.7783974591886454], [0.1088253240587037, 0.7498388283637248], [-0.031877647407528555, 0.7495775555314286], [-0.17258061887376083, 0.7493162826991324], [-0.3696170334929453, 0.7770910950271641], [-0.5946895332724575, 0.7485324642022436], [-0.5102154958262589, 0.7205486336083751], [-0.17226709147500532, 0.5804727169396537], [-0.003475780281985853, 0.6089268386316558], [0.1091388514574592, 0.5809952626042462], [0.47475755900382605, 0.6942369491412024]], "right_eyebrow": [[0.2817970005684632, -1.4729545934039894], [0.5915525560600112, -1.5849421703459232], [0.9574325364386743, -1.6124034552751996], [1.3230512439850413, -1.4991617687382432], [1.5477579617993387, -1.273618977860598]], "chin": [[-1.942877585591784, -0.6328648753568765], [-1.943713658655132, -0.18261536666493325], [-1.9164613919916929, 0.2958269908867157], [-1.8610685310350072, 0.7743216030048239], [-1.7212538871985823, 1.2529729788223098], [-1.412334404770382, 1.591234910572319], [-0.9906957814698187, 1.8452840777084258], [-0.5125669513169252, 1.9868753768044654], [0.022052085688298074, 2.0160088078604375], [0.5568278863928992, 1.9607204560366704], [1.0636721110700909, 1.7928174724734582], [1.4862513165669207, 1.540335942331129], [1.7682843142968965, 1.203171356476764], [1.9098233588264768, 0.7531831206171169], [1.9669406204763176, 0.30303812105809225], [2.0241101366926175, -0.17524747279417893], [2.024998464322425, -0.6536375757793687]], "right_eye": [[0.5060856818510867, -1.0222870481803719], [0.7033833693025675, -1.190764831974636], [0.9565964633753263, -1.1621539465832562], [1.1814599448890017, -1.0210329385853498], [0.9843190211368988, -0.9369769376708255], [0.7311059270641399, -0.965587823062205]], "left_eyebrow": [[-1.5196190707309838, -1.2511741313114098], [-1.2940240252868789, -1.5040214434189536], [-0.9561278755020844, -1.6159567657944285], [-0.5622118099630934, -1.5870846075707525], [-0.22473369670997292, -1.4738951756002558]]}], "embedding": [[-0.2009931206703186, 0.0589432567358017, 0.0946306437253952, -0.025072675198316574, -0.19747819006443024, -0.09779828041791916, -0.004266463220119476, -0.1305481493473053, 0.06372261792421341, -0.0010797856375575066, 0.22056441009044647, -0.010975385084748268, -0.16815851628780365, -0.11062976717948914, 0.06511757522821426, 0.0823311135172844, -0.06135398894548416, -0.16458649933338165, -0.0942285805940628, 0.02992291748523712, 0.018820159137248993, 0.015988610684871674, -0.03528009355068207, 0.11590315401554108, -0.02907111868262291, -0.3393293023109436, -0.06285056471824646, -0.042961228638887405, 0.10897605121135712, -0.058474667370319366, -0.027825109660625458, 0.09645956009626389, -0.256829172372818, -0.09817785769701004, 0.06793083995580673, 0.13784970343112946, -0.046632904559373856, -0.05232656002044678, 0.16359512507915497, -0.10698838531970978, -0.21253040432929993, -0.02797454223036766, 0.04239889979362488, 0.2426733821630478, 0.13915462791919708, 0.06644892692565918, 0.04403688386082649, 0.015216866508126259, 0.1347326785326004, -0.2626483738422394, 0.11393621563911438, 0.13442310690879822, 0.10582421720027924, 0.03354819118976593, 0.032097745686769485, -0.22517947852611542, 0.050248317420482635, 0.15479318797588348, -0.24312946200370789, 0.18995903432369232, 0.0999072939157486, -0.25746938586235046, -0.05969323217868805, -0.09966645389795303, 0.23087461292743683, 0.16319066286087036, -0.061980076134204865, -0.17927397787570953, 0.14845484495162964, -0.1574065387248993, -0.030268043279647827, 0.08990567177534103, -0.11382688581943512, -0.1334998607635498, -0.26219668984413147, 0.03761349245905876, 0.35223352909088135, 0.1406152844429016, -0.24869324266910553, -0.015074528753757477, -0.05302925035357475, 0.07009261101484299, 0.07239878922700882, 0.01399177499115467, -0.021572092548012733, -0.06308144330978394, -0.21311356127262115, -0.0063667260110378265, 0.25970974564552307, 0.031926531344652176, 0.018141234293580055, 0.2496594488620758, 0.012227501720190048, -0.022544018924236298, 0.02625614032149315, 0.022605139762163162, -0.0405597947537899, -0.05791620537638664, -0.0688982754945755, 0.019614655524492264, 0.054554663598537445, -0.12023662030696869, 0.0056129340082407, 0.0861513614654541, -0.17304357886314392, 0.16014206409454346, -0.04549455642700195, 0.11584114283323288, -0.027124442160129547, -0.09274221956729889, -0.079022616147995, 0.0023821108043193817, 0.11532989144325256, -0.21443848311901093, 0.3779357969760895, 0.10932607203722, 0.04290586709976196, 0.15890948474407196, -0.0027270792052149773, 0.06145591288805008, -0.0048262556083500385, -0.10645854473114014, -0.11363832652568817, -0.11549504101276398, 0.10060480982065201, -0.08207173645496368, 0.0861019492149353, 0.0872679352760315]], "url": "http://i.imgur.com/Y1oc6oe.png"},
"162785": {"landmarks": [{"bottom_lip": [[0.7165780383359307, 0.546102667241256], [0.541898580618046, 0.9284766636581975], [0.3075841686328038, 1.0761936476776657], [0.07292715623533018, 1.135828601945023], [-0.1914331331584117, 1.1074957265976806], [-0.5149715762698692, 0.9619485451890116], [-0.8393094203432, 0.610876627692085], [-0.7512273905910896, 0.6105340272798535], [-0.1627576573988378, 0.931217466956049], [0.07224195541086731, 0.959664542440802], [0.3068989678083409, 0.9000295881734446], [0.6286102087212307, 0.5758059442375242]], "right_eye": [[0.5046580945526862, -1.0972958205029326], [0.709726030091302, -1.2155379278009535], [0.9152507661795597, -1.2163373287628267], [1.0625109496493856, -1.0994656231137319], [0.9158217668666121, -1.0695339458426427], [0.7395435072249806, -1.0982094216022165]], "transform": {"center": [122.66666666666667, 167.30555555555554], "scale": 34.05890299843478, "angle": 0.003889541209638048}, "chin": [[-2.049720768258518, -1.087360408548221], [-2.0475509656477184, -0.5295075534515213], [-2.0160204864528826, 0.02823110150776778], [-1.925768654089973, 0.585741356192236], [-1.7181883155283264, 1.1134341337430254], [-1.3347865178746907, 1.5523596807172415], [-0.9222524439118388, 1.9324496743859736], [-0.4512254170557344, 2.253589914611811], [0.048362885422533516, 2.36909121861198], [0.48808783335862305, 2.191214157046602], [0.8389313505807287, 1.8081549598051976], [1.1014644377759029, 1.3667170098079509], [1.3052761718030035, 0.9255074600855251], [1.4206632756657622, 0.39655848102322033], [1.477557426635268, -0.0734407445961898], [1.5050909010207372, -0.5433257700781894], [1.4739030222381326, -1.0129823952853683]], "left_eye": [[-1.0516861646760864, -1.149964566388251], [-0.8465040290000602, -1.2388459971022348], [-0.6409792929118024, -1.2396453980641082], [-0.4643584328579396, -1.122887892552424], [-0.6697689688087869, -1.0927278150065134], [-0.8754079050344551, -1.1212890906286772]], "right_eyebrow": [[0.4152056631516498, -1.4492813390991433], [0.7084698285797867, -1.5385053702253586], [1.0019623942827445, -1.5690080481835], [1.2371904073672702, -1.4818396195306736], [1.3849073913867382, -1.2475252075454313]], "nose_bridge": [[0.15210157526942322, -1.1546467720220805], [0.18283265350238578, -0.8024328531510494], [0.2135637317353484, -0.45021893428001786], [0.24429480996831096, -0.09800501540898647]], "nose_tip": [[-0.28362636785729944, 0.05085396998458629], [-0.0485125549101839, 0.10866172205337611], [0.1573547815903053, 0.19594435084361322], [0.3626511174037421, 0.13642359671366622], [0.5091118999116948, 0.04777056627450334]], "left_eyebrow": [[-1.4633066375396546, -1.2951691473846885], [-1.199974149382607, -1.5310823612936773], [-0.8772351072330228, -1.5910599159732663], [-0.5247927880871704, -1.563069641038155], [-0.17200786852908664, -1.4469973363509336]], "top_lip": [[-0.8393094203432, 0.610876627692085], [-0.48732390174698953, 0.5214241962910487], [-0.13499578273854768, 0.520053794642123], [0.1000038300711574, 0.548500870126876], [0.3347750426060415, 0.5182265924435553], [0.5402997786942992, 0.5174271914816819], [0.7165780383359307, 0.546102667241256], [0.6286102087212307, 0.5758059442375242], [0.3057569664342361, 0.6064228223330762], [0.07098575389935202, 0.636697100016397], [-0.16401385891035306, 0.6082500245316439], [-0.7512273905910896, 0.6105340272798535]]}], "embedding": [[-0.03827958554029465, 0.19518589973449707, 0.04036938399076462, -0.021003417670726776, -0.1810133159160614, 0.05745488405227661, -0.009484760463237762, -0.21156638860702515, 0.11206642538309097, -0.07196654379367828, 0.16848216950893402, -0.1220981627702713, -0.2558791935443878, -0.10061658918857574, 0.014503072947263718, 0.11577162891626358, -0.20434273779392242, -0.14217522740364075, -0.20969374477863312, -0.04216573387384415, -0.08255552500486374, 0.04314335435628891, 0.05462096631526947, 0.04819401726126671, -0.09962543845176697, -0.3886938989162445, -0.03199365735054016, -0.13611316680908203, 0.09002432227134705, -0.18995481729507446, -0.08094867318868637, -0.029563162475824356, -0.18432171642780304, -0.09577664732933044, -0.012889891862869263, -0.0005162169691175222, -0.06142394244670868, -0.13198456168174744, 0.17863141000270844, -0.11819340288639069, -0.1279517263174057, 0.0707155391573906, 0.0484723225235939, 0.2349049150943756, 0.2488361895084381, -0.023010969161987305, 0.025967421010136604, -0.04414106532931328, 0.17120814323425293, -0.3136935234069824, 0.039995357394218445, 0.05930193141102791, 0.0870843306183815, 0.05769805982708931, 0.11389455199241638, -0.16311907768249512, -0.03812867030501366, 0.12520988285541534, -0.15874047577381134, 0.16862528026103973, 0.10324056446552277, -0.09395419806241989, -0.06017954275012016, -0.037356290966272354, 0.2226085066795349, 0.0998290479183197, -0.11234669387340546, -0.10362774133682251, 0.09719675034284592, -0.19129212200641632, -0.017416175454854965, 0.0037379649002104998, -0.03731480613350868, -0.14367902278900146, -0.29470518231391907, 0.007786710746586323, 0.4353327453136444, 0.17149226367473602, -0.347267746925354, -0.11968688666820526, -0.06748111546039581, 0.03327452018857002, 0.09866999089717865, 0.04824891686439514, -0.06135708838701248, -0.10214386135339737, -0.17619012296199799, 0.05434830114245415, 0.2355351448059082, -0.015259219333529472, -0.05472720041871071, 0.29000622034072876, 0.051012180745601654, -0.00763246975839138, 0.057333990931510925, 0.06839212030172348, -0.1147448718547821, -0.07472559809684753, -0.09614257514476776, 0.10003659874200821, 0.08473022282123566, -0.11230922490358353, -0.06944592297077179, 0.11410478502511978, -0.11188732832670212, 0.2426043152809143, -0.024885103106498718, 0.009838981553912163, -0.004906312562525272, -0.07929760217666626, -0.06604994833469391, 0.047126829624176025, 0.22720927000045776, -0.2932412028312683, 0.20647192001342773, 0.1704026311635971, -0.005523640662431717, 0.16087795794010162, -0.05950181931257248, 0.031458962708711624, 0.007200917229056358, 0.03388877958059311, -0.13230015337467194, -0.1897607147693634, 0.025714103132486343, -0.08547510206699371, 0.03546445071697235, 0.06466302275657654]], "url": "http://i.imgur.com/WydWoJm.png"},
"162787": {"url": "http://i.imgur.com/fXv42AC.png", "embedding": [[-0.11461932957172394, 0.02050754427909851, 0.09015712887048721, -0.0812072828412056, -0.10789483785629272, -0.06766325235366821, -0.0609433613717556, -0.06207137182354927, 0.16162943840026855, -0.0846686139702797, 0.11543227732181549, -0.04478546604514122, -0.3069431483745575, -0.04089518263936043, -0.061868831515312195, 0.21896621584892273, -0.2044420689344406, -0.19254234433174133, -0.0449574775993824, -0.0988755077123642, 0.0884055346250534, 0.09883251786231995, 0.0755612701177597, 0.09013490378856659, -0.10456229001283646, -0.3154844045639038, -0.06767720729112625, -0.07871113717556, -0.026293691247701645, -0.12781722843647003, 0.06723719835281372, 0.16198857128620148, -0.11944454163312912, -0.02635125070810318, 0.06593987345695496, 0.14074331521987915, 0.05024392530322075, -0.16831032931804657, 0.19460226595401764, 0.014497887343168259, -0.2962130010128021, -0.15962181985378265, 0.17644430696964264, 0.3007490932941437, 0.22743861377239227, 0.012159623205661774, -0.005191242787986994, 0.002704109763726592, 0.11750936508178711, -0.32980877161026, -0.03638482466340065, 0.11975112557411194, 0.05622001737356186, 0.10388471186161041, 0.08899029344320297, -0.2670970559120178, 0.08977613598108292, 0.10821891576051712, -0.1730240434408188, 0.05415603518486023, 0.007115453481674194, -0.21395888924598694, 0.13484500348567963, 0.00394800677895546, 0.2548658549785614, 0.06124165654182434, -0.07627607882022858, -0.15359586477279663, 0.23945148289203644, -0.19357329607009888, -0.0608212985098362, 0.1869276762008667, -0.16115689277648926, -0.15125595033168793, -0.26707154512405396, -0.137266144156456, 0.3606424927711487, 0.1153675839304924, -0.11514894664287567, 0.034757278859615326, -0.06072108447551727, 0.03746647387742996, 0.06888025254011154, 0.1862972527742386, 0.06587590277194977, 0.010680079460144043, -0.15647496283054352, -0.053979866206645966, 0.2953495979309082, -0.06942276656627655, -0.07456253468990326, 0.25849223136901855, 0.04742371290922165, -0.008464671671390533, 0.07388386130332947, 0.0528564415872097, -0.04809920862317085, 0.034615740180015564, -0.16871073842048645, 0.0027601048350334167, -0.07013022154569626, -0.07784541696310043, 0.013409262523055077, 0.07652446627616882, -0.11839503794908524, 0.02202722057700157, 0.022725505754351616, -0.010854898020625114, -0.11045291274785995, 0.01765543222427368, -0.07669626176357269, -0.06747302412986755, 0.16971389949321747, -0.2739766538143158, 0.20162008702754974, 0.26960036158561707, 0.024002783000469208, 0.17996792495250702, -0.01571613922715187, 0.14982900023460388, 0.017620302736759186, -0.14518316090106964, -0.0307295061647892, -0.05619695037603378, 0.0008050408214330673, -0.004073729272931814, 0.0009069904335774481, 0.06639783829450607]], "landmarks": [{"top_lip": [[-0.8327188969504875, 0.6921992300247352], [-0.4653260984823341, 0.5987270606099597], [-0.15897437782188423, 0.5668054497237466], [0.025040446862729118, 0.596689137726525], [0.23944844027097958, 0.5651496373809558], [0.48475908312372584, 0.5947785850233049], [0.7608450052407533, 0.6549280715695057], [0.6383807390847022, 0.6860854613744309], [0.24034003153248226, 0.779685000969421], [0.02580466794401714, 0.7805765922309237], [-0.18873069564444803, 0.7814681834924264], [-0.6793519813499406, 0.7222102882077281]], "transform": {"center": [124.26388888888889, 164.52777777777777], "angle": 0.0041558935252378705, "scale": 32.62837153242596}, "bottom_lip": [[0.7608450052407533, 0.6549280715695057], [0.48616015510608723, 0.9319055849480359], [0.24161373333462896, 1.0861640918100854], [0.02720573992637851, 1.1177035921556548], [-0.18745699384230133, 1.087947274333091], [-0.4943181952236098, 0.9972772488830383], [-0.8327188969504875, 0.6921992300247352], [-0.6793519813499406, 0.7222102882077281], [-0.18860332546423336, 0.8121160925764929], [0.02593203812423181, 0.8112245013149901], [0.24034003153248226, 0.779685000969421], [0.6383807390847022, 0.6860854613744309]], "right_eye": [[0.5398137624613399, -0.9072237004563806], [0.7534575347883024, -1.1226506553063482], [1.0598092554487524, -1.1545722661925615], [1.274854099758076, -1.0328722211177983], [1.0916034961547507, -0.878868454616178], [0.8157723143981527, -0.877722122994246]], "nose_bridge": [[0.04893773639541805, -1.0277774139092115], [0.05046617855799409, -0.6600025049004142], [0.05186725054035546, -0.3228755049756831], [0.08391623160678328, 0.0141241247688331]], "chin": [[-2.0356295620419593, -1.1417078779908798], [-2.002943730074458, -0.6514687028260313], [-1.9396099890228902, -0.16135689784139737], [-1.8456283388872565, 0.3286275369630218], [-1.6598303316796374, 0.7875819521427305], [-1.3209201492319014, 1.2152516073372994], [-0.9516167980605279, 1.5814980741835207], [-0.49062445999738435, 1.8860666123209653], [-3.1742918918456486e-06, 1.9453245076056633], [0.4593333514284609, 1.851470227650244], [0.8872577469834592, 1.5738558633706405], [1.2535042138296804, 1.204552512199267], [1.5276795832434877, 0.8049833624844713], [1.7096564850446665, 0.3445005051421865], [1.7995622894134309, -0.14624815074352068], [1.858947554878344, -0.6062215273649468], [1.8875575410789758, -1.0967154428902246]], "left_eyebrow": [[-1.638480445751242, -1.449842781174335], [-1.3631587447155027, -1.5735807491325329], [-1.0261591149709863, -1.6056297301989606], [-0.7192979135896779, -1.5149597047489078], [-0.4123093420281547, -1.393641770214789]], "right_eyebrow": [[0.476225281049343, -1.4586313236091473], [0.7515469820850823, -1.582369291567345], [1.0577713325653175, -1.6449388115376244], [1.3642504234059818, -1.6462125133397711], [1.640463715703224, -1.5554151177095041]], "nose_tip": [[-0.28322182650094074, 0.1688921123517414], [-0.12972754072017917, 0.22955107961880095], [0.05441465414464886, 0.29008267670564586], [0.20739945920455174, 0.22815000763643956], [0.36038426426445463, 0.1662173385672333]], "left_eye": [[-1.2687949840392247, -0.9916525870759142], [-1.0241211920875515, -1.1152631848538974], [-0.7482900103309537, -1.1164095164758294], [-0.5022151463969193, -0.9028931143290817], [-0.7777915877930882, -0.8404509645390168], [-1.053622769549686, -0.8393046329170848]]}]},
"162790": {"url": "http://i.imgur.com/ecu9azy.png", "landmarks": [{"chin": [[-2.018520848886125, -0.8397227650035312], [-1.9905668346896408, -0.36051338972210395], [-1.872660068725703, 0.08912606892785903], [-1.7848204201424536, 0.5685840445838983], [-1.636970836985133, 1.0183478034211675], [-1.3390342672989812, 1.37890461161482], [-0.9210778284646869, 1.6800729861709318], [-0.44286285468170905, 1.891661509521508], [0.035849319850493444, 1.983478764098554], [0.5151829953192267, 1.9255819327086874], [0.9352525373377257, 1.7177224149772956], [1.295809345531378, 1.4197858452911438], [1.5369677855134183, 1.0315236232756195], [1.6885463742899234, 0.583002866311412], [1.7803636288669695, 0.10429069177920951], [1.8720565832567095, -0.34447866555961043], [1.9041125036342965, -0.8533822576598078]], "right_eye": [[0.5570586304939998, -0.9488042176687322], [0.7672798517842084, -1.0976482023245022], [1.006822389331269, -1.096653800826053], [1.1858577915550337, -0.946193913735303], [1.005952288020126, -0.8870540804723749], [0.7964768678537542, -0.9178669989769005]], "nose_bridge": [[0.018709421949644495, -1.1007557070071559], [0.01746642007658298, -0.8013275350733302], [0.04616623539690402, -0.5017750629521985], [0.04479893333653635, -0.17240407382499032]], "left_eyebrow": [[-1.627026822000641, -1.3770775720494373], [-1.3864898829551313, -1.6156257080980483], [-1.026927476259928, -1.67401974023714], [-0.6677379701266437, -1.6425853207960834], [-0.3689312991293488, -1.491628232956109]], "top_lip": [[-0.8565930871475942, 0.572437350390389], [-0.5267248972711616, 0.45403338367722657], [-0.22704812496272359, 0.39539075116352296], [0.012245812209724616, 0.4562707870487373], [0.2519126499440913, 0.42732237135380396], [0.581035038696687, 0.4885753078009367], [0.879841709693982, 0.639532395640911], [0.7900132581138344, 0.6391594950789926], [0.25129114900756055, 0.5770364573207166], [0.01174861146050001, 0.5760420558222674], [-0.2277939260865605, 0.5750476543238182], [-0.7668889357547526, 0.6027530681456902]], "left_eye": [[-1.2094432837282652, -0.9860807459131778], [-0.9992220624380564, -1.1349247305689476], [-0.759803825078302, -1.1039875118771159], [-0.5210070886550786, -0.9233362072183712], [-0.7606739263894451, -0.8943877915234378], [-1.0002164639365057, -0.895382193021887]], "transform": {"angle": -0.004151228406244792, "center": [124.52777777777777, 166.76388888888889], "scale": 33.396703363126896}, "bottom_lip": [[0.879841709693982, 0.639532395640911], [0.5791705358870948, 0.9377175657016752], [0.2791208630167385, 1.0861886497955264], [0.009635508276295435, 1.0850699481097712], [-0.25972554627684147, 1.054008429230633], [-0.5585322172741363, 0.9030513413906588], [-0.8565930871475942, 0.572437350390389], [-0.7668889357547526, 0.6027530681456902], [-0.22891262777231586, 0.8445330090642613], [0.010505609587438496, 0.8754702277560931], [0.25017244732180516, 0.8465218120611597], [0.7900132581138344, 0.6391594950789926]], "right_eyebrow": [[0.34982061369913875, -1.518587845654144], [0.6497459863821891, -1.6371161125546128], [1.009184092890086, -1.6655673275003215], [1.3380578812680695, -1.5444287566664234], [1.576854617691293, -1.363777452007679]], "nose_tip": [[-0.37514630849465636, 0.005512626713018913], [-0.1659194887028969, 0.09621117960430967], [0.01336451389547998, 0.18678543230829422], [0.2232128346237702, 0.1277698992326722], [0.403242638345984, 0.038687248776361406]]}], "embedding": [[-0.14196203649044037, 0.16407494246959686, 0.05634155869483948, -0.18328681588172913, -0.12962676584720612, -0.06623239815235138, -0.06914295256137848, -0.14537283778190613, 0.19821886718273163, -0.10765864700078964, 0.11505036056041718, -0.09699610620737076, -0.2349621206521988, -0.030423693358898163, -0.048876237124204636, 0.22249644994735718, -0.1961265653371811, -0.2698648273944855, -0.1426330953836441, -0.12168633192777634, -0.010590370744466782, 0.08559230715036392, -0.08213507384061813, 0.08711133897304535, -0.1260160207748413, -0.250262975692749, 0.007198097184300423, -0.0880919098854065, 0.077120840549469, -0.07616856694221497, 0.004244457930326462, 0.09038808941841125, -0.21106606721878052, 0.009832650423049927, 0.1238940879702568, 0.13370560109615326, -0.030666034668684006, -0.16470792889595032, 0.22125527262687683, 0.017440909519791603, -0.21225596964359283, -0.01769435778260231, 0.06943076848983765, 0.23545604944229126, 0.19986596703529358, -0.035665348172187805, 0.030073262751102448, -0.10367617011070251, 0.2166031002998352, -0.30530092120170593, 0.0026142222341150045, 0.18349289894104004, 0.03535426780581474, 0.10853451490402222, 0.12372458726167679, -0.30033132433891296, 0.05064082518219948, 0.09985858201980591, -0.2071683704853058, 0.036873236298561096, 0.04501716047525406, -0.2042141556739807, -0.09504294395446777, -0.146479532122612, 0.1839562952518463, 0.11066575348377228, -0.08652003109455109, -0.20839782059192657, 0.25061705708503723, -0.15867216885089874, -0.04286734387278557, 0.11663398891687393, -0.07630433887243271, -0.07856090366840363, -0.24078094959259033, -0.036417774856090546, 0.3170931935310364, 0.20744960010051727, -0.1913541853427887, 0.05354543775320053, 0.012707152403891087, -0.005740270018577576, -0.030381377786397934, 0.12260117381811142, -0.05919511616230011, 0.010364778339862823, -0.0672173872590065, 0.009350746870040894, 0.24804262816905975, -0.015400100499391556, 0.03018753044307232, 0.23033949732780457, 0.007226467132568359, -0.008088380098342896, -0.03853944316506386, -0.04278973117470741, -0.14432433247566223, -0.08221220970153809, -0.05944870784878731, -0.0506637766957283, 0.02342342957854271, -0.02304830029606819, -0.009964633733034134, 0.153133824467659, -0.17760038375854492, 0.15764681994915009, -0.06437227874994278, -0.03339434415102005, -0.167910635471344, -0.037227921187877655, 0.07210545986890793, 0.03815259784460068, 0.144327774643898, -0.19101855158805847, 0.24854697287082672, 0.18420729041099548, 0.05115845054388046, 0.13878926634788513, 0.0032275947742164135, 0.009673402644693851, 0.023512136191129684, -0.04402114450931549, -0.13262249529361725, -0.16436830163002014, 0.012541767209768295, -0.03981143981218338, 0.01286581251770258, 0.06360076367855072]]},
"162791": {"embedding": [[0.011255179531872272, 0.12437889724969864, 0.026913901790976524, -0.06260305643081665, -0.1876876950263977, 0.03541434183716774, 0.012713378295302391, -0.03780548274517059, 0.1071871668100357, 0.03728706017136574, 0.1839374303817749, -0.06211615726351738, -0.338370144367218, 0.01841760240495205, 0.04583337903022766, 0.09547968953847885, -0.037583351135253906, -0.14482481777668, -0.13973937928676605, -0.11076976358890533, 0.018537335097789764, -0.008592162281274796, -0.0559757724404335, 0.07675747573375702, -0.2597717046737671, -0.20748893916606903, 0.0064973048865795135, -0.07333335280418396, 0.0817108303308487, -0.2163865715265274, 0.014607585966587067, 0.1394529938697815, -0.16621655225753784, -0.07147308439016342, 0.03655858337879181, 0.07036591321229935, -0.015592947602272034, -0.12515123188495636, 0.23903918266296387, 0.07668302953243256, -0.14476507902145386, 0.08827760815620422, -0.03585847467184067, 0.31565168499946594, 0.22111889719963074, -0.03588594123721123, 0.11429880559444427, -0.05765877664089203, 0.10004894435405731, -0.28549206256866455, 0.0480891652405262, 0.16452434659004211, 0.1281660944223404, 0.02744041010737419, 0.056078020483255386, -0.18064013123512268, -0.059788674116134644, 0.1583883911371231, -0.25851112604141235, 0.11800320446491241, 0.10309232026338577, -0.0395180806517601, -0.05634481459856033, -0.21760718524456024, 0.1737077832221985, 0.0386260449886322, -0.1386377364397049, -0.06874830275774002, 0.16598129272460938, -0.11238257586956024, -0.07013486325740814, 0.07291680574417114, -0.14724691212177277, -0.14522413909435272, -0.2600960433483124, 0.1346781849861145, 0.34339380264282227, 0.1930702179670334, -0.27968358993530273, -0.02743944525718689, -0.044832319021224976, 0.020180243998765945, 0.012183675542473793, -0.0030765365809202194, -0.008062746375799179, -0.13066306710243225, -0.01734383963048458, 0.07361983507871628, 0.2261863797903061, -0.03884012624621391, -0.00815608724951744, 0.19130274653434753, 0.04305150732398033, -0.06305607408285141, -0.024015258997678757, 0.031030043959617615, -0.13489758968353271, -0.027602752670645714, -0.0687820166349411, 0.028373001143336296, -0.01108468696475029, -0.11821995675563812, 0.061135321855545044, 0.14817063510417938, -0.1607334166765213, 0.16047823429107666, -0.021698420867323875, -0.06395073980093002, -0.044019587337970734, 0.016330379992723465, -0.12672914564609528, -0.025446850806474686, 0.2294931858778, -0.3118903636932373, 0.18459127843379974, 0.20177535712718964, -0.009511105716228485, 0.0183537807315588, 0.0363544337451458, 0.07943166047334671, 0.05850239098072052, 0.06193096935749054, -0.1074659526348114, -0.12357830256223679, 0.07263684272766113, -0.06279321014881134, 0.010419835336506367, 0.02051207236945629]], "url": "http://i.imgur.com/5uQ2wWr.png", "landmarks": [{"top_lip": [[-0.6584037830610426, 0.7639341298259602], [-0.38838511640206863, 0.6112934135626846], [-0.14782260296972957, 0.5492544695335226], [0.03315761024307681, 0.5780406289938952], [0.2134678296896207, 0.5164483474755749], [0.45492366814364316, 0.5749139914180035], [0.6669233533710305, 0.7239814075945457], [0.5165159496619635, 0.7552242108645474], [0.21436115471130407, 0.6369529354471654], [0.0336042727539185, 0.6382929229796904], [-0.14715260920346704, 0.6396329105122155], [-0.5077730480965548, 0.762817473548856]], "bottom_lip": [[0.6669233533710305, 0.7239814075945457], [0.45782697446411413, 0.9665539023256722], [0.24806060179093514, 1.118747956078106], [0.037177572840652005, 1.120311274866052], [-0.17370545610963115, 1.1218745936539978], [-0.38548181008159765, 1.0029333244703535], [-0.6584037830610426, 0.7639341298259602], [-0.5077730480965548, 0.762817473548856], [-0.14536595916010028, 0.8806420864553962], [0.03539092279728525, 0.8793020989228711], [0.24605062049214754, 0.8476126331420276], [0.5165159496619635, 0.7552242108645474]], "chin": [[-1.937101832087992, -1.03425477702022], [-1.9029557224975193, -0.49220746240348395], [-1.83890679716957, 0.01949037396493339], [-1.7447317248487229, 0.5309648790779298], [-1.5903043585420806, 1.0419927216800848], [-1.3162657292855313, 1.4316226512889658], [-0.9219458433128123, 1.7902331088832661], [-0.46782032586514005, 2.088144609980929], [0.014644688532063119, 2.144823603879991], [0.4658668996592645, 2.0510951940699855], [0.8550501667573038, 1.716804270827641], [1.1837578086141274, 1.3528338631032406], [1.4519898252297345, 0.9591839708967843], [1.5689211131145913, 0.47627229398873944], [1.6557262540065507, -0.006416051663884537], [1.74253139489851, -0.4891043973165085], [1.7992103887975714, -0.9715694117137116]], "right_eye": [[0.4426404490954967, -1.082024093191364], [0.622280674775778, -1.2339948156883769], [0.8635131819743795, -1.2056553187388463], [1.075289535946346, -1.086714049555202], [0.8949793164998022, -1.0251217680368816], [0.6539701405566215, -1.0233351179935148]], "left_eye": [[-1.0942397100531223, -1.1308864931506963], [-0.9143761531174199, -1.2527310686548117], [-0.6733669771742392, -1.2545177186981784], [-0.4613672919468519, -1.1054503025216362], [-0.6718036583862933, -1.0436346897478954], [-0.912812834329474, -1.0418480397045287]], "left_eyebrow": [[-1.5177924179970552, -1.368769031517985], [-1.308696039090139, -1.6113415262491118], [-0.9782017471899487, -1.7343027580303314], [-0.6164646520197569, -1.7068565861024838], [-0.28418371007619986, -1.588808641940523]], "nose_bridge": [[0.05033054442156544, -1.169499227849586], [0.05278718823119473, -0.8381116109277125], [0.05524383204082402, -0.5067239940058389], [0.057923807105874144, -0.14521023009106776]], "nose_tip": [[-0.30202663802095103, 0.06835277392426552], [-0.1509492405456214, 0.1274884116329565], [0.030254303922605835, 0.1864007180862266], [0.21056452336914971, 0.12480843656790636], [0.3605252645673751, 0.03331333931210936]], "transform": {"center": [124.04166666666667, 166.80555555555554], "scale": 33.19284485918131, "angle": 0.007413067608960378}, "right_eyebrow": [[0.3489120392854912, -1.5332463043185656], [0.6794063311856814, -1.656207536099785], [1.0107939481075547, -1.6586641799094144], [1.3430748900511116, -1.5406162357474533], [1.4954922750589665, -1.3007237160813767]]}]},
"162793": {"landmarks": [{"left_eye": [[-1.2117400702821115, -1.112274078515964], [-0.9927117572183412, -1.2364754862772542], [-0.7429682621105507, -1.2044196246480243], [-0.5560989398748724, -1.0476467092631925], [-0.8060486933803874, -1.0172409148157593], [-1.0246644896487087, -1.0179628192077952]], "transform": {"angle": -0.0033021482456015625, "center": [125.91666666666667, 164.48611111111111], "scale": 32.019469566611505}, "right_eyebrow": [[0.3506263652253671, -1.3569642428795023], [0.6945779904424639, -1.4807531338453437], [1.0072987876212292, -1.6046451540100473], [1.3821718532800709, -1.6346384316620315], [1.662733659630744, -1.4775561286806127]], "chin": [[-1.7422516301382995, -1.238950587049949], [-1.6815431704422956, -0.7078202520005873], [-1.6207315815474288, -0.2079207449895569], [-1.5598168634536997, 0.26074793398314183], [-1.4052096612449763, 0.7297260005524274], [-1.125576017684064, 1.1678857558788305], [-0.814505287687095, 1.5436869843274326], [-0.47220372965179486, 1.9195913419748971], [-0.035384653910601443, 2.0459584629122958], [0.43328402506209723, 1.9850437448185667], [0.8716500387862248, 1.642948445180991], [1.2789914828697455, 1.2382883602678898], [1.5927435720371337, 0.8020880597198702], [1.7817786074489197, 0.3030135862997381], [1.877327417143436, -0.25883193079364397], [1.9416453987996203, -0.8207805770858883], [1.9746294232186108, -1.3516015245386634]], "bottom_lip": [[0.6244847736499916, 0.8301218825934709], [0.37401937415016495, 1.0166818172325622], [0.1238633622469252, 1.1095492677566585], [-0.06352160598306446, 1.1089304925634849], [-0.2509065742130541, 1.1083117173703112], [-0.43787902564759457, 0.9827696300238111], [-0.6558760467227421, 0.7946627574017855], [-0.531055863768278, 0.8263061022355662], [-0.21874758338496192, 0.8273373942241891], [-0.06269657239216615, 0.859083868256832], [0.0934575677994919, 0.8595995142511434], [0.4995614614966652, 0.8297093657980217]], "right_eye": [[0.5369800414667338, -1.0440371873030125], [0.756214612928229, -1.2307002511409662], [1.0060612372348818, -1.229875217550068], [1.1931368178682844, -1.1355639582418993], [1.0365701608811773, -1.0111562920828843], [0.7867235365745244, -1.0119813256737826]], "left_eyebrow": [[-1.6167095427917997, -1.4259230384844896], [-1.366244143291973, -1.612482973123581], [-1.0541421213063815, -1.5489900250582949], [-0.7108092712824584, -1.4853939477941465], [-0.39891350769459144, -1.3594393436521972]], "top_lip": [[-0.6558760467227421, 0.7946627574017855], [-0.40582316401836466, 0.7330261349160206], [-0.18700110935231887, 0.6712863832313933], [-0.031053227558385396, 0.7342636853023681], [0.12530717103099723, 0.6723176752200162], [0.37494753693992555, 0.7356043648875777], [0.6244847736499916, 0.8301218825934709], [0.4995614614966652, 0.8297093657980217], [0.12479152503668578, 0.8284718154116743], [-0.03146574435383454, 0.8591869974556944], [-0.18751675534663031, 0.8274405234230514], [-0.531055863768278, 0.8263061022355662]], "nose_bridge": [[-0.05640569126156666, -1.045996642081396], [-0.057436983250189526, -0.7336883616980799], [-0.05857140443767468, -0.3901492532764322], [-0.05970582562515984, -0.046610144854784506]], "nose_tip": [[-0.3726328812016496, 0.13974353138658224], [-0.21668499940771618, 0.20272083345755693], [-0.06063398841492042, 0.23446730749019995], [0.12685410901393152, 0.2038552546450421], [0.31434220644278343, 0.1732432017998842]]}], "embedding": [[-0.1661462038755417, 0.15906739234924316, 0.016029592603445053, -0.04662202298641205, -0.24959389865398407, 0.06968578696250916, -0.011078894138336182, -0.08691819757223129, 0.1209937185049057, -0.017011146992444992, 0.21145667135715485, 0.029108399525284767, -0.288409948348999, -0.1798366904258728, 0.04002317786216736, 0.12972164154052734, -0.125962495803833, -0.16668260097503662, -0.08710760623216629, -0.014021223410964012, 0.07431671768426895, 0.062387462705373764, 0.04336654022336006, 0.13486745953559875, -0.13867706060409546, -0.27447250485420227, -0.0008324645459651947, -0.08541148900985718, -0.019508622586727142, -0.25226232409477234, -0.039880361407995224, 0.039665788412094116, -0.17975462973117828, -0.07692340016365051, 0.012636564671993256, 0.21456106007099152, -0.07677171379327774, -0.09645635634660721, 0.22466088831424713, 0.021598171442747116, -0.1798224002122879, -0.05318061634898186, 0.011931009590625763, 0.3036050796508789, 0.19687215983867645, -0.0869426429271698, 0.002715204143896699, -0.017597313970327377, 0.20189045369625092, -0.3017323911190033, 0.07248153537511826, 0.1609739512205124, 0.1438249945640564, 0.08049242943525314, 0.030072949826717377, -0.1312095671892166, 0.022041793912649155, 0.19113236665725708, -0.2905402183532715, 0.01575547829270363, 0.0813274085521698, -0.1935223788022995, -0.04658973589539528, -0.11544568836688995, 0.19709643721580505, 0.12666021287441254, -0.10135461390018463, -0.19115057587623596, 0.03657917678356171, -0.1507825404405594, -0.11096327751874924, 0.1483926773071289, -0.10953187942504883, -0.1642058789730072, -0.3049338459968567, 0.10233480483293533, 0.35618889331817627, 0.16583481431007385, -0.17171379923820496, -0.047670088708400726, -0.07169055938720703, -0.05111408978700638, -0.04478928819298744, 0.041209809482097626, -0.04879099875688553, 0.054286807775497437, -0.13549840450286865, 0.11386340856552124, 0.1504008024930954, -0.027762804180383682, 0.022595904767513275, 0.301382452249527, 0.09283196926116943, 0.032343871891498566, 0.08751767873764038, 0.039440810680389404, -0.01801309920847416, 0.029506182298064232, -0.06080228090286255, 0.08194176107645035, -0.004604101646691561, -0.2053721845149994, 0.09541759639978409, -0.0075673311948776245, -0.16639186441898346, 0.11994420737028122, -0.021294210106134415, 0.00769612193107605, -0.07931475341320038, -0.15973442792892456, -0.20670616626739502, -0.007883593440055847, 0.19032014906406403, -0.3777976930141449, 0.2143944650888443, 0.14343872666358948, 0.042721331119537354, 0.15342730283737183, 0.05942466855049133, 0.09111929684877396, -0.017642822116613388, -0.09799577295780182, -0.03693610429763794, -0.024218006059527397, 0.15328681468963623, -0.02781124785542488, 0.07577057182788849, 0.041392069309949875]], "url": "http://i.imgur.com/XTqkuGA.png"},
"162794": {"url": "http://i.imgur.com/Z1iHdm4.png", "embedding": [[-0.19845831394195557, 0.09431315958499908, -0.001186281442642212, -0.07650358974933624, -0.06768621504306793, 0.03600575029850006, -0.06818261742591858, -0.10676224529743195, 0.2623783349990845, -0.1650991439819336, 0.22352755069732666, -0.0215131938457489, -0.2531837821006775, -0.0924801230430603, 0.0030055157840251923, 0.1502300202846527, -0.15886399149894714, -0.20891188085079193, -0.045945003628730774, -0.0097337756305933, 0.028183389455080032, -0.09919211268424988, 0.04422531649470329, 0.11630821228027344, -0.14325955510139465, -0.41146841645240784, -0.08544338494539261, -0.09906889498233795, -0.05353371798992157, -0.15320536494255066, -0.03851528838276863, 0.021162137389183044, -0.3103792071342468, 0.00979413092136383, -0.04197689890861511, 0.17082169651985168, 0.015866491943597794, -0.08245563507080078, 0.12768864631652832, -0.02532835491001606, -0.22670085728168488, -0.10141200572252274, -0.013281099498271942, 0.1688799411058426, 0.2017492949962616, -0.058726925402879715, -0.024015072733163834, -0.07956703007221222, 0.13142673671245575, -0.228382870554924, 0.048630405217409134, 0.19030019640922546, 0.04255152493715286, -0.006517712026834488, 0.1096990630030632, -0.13829223811626434, 0.01904088631272316, 0.12742014229297638, -0.12282721698284149, -0.029242906719446182, -0.021407635882496834, -0.03196127712726593, -0.09319119155406952, -0.06958895176649094, 0.22653408348560333, 0.14935970306396484, -0.11143745481967926, -0.2122238278388977, 0.1842174082994461, -0.10532291233539581, 0.056496892124414444, 0.15190930664539337, -0.1507619023323059, -0.2701149880886078, -0.25469592213630676, 0.03654736280441284, 0.40553975105285645, 0.11327686160802841, -0.1577254682779312, 0.13730759918689728, -0.16780565679073334, -0.05276019126176834, -0.020412959158420563, 0.11156006902456284, 0.01151716336607933, 0.07993446290493011, -0.12844638526439667, 0.07883565872907639, 0.17938780784606934, 0.021976638585329056, -0.0016393214464187622, 0.23369383811950684, -0.10456811636686325, -0.003004928585141897, 0.029346954077482224, 0.032761115580797195, -0.09322354197502136, -0.01865917444229126, -0.12340641021728516, -0.09760238230228424, 0.04239246994256973, -0.04179489240050316, -0.09931382536888123, 0.06493566930294037, -0.20302261412143707, 0.027935931459069252, 0.0032598376274108887, 0.016461167484521866, 0.013650295324623585, -0.02822541445493698, -0.10105958580970764, -0.07434350997209549, 0.10698731988668442, -0.37722352147102356, 0.17630037665367126, 0.12059729546308517, -0.01054142601788044, 0.15426523983478546, 0.044734612107276917, 0.08919953554868698, 0.031110838055610657, -0.0646023079752922, -0.16186685860157013, -0.012670809403061867, 0.0374123714864254, -0.003136339597404003, -0.018920430913567543, -0.02460540272295475]], "landmarks": [{"left_eyebrow": [[-1.650253730580805, -1.5161662299499632], [-1.3417313362466528, -1.731704706332812], [-0.9717453004328438, -1.7313606529225642], [-0.6326774476227472, -1.638548761676385], [-0.29363826593017156, -1.5149047007790548]], "transform": {"scale": 32.43364248929585, "center": [124.56944444444444, 166.125], "angle": -0.0009299089094532438}, "right_eyebrow": [[0.3229477848578023, -1.4526669391263405], [0.6313841658393924, -1.575708906555737], [1.0014275438882427, -1.6370291924477909], [1.3405527389333807, -1.605881640503913], [1.617898910206134, -1.4514627521904735]], "left_eye": [[-1.2189760799924627, -1.1149466288397143], [-1.0030362079643247, -1.2380746096216728], [-0.725546681103968, -1.2378165695639871], [-0.5099221913685571, -1.0217906841832873], [-0.7566368908128045, -0.9603557138211508], [-1.0340977465556407, -0.9914459235299875]], "right_eye": [[0.44581772558207505, -0.9592375402378458], [0.6926757806139255, -1.174833358855736], [0.9701653074742824, -1.17457531879805], [1.185875810562255, -1.0510459423708025], [1.000768108185268, -0.9278892904713235], [0.7232785813249113, -0.9281473305290093]], "nose_tip": [[-0.295129164041245, 0.08836812108078448], [-0.14099698690301185, 0.11934364631953846], [0.04396735988637203, 0.15034784267581308], [0.19815687925964648, 0.11965902861226554], [0.3523463986329209, 0.088970214548718]], "nose_bridge": [[0.014339377171088293, -1.1446319537900393], [0.04488483564703262, -0.8362815861610111], [0.07545896524049758, -0.5587633881831336], [0.07517225406529116, -0.25044169167162617]], "top_lip": [[-0.7274389748603305, 0.7971066274119629], [-0.44977742129484977, 0.6123716495627441], [-0.17217320996441035, 0.4893010110158269], [0.012791136824973544, 0.5203052073721016], [0.19781282584939874, 0.4896450644260746], [0.4752163393571936, 0.5823996134372127], [0.7217303409787965, 0.7367898306331316], [0.5984016623741935, 0.7366751461630491], [0.19761212802675424, 0.7054702519841299], [0.012619110119849683, 0.7052982252790061], [-0.17237390778705486, 0.7051261985738823], [-0.6041389673732481, 0.8280534815331962]], "chin": [[-1.9282593375565333, -0.9614452162869354], [-1.8362215664834112, -0.4680444885159613], [-1.7750159650614399, 0.02532756813749209], [-1.6829781939883182, 0.5187282959084663], [-1.5600795821465248, 0.9813255251458101], [-1.2829341086964157, 1.3515696010173048], [-0.913234784057813, 1.6602353509390604], [-0.4509816082307168, 1.9073227749110757], [0.011414923183982656, 2.0002493506273376], [0.504786979837436, 1.9390437492053667], [0.9058632253600818, 1.6619269468727782], [1.2453038026979466, 1.3539206326539976], [1.4615017147837703, 0.9533031250116824], [1.5852891312687036, 0.46010309506335284], [1.6782157069849655, -0.002293436351346596], [1.8020031234698988, -0.4954934662996761], [1.8949583703036812, -0.9887221673655264]], "bottom_lip": [[0.7217303409787965, 0.7367898306331316], [0.4748436148294252, 0.9832178189021725], [0.22807157315013663, 1.1063171285666105], [0.012217714474560673, 1.1369486003951166], [-0.2036074730834946, 1.1367479025724723], [-0.4501788169401388, 1.0440220246788545], [-0.7274389748603305, 0.7971066274119629], [-0.6041389673732481, 0.8280534815331962], [-0.17251726337465806, 0.8592870468296361], [0.012475754532246466, 0.8594590735347599], [0.19749744355667168, 0.828798930588733], [0.5984016623741935, 0.7366751461630491]]}]},
"162796": {"url": "http://i.imgur.com/7TJo5cT.png", "landmarks": [{"transform": {"angle": 0.008395692915749424, "scale": 33.401439393376194, "center": [121.41666666666667, 166.98611111111111]}, "chin": [[-2.355408965165087, -0.9079448395232895], [-2.2910090396249743, -0.3695676092956391], [-2.196671339709319, 0.16855826666595425], [-2.072647219684178, 0.6764950139859479], [-1.7694991619378964, 1.1230480869585142], [-1.377040489597102, 1.5089715483818238], [-0.8955225569278511, 1.8043276238803352], [-0.444445107166257, 2.0400595048938186], [0.00537557126505156, 2.126102514029589], [0.36362344670733293, 2.0033351653347338], [0.6305498734266441, 1.701695233184795], [0.8667844629722417, 1.310493332174286], [1.0728299238762393, 0.8896050110542916], [1.2489376104046948, 0.46896804420035404], [1.3649183939160083, 0.018896011502988384], [1.3910858543006939, -0.4304219583962059], [1.357629120200352, -0.8492994453877435]], "nose_bridge": [[0.2479206341768233, -1.0795015325479704], [0.28012059694687974, -0.8103129174341452], [0.3422583340924787, -0.5413756565863771], [0.3744582968625351, -0.27218704147255185]], "right_eyebrow": [[0.5135902895658491, -1.5308303365756217], [0.78227619614756, -1.622905848096763], [1.0514648112613851, -1.6551058108668195], [1.2917210690638963, -1.567303321868649], [1.413231646428466, -1.35874431830408]], "left_eyebrow": [[-1.5496025996860112, -1.2141091484622564], [-1.2824248187006428, -1.4858113062366525], [-0.8944905231488761, -1.6387677835731074], [-0.5050481020007668, -1.6120976146563073], [-0.14478939243002856, -1.4953627683468227]], "right_eye": [[0.5478010864643622, -1.0221395264574564], [0.7561087357628741, -1.1735878781975686], [0.9654218021256145, -1.205285132435511], [1.1163674453336123, -1.056853031888084], [0.9669299277219571, -1.025658486182256], [0.7573655070931596, -1.0238990063198563]], "left_eye": [[-1.038900955439389, -1.0088177503564297], [-0.8303419518748203, -1.1303283277209994], [-0.5908397568704804, -1.1323391618494563], [-0.40995633928694003, -0.9841584155680866], [-0.5893316312741378, -0.9527125155962015], [-0.8288338262784777, -0.9507016814677446]], "top_lip": [[-0.9357658562117349, 0.5771302287491504], [-0.518145140550483, 0.39398462277109597], [-0.06932987918340282, 0.3602765344046969], [0.17042367008699416, 0.3882034746517825], [0.3797367364497344, 0.3565062204138403], [0.6494280600956738, 0.38418180639486876], [0.7704359289281293, 0.5328652612083528], [0.6808739600675591, 0.5635570983820666], [0.38074215351396284, 0.4762573179160102], [0.1714290871512226, 0.5079545721539523], [-0.06832446211917438, 0.48002763190686687], [-0.8459525330851075, 0.5763761659509791]], "nose_tip": [[-0.16241080776877267, -0.028160469679184036], [0.04765632139213891, 0.029955599209501166], [0.287661224928593, 0.08782031383212927], [0.46678516264973363, 0.026436639484701645], [0.5860335516197893, -0.03444432633061175]], "bottom_lip": [[0.7704359289281293, 0.5328652612083528], [0.6250200795733878, 1.0430641969228605], [0.3575909443219623, 1.2848285803217143], [0.11834010358367955, 1.3167771888257136], [-0.1513512200622599, 1.2891016028446851], [-0.6021773155577969, 1.0833074962067444], [-0.9357658562117349, 0.5771302287491504], [-0.8459525330851075, 0.5763761659509791], [-0.12292157128306008, 1.1092236023253732], [0.1168319779873369, 1.1371505425724586], [0.35583146445956254, 1.0752641596929169], [0.6808739600675591, 0.5635570983820666]]}], "embedding": [[-0.1032649353146553, 0.03117019310593605, 0.13031330704689026, -0.06852249801158905, -0.07874873280525208, -0.020827453583478928, 0.043743882328271866, -0.06788531690835953, 0.15712805092334747, -0.09477607905864716, 0.1732456088066101, -0.11754775792360306, -0.30546489357948303, 0.0945572778582573, -0.1639348864555359, 0.17735441029071808, -0.1581658124923706, -0.13049307465553284, -0.16468243300914764, -0.08941987156867981, 0.04798493534326553, 0.15896335244178772, -0.037897199392318726, 0.09017908573150635, -0.10704298317432404, -0.2629966139793396, -0.008938299492001534, -0.16004012525081635, 0.029393447563052177, -0.03128403425216675, -0.02065180242061615, 0.12095677852630615, -0.14552873373031616, 0.03708413243293762, 0.12632933259010315, 0.038136281073093414, 0.04912741482257843, -0.09874025732278824, 0.30183297395706177, -0.06792689859867096, -0.19174692034721375, -0.04268902540206909, 0.1638486534357071, 0.20651893317699432, 0.22106033563613892, -0.007321000099182129, -0.07613827288150787, -0.08618982136249542, 0.1529998481273651, -0.3416443467140198, -0.03805901110172272, 0.15455085039138794, 0.09849204123020172, 0.13760913908481598, 0.08255594968795776, -0.29471680521965027, 0.00921499915421009, 0.07501079142093658, -0.197592630982399, 0.08618788421154022, -0.04150431603193283, -0.2477157860994339, -0.0028886720538139343, -0.05744794383645058, 0.17264153063297272, -0.030283242464065552, -0.16268986463546753, -0.11607535928487778, 0.21342362463474274, -0.20230579376220703, 0.0945335403084755, 0.16814939677715302, -0.11190051585435867, -0.14306855201721191, -0.17246221005916595, -0.010292557068169117, 0.4068432152271271, 0.15495918691158295, -0.20439141988754272, 0.028344621881842613, -0.10476695001125336, -0.04937107115983963, 0.006062496453523636, 0.03438767045736313, 0.009944342076778412, -0.12498494237661362, -0.11595571041107178, 0.03695058822631836, 0.24790631234645844, -0.09617182612419128, 0.04494157433509827, 0.2578994929790497, -0.05231223255395889, -0.04451589658856392, -0.0462203249335289, 0.0764896422624588, -0.17643797397613525, -0.04268454760313034, -0.07782423496246338, 0.04101695865392685, 0.0067433202639222145, -0.05861010029911995, 0.019406910985708237, 0.09257811307907104, -0.19390320777893066, 0.04853910952806473, -0.09352996200323105, -0.10636326670646667, -0.05932903289794922, -0.07982735335826874, -0.07055312395095825, 0.021846139803528786, 0.24023856222629547, -0.21920084953308105, 0.23863781988620758, 0.11657965183258057, -0.021723922342061996, 0.18168814480304718, -0.027040064334869385, 0.05935617536306381, 0.001997268758714199, -0.07596918940544128, -0.13714049756526947, -0.14621253311634064, 0.08943367004394531, -0.04622978717088699, 0.04869150370359421, -0.018951572477817535]]},
"162797": {"landmarks": [{"left_eyebrow": [[-1.5696886626355955, -1.209087102683205], [-1.318593833314481, -1.4932766872567782], [-0.9532031750087855, -1.6093808354438845], [-0.5583343998556821, -1.5848110135747595], [-0.24647501763722643, -1.3903474361166424]], "transform": {"center": [124.29166666666667, 168.40277777777777], "angle": 0.00916482876266236, "scale": 35.47653708638958}, "nose_bridge": [[0.06590102721052227, -1.1395109381101742], [0.06874267167163355, -0.8294598750942439], [0.09977077640692031, -0.51966714339296], [0.13105721245685353, -0.1816879514175006]], "bottom_lip": [[0.8701051311369318, 0.48807048098190264], [0.6195269644451101, 0.8286329861038269], [0.3389540182765876, 0.9721486006211691], [0.08553420712365467, 1.0026600427271628], [-0.16840226665857122, 0.9767985642848057], [-0.5076731152072631, 0.8671526989638615], [-0.8769387432326555, 0.5604599430383354], [-0.7641929021359537, 0.5594266177797494], [-0.1699522545464501, 0.8076798026397528], [0.0839842192357758, 0.83354128108211], [0.3092175701145332, 0.8032881702907627], [0.7858040816290518, 0.5170319352000176]], "left_eye": [[-1.1456001019497308, -1.0720297710320248], [-0.9211417450149129, -1.1868422626458985], [-0.695650062821509, -1.1889089131630703], [-0.4693833866841655, -1.1064161828577155], [-0.6948750688775696, -1.1043495323405437], [-0.920108419756327, -1.0740964215491966]], "nose_tip": [[-0.37500741590507286, -0.03610568638298654], [-0.14848240845308305, 0.07457350419654357], [0.0777842676842603, 0.15706623450189822], [0.30275928724837126, 0.09862666343637541], [0.4990311839090138, -0.0159274968628519]], "chin": [[-2.102389763383819, -0.8941277446889915], [-2.06929500813136, -0.3588433307943037], [-2.0364585841935474, 0.14825462282620866], [-1.9472492397073848, 0.654835913817428], [-1.7737388457133416, 1.1324557505905324], [-1.4316263527035387, 1.552152678927407], [-0.9778013438556196, 1.8580704409089939], [-0.4965648686774645, 2.0791704907534077], [0.03975287047580933, 2.158821576597651], [0.5178893698782068, 2.041684103151959], [0.9386196234736672, 1.8123174512388578], [1.3022019625768373, 1.4989080811325233], [1.5522634666393662, 1.101972655462248], [1.6893207982905463, 0.6778840947763831], [1.7131156262157317, 0.19845593880075343], [1.7371687854555635, -0.25278575690070093], [1.760963613380749, -0.7322139128763306]], "right_eye": [[0.4331000047187431, -1.0583098643780522], [0.686003153242383, -1.1451942270323967], [0.8835667064762579, -1.1188160859607466], [1.0819052536540725, -1.00787856406657], [0.8843417004201973, -1.0342567051382203], [0.658591686912147, -1.060376514895224]], "right_eyebrow": [[0.3172541878462834, -1.395514062409572], [0.6262719256036278, -1.5111015479673853], [0.9645094488937337, -1.514201523743143], [1.27559383716825, -1.4042973271075523], [1.4752240409192967, -1.152427503842498]], "top_lip": [[-0.8769387432326555, 0.5604599430383354], [-0.5115480849269602, 0.44435579485122917], [-0.1735688929515008, 0.4130693588012959], [0.05243945187119608, 0.4673756288324751], [0.305859263024129, 0.43686418672648125], [0.587723865765884, 0.4342808735800165], [0.8701051311369318, 0.48807048098190264], [0.7858040816290518, 0.5170319352000176], [0.30663425696806845, 0.5214235675490078], [0.05321444581513552, 0.5519350096550015], [-0.1725355676929149, 0.5258151998979979], [-0.7641929021359537, 0.5594266177797494]]}], "embedding": [[-0.039514899253845215, -0.0021751169115304947, 0.012042820453643799, 0.04167238995432854, -0.13596612215042114, -0.05589937046170235, -0.0021316278725862503, -0.12214221805334091, 0.0646238625049591, -0.19704294204711914, 0.1754559725522995, -0.03631291538476944, -0.2698638439178467, -0.055070459842681885, 0.026159729808568954, 0.14608865976333618, -0.06091562658548355, -0.14495082199573517, -0.1478043496608734, -0.12379048764705658, -0.08786466717720032, 0.025558091700077057, -0.056739140301942825, -0.013771284371614456, -0.0642126202583313, -0.1941089630126953, -0.03734758123755455, -0.06317689269781113, 0.03824451565742493, -0.06614311784505844, 0.05080085247755051, 0.05592714250087738, -0.21835879981517792, -0.07624417543411255, 0.03353701904416084, 0.08132621645927429, -0.06704868376255035, -0.042583443224430084, 0.23727595806121826, -0.03877093270421028, -0.12178278714418411, 0.01732918620109558, 0.028759483247995377, 0.23168569803237915, 0.18103863298892975, -0.0074839964509010315, -0.010382192209362984, -0.07282121479511261, 0.15295511484146118, -0.30669069290161133, 0.047425415366888046, 0.04210948944091797, 0.17727398872375488, 0.07139283418655396, 0.02998637594282627, -0.17759038507938385, 0.06187388300895691, 0.14053967595100403, -0.19513335824012756, 0.10787755995988846, 0.06517166644334793, -0.17051340639591217, -0.026336021721363068, 0.03102460876107216, 0.19561225175857544, 0.016425911337137222, -0.024910621345043182, -0.09004402160644531, 0.26619210839271545, -0.21570955216884613, -0.020342497155070305, 0.043415457010269165, 0.0031060632318258286, -0.1367015242576599, -0.28424468636512756, 0.05766868591308594, 0.35513976216316223, 0.14392036199569702, -0.1915886402130127, -0.00801905058324337, 0.0034631649032235146, -0.029466791078448296, 0.0632319524884224, 0.005275357514619827, -0.022059746086597443, -0.1937750279903412, -0.10967277735471725, 0.010642360895872116, 0.2741842567920685, -0.05561317503452301, 0.01905815489590168, 0.19888174533843994, 0.04881205037236214, -0.08124632388353348, 0.0659983903169632, 0.008839689195156097, -0.08593251556158066, -0.05014895647764206, -0.08420220017433167, 0.009809482842683792, 0.054607607424259186, -0.19213733077049255, 0.03355897217988968, 0.11688292026519775, -0.1773817539215088, 0.1867421269416809, -0.10128042101860046, -0.055880069732666016, 0.022387538105249405, -0.005692150443792343, -0.06298902630805969, -0.015650849789381027, 0.18006213009357452, -0.17616823315620422, 0.22885142266750336, 0.14474889636039734, -0.03376917541027069, 0.16312071681022644, 0.000913004856556654, 0.1338096559047699, -0.014175038784742355, -0.021826408803462982, -0.1874135434627533, -0.1945745199918747, -0.011773603036999702, -0.005141913890838623, 0.03304743394255638, 0.09994432330131531]], "url": "http://i.imgur.com/jjy0IOv.png"}
}
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.333681
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.)

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