Skip to content

Instantly share code, notes, and snippets.

@dribnet
Forked from uwcc/.block
Last active October 23, 2019 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dribnet/07386225482a395e036ab60f9ca074a6 to your computer and use it in GitHub Desktop.
Save dribnet/07386225482a395e036ab60f9ca074a6 to your computer and use it in GitHub Desktop.
MDDN342 Assignment 3: Face Mappings
license: mit

Assignment 3 MDDN 342 2019

Example of how to adapt assignment 2 code to assignment 3, this time using Lu Xaio's solution. This completes part 3 by adding training data into training_values.json.

/*
* 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.hairStyle = 1; // 1-4
/*
* 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) {
// let chin_p1 = map(s1,0,100,0.6,1.8);
// let chin_p2 = map(s2,0,100,4.2,4.92);
// let face_h = map(s3,0,100,0.6,1);
// let R_eyebrow_dis = map(s4,0,100,-3,2);
// let L_eyebrow_dis = map(s5,0,100,-3,2);
// let hairC = int(map(s6,0,100,1,5));
// let skinC = int(map(s7,0,100,1,5));
// let mouthS = map(s8, 0, 100, 0, 0.5);
// let eyeS = int(map(s9, 0, 100, 1, 4));
// let hairS = int(map(s10, 0, 100, 1, 4));
// let decoration = int(map(s11,0,100,1,4))
let chin_p1 = 1;
let chin_p2 = 4.5;
let face_h = 1;
let rightEyebrow = 1;
let leftEyebrow = 1;
let hairC = 1;
let skinC = 1;
let mouthShape = 0.25;
let eyeShape = 1;
let hairStyle = this.hairStyle;
let decoration = 1;
let shoulder = 0;
let h1 = '#D2542C';
let h2 = '#F2D896';
let h3 = '#F2EBD8';
let h4 = '#29130B';
let h5 = '#A9A096';
let sk1 = '#F2C6AE';
let sk2 = '#D9C2BA';
let sk3 = '#EDB8AB';
let sk4 = '#C48485';
let sk5 = '#F9EBD0';
push();
let nose_bridge_y = positions.nose_bridge[0][1];
translate(0, nose_bridge_y/2);
scale(0.33);
stroke(0);
strokeWeight(0.1);
if(skinC == 1){
fill(sk1);
}else if(skinC ==2){
fill(sk2)
}else if(skinC == 3){
fill(sk3)
}else if(skinC ==4){
fill(sk4)
}else if(skinC ==5){
fill(sk5)
}
if(shoulder == 1){
beginShape();
vertex(-10,13);
vertex(-9, 12);
vertex(-7,10);
vertex(-5, 9);
vertex(-2.5,8);
vertex(-2,7);
vertex(-1.8,5);
vertex(1.8,5);
vertex(2,7);
vertex(2.5,8);
vertex(5, 9);
vertex(7,10);
vertex(9, 12);
vertex(10,13);
endShape();
push();
beginShape();
fill(120)
vertex(-10,13);
vertex(-9, 12);
vertex(-7,10);
vertex(-5, 9);
vertex(0,12);
vertex(5, 9);
vertex(7,10);
vertex(9, 12);
vertex(10,13);
endShape();
pop();
}
beginShape();//face
// fill(242, 197, 174)
//chin
vertex(chin_p1, 5.7);
bezierVertex(-0.3, 6, 0.18, 6, -chin_p1, 5.7);
//left face
bezierVertex(-2.988-(0.15 * chin_p1), 4.884, -3.12-(0.16 * chin_p2), 4.296, -chin_p2, 3.6-face_h);
//forehead
vertex(-5.4, -1.2);
bezierVertex( -5.7,-9, 5.4, -9, 5.4, -1.2);
//right face
vertex(chin_p2, 3.6-face_h);
bezierVertex(3.12+(0.16 * chin_p2), 4.296, 2.98 + (0.15 * chin_p1), 4.88, chin_p1, 5.7);
endShape(CLOSE);
//ear
beginShape();
vertex(5.4, -1.6);
vertex(6, -2.4);
vertex(6.3, -2.3);
vertex(6.4, -2.2);
vertex(6.5, -2);
vertex(6.4, -1.5);
vertex(6.3, -1);
vertex(6, 0)
vertex(5.6, 1);
vertex(5, 2);
vertex(chin_p2 + 0.2, 2.1)
endShape(CLOSE);
beginShape();
vertex(-5.4, -1.6);
vertex(-6, -2.4);
vertex(-6.3, -2.3);
vertex(-6.4, -2.2);
vertex(-6.5,-2);
vertex(-6.4, -1.5);
vertex(-6.3, -1);
vertex(-6, 0)
vertex(-5.6, 1);
vertex(-5, 2);
vertex(-chin_p2 - 0.2, 2.1)
endShape(CLOSE);
if(eyeShape == 1){
beginShape();//right eye inside
fill(250)
vertex(1.2, -0.54);
bezierVertex(1.56, -0.91, 4.2, -1.69, 3.9,-0.6)
bezierVertex(3.6, 0, 3.48, 0.12, 3, 0.48);
bezierVertex(1.2, 0.6, 0.9, 0.3, 1.2, -0.54)
endShape(CLOSE);
fill(95, 147, 167)
ellipse(2.28, -0.3, 1.62, 1.44)
fill(36, 73, 83)
ellipse(2.28, -0.3, 0.6, 0.6)
push();
noFill();
push();
beginShape();//right eyelid
strokeWeight(0.01);
fill(236, 168, 142);
vertex(1.2, -0.54);
vertex(3.5, -1.55);
vertex(1.2, -1.4);
endShape();
pop();
beginShape();
fill(0)
vertex(1.2, -0.54);
bezierVertex(1.56, -0.92, 4.2, -1.69, 3.9, -0.6)
vertex(4.2, -1.2);
bezierVertex(3.9, -1.5, 3, -1.5, 1.2, -0.6)
endShape(CLOSE);
pop();
push();
noStroke();
if(hairC == 1){
fill(h1);
}else if(hairC == 2){
fill(h2);
}else if(hairC == 3){
fill(h3);
}else if (hairC == 4){
fill(h4);
}else if(hairC == 5){
fill(h5);
}
beginShape();//right eye brow
vertex(0.72, -2.1+0.15*rightEyebrow);
bezierVertex(0.72, -2.16+0.2*rightEyebrow, 2.4, -3.3-0.15*rightEyebrow, 4.2, -2.4-0.15*rightEyebrow);
vertex(3.6, -2.46-0.15*rightEyebrow);
vertex(2.1, -2.4+0.01*rightEyebrow);
endShape(CLOSE);
beginShape();//Left eye brow
vertex(-0.72,-2.1+0.15*leftEyebrow);
bezierVertex(-0.72, -2.16+0.2*leftEyebrow, -2.4, -3.3-0.15*leftEyebrow, -4.2, -2.4-0.15*leftEyebrow);
vertex(-3.6,-2.46-0.15*leftEyebrow);
vertex(-2.1,-2.4+0.01*leftEyebrow);
endShape(CLOSE);
pop();
beginShape();//left eye inside
fill(250)
vertex(-1.2, -0.54);
bezierVertex( -1.56, -0.91, -4.2, -1.69, -3.9, -0.6)
bezierVertex( -3.6, 0, -3.48, 0.12, -3, 0.48);
bezierVertex(-1.2, 0.6, -0.9, 0.3, -1.2, -0.54)
endShape(CLOSE);
fill(95, 147, 167)
ellipse(-2.28, -0.3, -1.62, 1.44)
fill(36, 73, 83)
ellipse(-2.28, -0.3, -0.6, 0.6)
push();
beginShape();//left eyelid
strokeWeight(0.01);
fill(236, 168, 142);
vertex(-1.2, -0.54);
vertex(-3.5, -1.55);
vertex(-1.2, -1.4);
endShape();
pop();
beginShape();
fill(0)
vertex(-1.2, -0.54);
bezierVertex( -1.56, -0.92, -4.2, -1.69, -3.9,-0.6)
vertex(-4.2, -1.2);
bezierVertex(-3.9, -1.5, -3, -1.5, -1.2, -0.6)
endShape(CLOSE);
}else if(eyeShape ==2){
push()
strokeWeight(0.1)
fill(255)
beginShape();
vertex(4, -0.8);
bezierVertex(3.8, 0, 3.5, 0.3, 3.1, 0.5)
bezierVertex(2.2, 0.5, 1.8, 0.3, 1.4, 0)
vertex(1.2, -0.5);
endShape(CLOSE);
beginShape();
vertex(-4, -0.8);
bezierVertex(-3.8, 0, -3.5, 0.3, -3.1, 0.5)
bezierVertex(-2.2, 0.5, -1.8, 0.3, -1.4, 0)
vertex(-1.2, -0.5);
endShape(CLOSE);
noStroke();
fill('#8DD0FF')
ellipse(2.5, -0.6, 1.5, 1.3)
ellipse(-2.5, -0.6, 1.5, 1.3)
fill(0);
ellipse(2.5,-0.6, 1, 0.8)
ellipse(-2.5,-0.6, 1, 0.8)
pop();
push();
push();
strokeWeight(0)
fill('#FF9D85')
beginShape();
vertex(4.2, -0.7);
vertex(3.5, -1.5);
vertex(2, -1.5);
vertex(1.2, -0.5)
endShape();
beginShape();
vertex(-4.2, -0.7);
vertex(-3.5, -1.5);
vertex(-2, -1.5);
vertex(-1.2, -0.5)
endShape();
pop();
beginShape();
strokeWeight(0.2);
vertex(1.2, -0.5);
bezierVertex(1.8, -0.7, 4, -0.8, 4.2, -0.7);
endShape();
beginShape();
vertex(-1.2, -0.5);
bezierVertex(-1.8, -0.7, -4, -0.8, -4.2, -0.7);
endShape();
pop();
// push();
// pop();
if(hairC == 1){
fill(h1);
}else if(hairC == 2){
fill(h2);
}else if(hairC == 3){
fill(h3);
}else if (hairC == 4){
fill(h4);
}else if(hairC == 5){
fill(h5);
}
stroke(0)
beginShape();//right eye brow
vertex(0.72, -2.1+0.2*rightEyebrow);
bezierVertex(0.72, -2.16+0.2*rightEyebrow, 2.4, -3.3-0.15*rightEyebrow, 4.2, -2.4-0.15*rightEyebrow);
vertex(3.6, -2.46-0.15*rightEyebrow);
vertex(2.1, -2.4+0.01*rightEyebrow);
endShape(CLOSE);
beginShape();//Left eye brow
vertex(-0.72, -2.1+0.15*rightEyebrow);
bezierVertex(-0.72, -2.16+0.2*rightEyebrow, -2.4, -3.3-0.15*rightEyebrow, -4.2, -2.4-0.15*rightEyebrow);
vertex(-3.6, -2.46-0.15*rightEyebrow);
vertex(-2.1, -2.4+0.01*rightEyebrow);
endShape(CLOSE);
}else if(eyeShape == 3){
strokeWeight(0.1);
fill(10)
beginShape();
vertex(1.8, -0.1);
vertex(3.15, -0.18);
vertex(3.6, -0.36);
vertex(4, -1.35);
bezierVertex(3.9, -1.3, 2.7, -1.1, 1.62, -1)
vertex(1.3, -1);
vertex(1.2, -0.45);
vertex(1.35,-0.9);
vertex(1.62, -0.81);
vertex(2.7, -0.9);
vertex(3.6, -1.08);
vertex(3.78, -1.17);
vertex(3.6, -0.36);
vertex(3.15, -0.18);
vertex(1.8, -0.1);
endShape();
beginShape();
vertex(-1.8, -0.1);
vertex(-3.15, -0.18);
vertex(-3.6, -0.36);
vertex(-4, -1.35);
bezierVertex(-3.9, -1.3, -2.7, -1.1, -1.62, -1)
vertex(-1.3, -1);
vertex(-1.2, -0.45);
vertex(-1.35,-0.9);
vertex(-1.62, -0.81);
vertex(-2.7, -0.9);
vertex(-3.6, -1.08);
vertex(-3.78, -1.17);
vertex(-3.6, -0.36);
vertex(-3.15, -0.18);
vertex(-1.8, -0.1);
endShape();
beginShape();//right eye brow
vertex(0.72, -2.1+0.2*rightEyebrow);
bezierVertex(0.72, -2.16+0.2*rightEyebrow, 2.4, -3.3-0.15*rightEyebrow, 4.2, -2.4-0.15*rightEyebrow);
vertex(3.6, -2.46-0.15*rightEyebrow);
vertex(2.1, -2.4+0.01*rightEyebrow);
endShape(CLOSE);
beginShape();//Left eye brow
vertex(-0.72, -2.1+0.15*rightEyebrow);
bezierVertex(-0.72, -2.16+0.2*rightEyebrow, -2.4, -3.3-0.15*rightEyebrow, -4.2, -2.4-0.15*rightEyebrow);
vertex(-3.6, -2.46-0.15*rightEyebrow);
vertex(-2.1, -2.4+0.01*rightEyebrow);
endShape(CLOSE);
fill(250)
beginShape();
vertex(1.2, -0.45);
vertex(1.35,-0.9);
vertex(1.62, -0.81);
vertex(2.7, -0.9);
vertex(3.6, -1.08);
vertex(3.78, -1.17);
vertex(3.6, -0.36);
vertex(3.15, -0.18);
vertex(1.8, -0.1);
endShape();;
beginShape();
vertex(-1.2, -0.45);
vertex(-1.35,-0.9);
vertex(-1.62, -0.81);
vertex(-2.7, -0.9);
vertex(-3.6, -1.08);
vertex(-3.78, -1.17);
vertex(-3.6, -0.36);
vertex(-3.15, -0.18);
vertex(-1.8, -0.1);
endShape();
fill(10);
ellipse(-2.5,-0.5,1,0.8)
ellipse(2.5,-0.5,1,0.8)
}else if(eyeShape == 4){
strokeWeight(0.1);
fill(255);
beginShape();
vertex(4, -0.8);
bezierVertex(3.7, 0.5, 3, 0.5, 1.2, 0.5);
bezierVertex(1.9, -1.5, 2.3, -1.1, 2.9, -1.2);
endShape();
beginShape();
vertex(-4, -0.8);
bezierVertex(-3.7, 0.5, -3, 0.5, -1.2, 0.5);
bezierVertex(-1.9, -1.5, -2.3, -1.1, -2.9, -1.2);
endShape();
fill(0);
ellipse(2.5, -0.25, 1.5, 1.5)
beginShape();
vertex(1.2,0.5);
bezierVertex(1.4, -1.3, 2.3, -1.5, 2.9, -1.45);
bezierVertex(3.5, -1.3, 4, -0.8, 4.2, -1.1);
bezierVertex(4, -0.8, 3.5,-0.9, 2.9, -1.2);
bezierVertex(2.3, -1.1, 1.9, -1, 1.2, 0);
endShape()
ellipse(-2.5, -0.25, -1.5, 1.5)
beginShape();
vertex(-1.2,0.5);
bezierVertex(-1.4, -1.3, -2.3, -1.5, -2.9, -1.45);
bezierVertex(-3.5, -1.3, -4, -0.8, -4.2, -1.1);
bezierVertex(-4, -0.8, -3.5,-0.9, -2.9, -1.2);
bezierVertex(-2.3, -1.1, -1.9, -1, -1.2, 0);
endShape()
if(hairC == 1){
fill(h1);
}else if(hairC == 2){
fill(h2);
}else if(hairC == 3){
fill(h3);
}else if (hairC == 4){
fill(h4);
}else if(hairC == 5){
fill(h5);
}
stroke(0)
beginShape();//right eye brow
vertex(0.72, -2.1+0.2*rightEyebrow);
bezierVertex(0.72, -2.16+0.2*rightEyebrow, 2.4, -3.3-0.15*rightEyebrow, 4.2, -2.4-0.15*rightEyebrow);
vertex(3.6, -2.46-0.15*rightEyebrow);
vertex(2.1, -2.4+0.01*rightEyebrow);
endShape(CLOSE);
beginShape();//Left eye brow
vertex(-0.72, -2.1+0.15*rightEyebrow);
bezierVertex(-0.72, -2.16+0.2*rightEyebrow, -2.4, -3.3-0.15*rightEyebrow, -4.2, -2.4-0.15*rightEyebrow);
vertex(-3.6, -2.46-0.15*rightEyebrow);
vertex(-2.1, -2.4+0.01*rightEyebrow);
endShape(CLOSE);
}
//Mouth Shape
push();
strokeWeight(0.1);
noFill()
beginShape();
vertex(-1.5, 3.3 + mouthShape);
bezierVertex(-0.3, 3.6 -mouthShape, 0.3, 3.6-mouthShape, 1.5, 3.3+mouthShape)
endShape();
beginShape();
vertex(-0.3, 3.9+ 0.1*mouthShape);
vertex(0, 3.9)
vertex(0.3, 3.9+ 0.1*mouthShape);
endShape();
beginShape();
noStroke()
fill("#E1673D")
vertex(-1.5, 3.3 + mouthShape);
bezierVertex(-0.5, 3.6-mouthShape, 0.5, 3.6-mouthShape, 1.5, 3.3 + mouthShape);
endShape();
pop();
//Nose Shape
/*
beginShape();
strokeWeight(0.1);
noFill();
vertex()
vertex(0.5, 2.3)
bezierVertex(0.4, 2, 0.25, 2.3, 0, 2.4);
vertex(-0.1, 2.4);
bezierVertex(-0.25, 2.3, -0.5, 2, -0.6, 2.3);
endShape();
*/
push()
if(decoration == 1){
//freckle
fill("#B57738")
noStroke()
ellipse(1,0,0.1,0.1);
ellipse(0.2,0.5,0.2,0.2)
ellipse(-1.1,0.5,0.2,0.15);
ellipse(1.4,0.8,0.15,0.15);
ellipse(-1.1,0.3,0.15,0.1);
ellipse(-1.4,1.3,0.15,0.15);
ellipse(-0.8,0.5,0.2,0.15);
ellipse(1.1,0.3,0.15,0.15);
ellipse(-1,0.9,0.15,0.2);
ellipse(-2,1,0.15,0.15);
ellipse(2,1,0.2,0.15);
ellipse(0, 1, 0.3, 0.15);
ellipse(1.5, 1.4, 0.25, 0.25);
ellipse(-1.8, 0.8, 0.2, 0.2);
ellipse(1.8, 0.8, 0.2, 0.2);
}else if(decoration==2){
//glass
noFill();
strokeWeight(0.2)
ellipse(2.5,0,3.5,2.5);
ellipse(-2.5,0,3.5,2.5);
beginShape();
vertex(0.8,0);
vertex(0,-0.5)
vertex(-0.8,0)
endShape();
beginShape();
vertex(4.3,0);
vertex(5.5,-2)
endShape();
beginShape();
vertex(-4.3,0);
vertex(-5.5,-2)
endShape();
}else if(decoration==3){
translate(4,1)
beginShape();
noStroke()
fill('#EB4762')
vertex(0,0);
bezierVertex(0.5, -0.5, 1, 0, 0, 1);
bezierVertex(-1, 0, -0.5, -0.5, 0, 0);
endShape(CLOSE);
}
pop();
if(hairStyle == 2){
beginShape();
if(hairC == 1){
fill(h1);
}else if(hairC == 2){
fill(h2);
}else if(hairC == 3){
fill(h3);
}else if (hairC == 4){
fill(h4);
}else if(hairC == 5){
fill(h5);
}
vertex(0.2, -5.5);
bezierVertex(0.5, -4, 0.4, -3, 0, -2)
vertex(-0.5, -1);
vertex(0, -1.2);
vertex(-0.2, -0.5); //keep
vertex(-1, 1);
vertex(-0.9, 1.5);//keep
bezierVertex(-0.8, 1, 0, 0, 2.5, -2);
vertex(2, -1); //keep
bezierVertex(3, -2, 4, -4, 4, -2);
bezierVertex(3.7,-1, 4.2, -2, 4.8, 0);
bezierVertex(4.5, 3, 5, 2, 5, 0);
bezierVertex(6, -2, 6.5, -3, 6, -4)
vertex(5.5, -5);
bezierVertex(5.8, -5.2, 4, -6, 4, -6.5);
bezierVertex(1, -8, 0, -8, -0.5, -7.5);
vertex(-1, -8);
vertex(-2, -7.5);
vertex(-3, -6.5);
bezierVertex(-4, -6.4, -5, -5, -5.5, -4);
bezierVertex(-6, -3, -5.7, -2, -5.5, -1);
vertex(-5, 1);
vertex(-3.9, -2);
vertex(-3, -3);
vertex(-2, -4);
vertex(-1.5, -3.5);
vertex(-1, -4);
endShape(CLOSE);
}else if(hairStyle ==4){
beginShape();
if(hairC == 1){
fill(h1);
}else if(hairC == 2){
fill(h2);
}else if(hairC == 3){
fill(h3);
}else if (hairC == 4){
fill(h4);
}else if(hairC == 5){
fill(h5);
}
vertex(-1,-5);
vertex(0,-4.8);
vertex(1,-5);
vertex(1.7, -6.5);
vertex(1.9, -6.7);
vertex(1.7, -7);
vertex(1.5, -7);
vertex(1.3, -7.2);
vertex(1, -7.3);
vertex(0.8, -7.5);
vertex(0.2, -7.7);
vertex(-0.2, -7.6);
vertex(-1, -7.7);
vertex(-2, -7.6);
vertex(-4.5, -6.5);
vertex(-6, -5);
vertex(-6.5, -4);
vertex(-6.8, -3.5);
vertex(-7, -3);
vertex(-6.8, -1);
vertex(-6.5, 0.5);
vertex(-6.5, 6);
vertex(-6.8, 6.5);
vertex(-7, 7.5);
vertex(-6.3, 8.5);
vertex(-6.6, 9);
vertex(-7, 9.5);
vertex(-6.5, 9.4);
vertex(-6, 9);
vertex(-5.8, 10);
vertex(-5.5, 9.4);
vertex(-5, 10);
vertex(-4.8, 9);
vertex(-4.5, 8);
vertex(-4.3, 9);
vertex(-4, 9.7);
vertex(-3.5, 8.5);
vertex(-2, 8);
vertex(-1.5, 7.5);
vertex(-1, 5);
vertex(-0.7, 3);
vertex(-1, 1);
vertex(-0.2, -2);
vertex(-1, -5);
endShape(CLOSE);
}else if(hairStyle ==3){
//hair Style 1
if(hairC == 1){
fill(h1);
}else if(hairC == 2){
fill(h2);
}else if(hairC == 3){
fill(h3);
}else if (hairC == 4){
fill(h4);
}else if(hairC == 5){
fill(h5);
}
beginShape();
vertex(0.2, -5.5);
bezierVertex(1, -5.5, 1.2, -5.6, 2.5, -4);
bezierVertex(3, -3, 3.5, -2.5, 4, -2.3);
vertex(5, -2);
vertex(5.4, -1.6);
vertex(6, -2.4);
bezierVertex(6.3, -2.3, 6.2, -4, 6, -5);
bezierVertex(6.02, -5.5, 5.5, -6, 4.5, -7);
bezierVertex(1, -8.5, 0.4, -8.2, 0, -8.3);
bezierVertex(-1, -8.3, -2, -8, -2.3, -8);
bezierVertex(-4, -7, -5.2 ,-6, -5.5, -5.9);
bezierVertex(-5.8, -5, -6, -4, -6.5, -3);
bezierVertex(-6.8, -2, -6.9, 0, -6.5, 2);
bezierVertex(-6.4, 4, -6, 5, -6.1, 8);
bezierVertex(-6.3, 9, -6.3, 9, -6, 9.5);
vertex(-6.15, 9);
vertex(-5.8, 8);
vertex(-5.5, 7);
vertex(-5.4, 6);
vertex(-5.5, 4);
vertex(-5.4, 2);
vertex(-5.5, 1);
endShape(CLOSE);
}
//reference line
// line(-3,-6,3,-6);//forehead
// line(-3,-2.4,3,-2.4);//eye brow
// line(-1.2,2.1,1.2,2.1);//noise
// line(-0.9,3.3,0.9,3.3);//mouth
// line( 0, -6, 0,6);//mid line
// push();
// stroke(150);
// line( -1.2, -6, -1.2, 6);
// line( 1.2, -6, 1.2,6);
// line( 4.3, -0.9, 4.3, 0.9);
// line(-4.3, -0.9, -4.3, 0.9);
// pop();
pop();
noFill();
strokeWeight(0.05);
beginShape(LINES);
// curveVertex(positions.nose_tip[0][0], positions.nose_tip[0][1])
vertex(positions.nose_tip[0][0], positions.nose_tip[0][1])
vertex(positions.nose_tip[1][0], positions.nose_tip[1][1])
vertex(positions.nose_tip[1][0], positions.nose_tip[1][1])
vertex(positions.nose_tip[2][0], positions.nose_tip[2][1])
vertex(positions.nose_tip[2][0], positions.nose_tip[2][1])
vertex(positions.nose_tip[3][0], positions.nose_tip[3][1])
vertex(positions.nose_tip[3][0], positions.nose_tip[3][1])
vertex(positions.nose_tip[4][0], positions.nose_tip[4][1])
// curveVertex(positions.nose_tip[4][0], positions.nose_tip[4][1])
endShape();
beginShape(LINES);
vertex(positions.nose_bridge[0][0], positions.nose_bridge[0][1])
vertex(positions.nose_bridge[1][0], positions.nose_bridge[1][1])
vertex(positions.nose_bridge[1][0], positions.nose_bridge[1][1])
vertex(positions.nose_bridge[2][0], positions.nose_bridge[2][1])
vertex(positions.nose_bridge[2][0], positions.nose_bridge[2][1])
vertex(positions.nose_bridge[3][0], positions.nose_bridge[3][1])
vertex(positions.nose_bridge[3][0], positions.nose_bridge[3][1])
vertex(positions.nose_tip[2][0], positions.nose_tip[2][1])
endShape();
}
/* set internal properties based on list numbers 0-100 */
this.setProperties = function(settings) {
this.hairStyle = int(map(settings[0], 0, 100, 1, 4));
}
/* get internal properties as list of numbers 0-100 */
this.getProperties = function() {
let settings = new Array(1);
settings[0] = map(this.hairStyle, 1, 4, 0, 100);
return settings;
}
}
// 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="system_runner.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>setting 1</td>
<td id="slider1Container"></td>
</tr>
<tr>
<td>setting 2</td>
<td id="slider2Container"></td>
</tr>
<tr>
<td>setting 3</td>
<td id="slider3Container"></td>
</tr>
<tr>
<td>setting 4</td>
<td id="slider4Container"></td>
</tr>
<tr>
<td>setting 5</td>
<td id="slider5Container"></td>
</tr>
<tr>
<td>setting 6</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>
<a href="face.js">face code</a><br>
<a href="sketch.html">sketches</a>
</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": "4acc67790ceae47e2dc59a065d40d654ac1bdeeb",
"name": "adapting example3"
},
{
"sha": "55c1cb6e0a0af629a914a01cd122b605929a07bb",
"name": "adapting example2"
},
{
"sha": "bccc7dea1526a86c6bdcfda022fc82053ff0a904",
"name": "adapting example1"
},
{
"sha": "e5b69a958ebc7cfc4490383bc46eea4550931888",
"name": "averaging function"
},
{
"sha": "b287c9b1382496eb683a53d2b353e57edc726870",
"name": "migrated code"
},
{
"sha": "11af26044b7353d04626875bf5a819de92883680",
"name": "original software"
}
]
}
[
{"url": "z_grad1.jpg", "embedding": [[-0.15199312567710876, 0.13918572664260864, 0.05826219543814659, -0.012238021939992905, -0.1456972062587738, 0.053176697343587875, -0.07893643528223038, -0.0956428050994873, 0.1357843279838562, -0.048736922442913055, 0.23464538156986237, -0.06584430485963821, -0.2590144872665405, -0.0028060637414455414, -0.06609421968460083, 0.12695667147636414, -0.23844614624977112, -0.10554128885269165, -0.03423326089978218, -0.013708479702472687, 0.06777269393205643, 0.044071149080991745, -0.0639183521270752, 0.06066761910915375, -0.06400807201862335, -0.3478825092315674, -0.03832428157329559, -0.03646232932806015, 0.07079165428876877, -0.16247357428073883, -0.08778782188892365, -0.02248144894838333, -0.2181779444217682, -0.07180969417095184, 0.0036101415753364563, 0.12386693060398102, -0.004836313426494598, -0.06450491398572922, 0.1794215887784958, -0.038003094494342804, -0.13134607672691345, 0.06648300588130951, 0.032293498516082764, 0.3020225465297699, 0.09296652674674988, 0.0922943502664566, -0.06316938996315002, -0.0050275325775146484, 0.10613328218460083, -0.24210207164287567, 0.04245038330554962, 0.1334460824728012, 0.15018266439437866, 0.042533814907073975, 0.036781176924705505, -0.25882822275161743, -0.017113834619522095, 0.11536664515733719, -0.14342032372951508, 0.08845704793930054, 0.04207507148385048, -0.15524135529994965, 0.09622292220592499, -0.05997700244188309, 0.27442359924316406, 0.09670823067426682, -0.04806401953101158, -0.14424853026866913, 0.09978508204221725, -0.07664044201374054, -0.05000770464539528, 0.006921999156475067, -0.05594898760318756, -0.12438273429870605, -0.277351975440979, 0.02565249800682068, 0.385532408952713, 0.0873512327671051, -0.2867821455001831, -0.006044890731573105, -0.05420593172311783, -0.030581779778003693, 0.14404314756393433, 0.04292285442352295, -0.015659179538488388, -0.013751119375228882, -0.1983795166015625, 0.004131779074668884, 0.2427763193845749, -0.004615753889083862, -0.029484586790204048, 0.18497057259082794, 0.02878665179014206, 0.03769322484731674, 0.06382177025079727, -0.010782435536384583, -0.10323129594326019, 0.00577009841799736, -0.10523303598165512, 0.0414377897977829, -0.011180505156517029, -0.07383453845977783, -0.036086082458496094, 0.11327726393938065, -0.17250613868236542, 0.09602954983711243, 0.034206219017505646, -0.022807568311691284, -0.05978740379214287, 0.0125388503074646, -0.12850259244441986, 0.005054935812950134, 0.17287568747997284, -0.36192017793655396, 0.29071635007858276, 0.17027059197425842, 0.01415894366800785, 0.1957511603832245, 0.007768303155899048, 0.03632567077875137, 0.0055671632289886475, 0.00834721326828003, -0.143670454621315, -0.13585424423217773, 0.05798543989658356, -0.05642908811569214, 0.09376735985279083, 0.08294810354709625], [-0.07600455731153488, 0.10360204428434372, -0.007447530049830675, -0.023116707801818848, -0.1340135633945465, 0.015004683285951614, -0.043216120451688766, -0.14832043647766113, 0.0719400942325592, -0.0814213901758194, 0.2001240849494934, 0.0048464201390743256, -0.2784927487373352, 0.01243668794631958, -0.11291640251874924, 0.11485464125871658, -0.13013631105422974, -0.100812166929245, -0.19641131162643433, -0.22066642343997955, -0.03403690084815025, 0.04014185816049576, 0.059372276067733765, 0.04994757100939751, -0.12771183252334595, -0.16002435982227325, -0.05255256965756416, -0.08617803454399109, 0.15839895606040955, -0.10038736462593079, -0.05262553691864014, -0.013898342847824097, -0.21112528443336487, -0.05814998596906662, 0.02838289737701416, 0.017637798562645912, -0.14400824904441833, -0.0913010761141777, 0.26412707567214966, -0.016076672822237015, -0.05969332531094551, 0.05678783357143402, 0.07339008897542953, 0.2895229458808899, 0.19229942560195923, -0.0012318585067987442, 0.007641242817044258, -0.043906718492507935, 0.1222916767001152, -0.22803525626659393, 0.023211181163787842, 0.19522181153297424, 0.14161416888237, 0.10691850632429123, 0.07540140300989151, -0.19703318178653717, 0.013140678405761719, 0.19334396719932556, -0.09577013552188873, 0.15762993693351746, 0.019272498786449432, -0.10159507393836975, 0.0015432778745889664, -0.08206260204315186, 0.2051558643579483, 0.045332200825214386, -0.11847420036792755, -0.1301233023405075, 0.2098272442817688, -0.12320135533809662, -0.015030469745397568, 0.08306916058063507, -0.10349154472351074, -0.14683851599693298, -0.22824092209339142, 0.035903170704841614, 0.3970082402229309, 0.18615451455116272, -0.13380905985832214, 0.005448698997497559, -0.08638738095760345, -0.0675649642944336, 0.004446670413017273, 0.004245325922966003, -0.12245626002550125, -0.100474514067173, -0.10849791020154953, 0.04692307114601135, 0.21569453179836273, -0.04071981459856033, -0.05637573450803757, 0.20702815055847168, 0.031912170350551605, -0.018908120691776276, 0.021639883518218994, 0.05897647142410278, -0.22919782996177673, -0.055146411061286926, -0.09080009907484055, 0.01180112361907959, -0.009630262851715088, -0.1915474534034729, 0.031782910227775574, 0.09636028110980988, -0.08101369440555573, 0.1493152230978012, -0.025587081909179688, 0.008264981210231781, -0.08182225376367569, 0.046414539217948914, -0.146131694316864, 0.0033114105463027954, 0.1853899210691452, -0.2483208030462265, 0.2902657091617584, 0.19844740629196167, 0.058501116931438446, 0.09108277410268784, 0.11340397596359253, 0.04316425323486328, 0.006050333380699158, 0.04513123631477356, -0.10827353596687317, -0.18283119797706604, -0.005777418613433838, -0.08852045983076096, 0.06653439998626709, 0.08568352460861206], [-0.05804724991321564, -0.006948553025722504, 0.09513214230537415, -0.09209921956062317, -0.15596339106559753, -0.02697044238448143, 0.026904886588454247, -0.20930784940719604, 0.1859447956085205, -0.16386957466602325, 0.17882919311523438, -0.058215003460645676, -0.2777746021747589, 0.026952747255563736, -0.11752130836248398, 0.13721278309822083, -0.14883941411972046, -0.19645778834819794, -0.11114746332168579, -0.13420215249061584, -0.05565574765205383, 0.017371047288179398, 0.004080239683389664, 0.013811193406581879, -0.09467843174934387, -0.24857978522777557, -0.053916990756988525, -0.13530121743679047, 0.11473352462053299, 0.037751615047454834, -0.0201145987957716, 0.07162941992282867, -0.2217569649219513, -0.00932108610868454, 0.06124795228242874, 0.04364052414894104, -0.09999427199363708, -0.13551177084445953, 0.2243955135345459, -0.09055013954639435, -0.22082602977752686, 0.02054111659526825, 0.07328611612319946, 0.12965184450149536, 0.2284155935049057, -0.010905257426202297, 0.008382085710763931, -0.13540326058864594, 0.20133079588413239, -0.2743183672428131, -0.0026408713310956955, 0.15117035806179047, 0.11342453956604004, 0.06742963194847107, 0.06247064471244812, -0.2695755064487457, 0.046180665493011475, 0.12469083070755005, -0.20460081100463867, 0.05803634971380234, 0.027767084538936615, -0.0687926635146141, 0.0021393299102783203, 0.02310369163751602, 0.18302975594997406, 0.03673199936747551, -0.1254500150680542, -0.11919890344142914, 0.26548269391059875, -0.2033815234899521, 0.10955261439085007, 0.17816796898841858, -0.10129047185182571, -0.19530561566352844, -0.09946008026599884, 0.01069343090057373, 0.5294152498245239, 0.11681173741817474, -0.07930759340524673, 0.037080734968185425, -0.13750606775283813, -0.02933289110660553, 0.013468965888023376, -0.0009205341339111328, -0.07440327107906342, -0.09618749469518661, -0.12179972976446152, -0.01729828119277954, 0.2583850920200348, -0.08155819028615952, 0.014564305543899536, 0.2788756191730499, 0.000173129141330719, -0.03467123210430145, 0.0038035823963582516, 0.09085991233587265, -0.15687832236289978, 0.011055294424295425, -0.07198138535022736, -0.0450834259390831, 0.033661313354969025, -0.12249523401260376, 0.021850749850273132, 0.058268412947654724, -0.19670318067073822, 0.14642545580863953, -0.07377311587333679, 0.012029044330120087, -0.019887328147888184, -0.07850967347621918, -0.007693588733673096, 0.008977025747299194, 0.18017837405204773, -0.28694456815719604, 0.22101138532161713, 0.12603968381881714, 0.02291954681277275, 0.18645891547203064, 0.013495147228240967, 0.0023415684700012207, 0.03060375154018402, -0.1096918061375618, -0.14001353085041046, -0.1427859663963318, 0.02084183692932129, -0.06413828581571579, 0.037816643714904785, 0.045221537351608276]], "landmarks": [{"chin": [[-1.5514265248550074, -1.0927969177797228], [-1.5590737619240633, -0.5672660169720076], [-1.494072825820971, -0.08336973043870319], [-1.4311961007932132, 0.3631403639708597], [-1.2935469915179727, 0.8054020362297534], [-1.0437393058715074, 1.2412910752626425], [-0.7565454281013009, 1.6750559032201975], [-0.43621378035802233, 2.0319241358549345], [-0.01646882269552745, 2.1581025825212192], [0.43004127171403544, 2.0952258574934612], [0.865930310746925, 1.8454181718469962], [1.2580605244300689, 1.4855761209046414], [1.6106803349141365, 1.0904720889138797], [1.8821551279247175, 0.5874579027025633], [2.0393471334887394, 0.05343015759350925], [2.080132140530867, -0.5489973385370236], [2.12304135864833, -1.1140386425438151]], "left_eyebrow": [[-1.445640581709787, -1.2113281273769514], [-1.352599905016575, -1.5541764897166286], [-1.022496809128906, -1.6854529657658652], [-0.6465106768161565, -1.6693088843954706], [-0.2994138923258099, -1.5014958234547755]], "right_eyebrow": [[-0.0355863363842849, -1.4789791088583768], [0.36716493267553246, -1.6518901991820243], [0.8157992381604301, -1.6773807320860405], [1.235544195822925, -1.5512022854197562], [1.5163654403671274, -1.2295960338334258]], "nose_bridge": [[-0.16388899412590388, -1.0966203433196233], [-0.18215728657163316, -0.7580204031306155], [-0.1983013679420277, -0.3820342708178661], [-0.21444544931242232, -0.006048138505116747]], "nose_tip": [[-0.5487969673507608, 0.050455953296636914], [-0.3533691624307147, 0.18937966641492934], [-0.12267937646226187, 0.28879297633414563], [0.13265133517792432, 0.16176492243557838], [0.3901062578934453, 0.07212306066075264]], "left_eye": [[-1.1006680082947753, -1.0809012585599975], [-0.9201096809020719, -1.2036808903078955], [-0.6957925281596232, -1.2164261567599035], [-0.5003647232395771, -1.0775024436416112], [-0.7246818759820259, -1.0647571771896032], [-0.9489990287244747, -1.052011910737595]], "right_eye": [[0.43853850200462896, -1.0558353362774955], [0.6564830215210737, -1.1807391791007278], [0.8808001742635224, -1.193484445552736], [1.1114899602319754, -1.0940711356335198], [0.8892970185648612, -1.0439396770577702], [0.6628556547470779, -1.0685806027295035]], "top_lip": [[-0.7412509539631893, 0.623994101604767], [-0.5628168376458208, 0.4638282777331278], [-0.3384996849033719, 0.45108301128111966], [-0.07254791788651227, 0.5109859180012597], [0.1870312159043433, 0.45873024835017545], [0.5630173482170927, 0.47487432972057003], [0.8706037295083632, 0.6074254096128583], [0.7584451531371388, 0.6137980428388623], [0.19340384913034736, 0.5708888247213998], [-0.0661752846605082, 0.6231444943724841], [-0.33212705167736783, 0.563241587652344], [-0.6664785697157064, 0.6197456794540976]], "bottom_lip": [[0.8706037295083632, 0.6074254096128583], [0.5574943222233715, 1.0377914226520268], [0.23376385956170645, 1.2812264750724878], [-0.06320146635289059, 1.3356063557989069], [-0.3291532333697502, 1.2757034490787664], [-0.5683398636395419, 1.0267453706645844], [-0.7412509539631893, 0.623994101604767], [-0.6664785697157064, 0.6197456794540976], [-0.3087607298486863, 0.9744897010135001], [-0.0801951549555681, 1.0365168188089748], [0.21677017095902895, 0.982136938082556], [0.7584451531371388, 0.6137980428388623]], "transform": {"center": [503.7083333333333, 188.48611111111111], "scale": 26.704772397965883, "angle": 0.056757040877126574}}, {"chin": [[-2.2290678477380936, -0.9274404815933124], [-2.1964268546251784, -0.40498410621454667], [-2.126823690057351, 0.15509923728713065], [-1.9819665892437004, 0.6412582378789838], [-1.687931209274402, 1.1287468318068357], [-1.318309494725281, 1.5050165130359519], [-0.9107284137192484, 1.8070294530212438], [-0.46518796625630465, 2.034785651762712], [0.05627121412046188, 2.114028368016532], [0.5044708482554036, 2.043428008446705], [0.8794109361485207, 1.8229845730532315], [1.1434645096769014, 1.4896602332910232], [1.3339261386294576, 1.0437873874940795], [1.487093197793102, 0.5975821433631364], [1.5656711173789224, 0.15071210256419348], [1.6069544671758313, -0.29649033656874907], [1.611275645517828, -0.7813197438246032]], "left_eyebrow": [[-1.5158174450727722, -1.4432488902920833], [-1.2161312934254784, -1.5897679827757327], [-0.8428531972023602, -1.6237385692246473], [-0.4702398976472413, -1.5831200160957377], [-0.13591836288303358, -1.4309501519340928]], "right_eyebrow": [[0.27432190479499685, -1.4272937702600956], [0.536381088319379, -1.536850691288833], [0.8723646147535855, -1.571153676071747], [1.170056376396881, -1.4939053498219252], [1.3172402655485298, -1.2688083377524553]], "nose_bridge": [[0.08585466584643912, -1.205188343196623], [0.12015765062935325, -0.8692048167624167], [0.19175520520117925, -0.5328888919942105], [0.22605818998409344, -0.19690536556000401]], "nose_tip": [[-0.3343575518515836, -0.0900076312032646], [-0.11158732812011174, 0.023870468167469426], [0.148477465400272, 0.1380809658722032], [0.4102042505906546, 0.0658186146323777], [0.5603797247483011, -0.04473550139835889]], "left_eye": [[-1.1455309338556516, -1.141568348640791], [-0.9210987184541811, -1.214163098214616], [-0.6973312997207098, -1.2121687082106176], [-0.5118556457781499, -1.0986230071738834], [-0.6986608930567088, -1.0629904290549703], [-0.92242831179018, -1.0649848190589688]], "right_eye": [[0.4574707703995587, -1.0526860807009784], [0.6819029858010294, -1.1252808302748036], [0.8683758347455885, -1.123618838604805], [1.0538514886881487, -1.0100731375680705], [0.8670462414095895, -0.9744405594491573], [0.6805733924650303, -0.9761025511191561]], "top_lip": [[-0.7878755593305214, 0.5773058449891519], [-0.4498976428923164, 0.31923544147276656], [-0.11391411645810995, 0.2849324566898524], [0.14648307539627356, 0.36184838460567437], [0.3702504941297447, 0.3638427746096728], [0.6679422557730401, 0.4410911008594945], [0.8524207147136008, 0.6665205112629644], [0.7778315751357772, 0.6658557145949648], [0.36925329912774546, 0.4757264839764084], [0.10819131060536247, 0.47339969563841017], [-0.11524370979410892, 0.43411073584549986], [-0.7132864197526976, 0.5779706416571515]], "bottom_lip": [[0.8524207147136008, 0.6665205112629644], [0.6253293126401324, 1.0374718191480843], [0.3253107626588388, 1.2212854814206457], [0.06424877413645574, 1.2189586930826475], [-0.1961484177179278, 1.1420427651668255], [-0.5298051558141361, 0.9152837614273568], [-0.7878755593305214, 0.5773058449891519], [-0.7132864197526976, 0.5779706416571515], [-0.19448642604792907, 0.9555699162222664], [0.0662431641404542, 0.9951912743491763], [0.3273051526628372, 0.9975180626871746], [0.7778315751357772, 0.6658557145949648]], "transform": {"center": [197.98611111111111, 198.33333333333334], "scale": 26.81249010762717, "angle": -0.00891254503407134}}, {"chin": [[-1.614357739841225, -0.9348718738378412], [-1.5921808547419354, -0.4603097215170619], [-1.5986581925909404, -0.02715894889369591], [-1.5414485061687966, 0.4537817818016428], [-1.407794638726386, 0.9124468679232463], [-1.1562852105662944, 1.3201820865228202], [-0.8283316013859359, 1.705641660548659], [-0.4525880341336044, 2.0274142103033492], [-0.003540195311062644, 2.1453685304954755], [0.4487463124359814, 2.0467474643759185], [0.8915143323584094, 1.8016166145903865], [1.3470395090299558, 1.4864201621591464], [1.7038448601074998, 1.1170551732813745], [1.9332761626427475, 0.652110268259657], [2.035333416635698, 0.09158544709399408], [2.060946489608381, -0.44666372949793365], [2.086559562581064, -0.9849129060898615]], "left_eyebrow": [[-1.4805063534499232, -1.2724427303172616], [-1.318000744110327, -1.568602207099269], [-0.9835697970809634, -1.6162934056967961], [-0.6682745851752778, -1.5588862003257615], [-0.37211510839327067, -1.3963805909861653]], "right_eyebrow": [[0.14385842362492196, -1.4472116990337496], [0.49742510577796367, -1.6000013015998384], [0.9019216554530352, -1.634935343448247], [1.2458710903070151, -1.536116758379799], [1.5292734103399035, -1.3035455463944947]], "nose_bridge": [[-0.1237455896832362, -1.1701879573754206], [-0.13974141535685747, -0.8835469684180296], [-0.16211581940503814, -0.5618731781377847], [-0.18449022345321875, -0.24019938785754]], "nose_tip": [[-0.5030241042834066, -0.08103120691689156], [-0.3406172544182557, 0.020927287601613276], [-0.10176622353283758, 0.100610137546383], [0.12756631952796418, 0.03378320382517758], [0.32824463964047146, -0.07445510959344118]], "left_eye": [[-1.1270384307713268, -1.0271143615828386], [-0.9550143336071143, -1.176764054698871], [-0.7320603689208718, -1.208558187097222], [-0.5059664947845726, -1.0588097345067449], [-0.7289204594708149, -1.0270156021083932], [-0.9454958457824978, -1.0302542710328957]], "right_eye": [[0.4431578098569861, -1.103163504705324], [0.6788689312923473, -1.2050232397493834], [0.8954443176040302, -1.2017845708248809], [1.092883968792035, -1.0934474979318167], [0.911341383803206, -1.0903075884817597], [0.6883874191169637, -1.0585134560834082]], "top_lip": [[-0.7134184311694212, 0.6769332654367761], [-0.5063615326823545, 0.5336621506953035], [-0.2834075679961121, 0.5018680182969519], [-0.07321076005898854, 0.5401394885443083], [0.14974320462725385, 0.5083453561459569], [0.46503841653293926, 0.5657525615169915], [0.8026092730123598, 0.6996039479082932], [0.7325436703666519, 0.6868467911591744], [0.17201884920098895, 0.5847895371662241], [-0.050935115485253424, 0.6165836695645757], [-0.261131923422377, 0.5783121993172193], [-0.6433528285237133, 0.6896904221858949]], "bottom_lip": [[0.8026092730123598, 0.6996039479082932], [0.4935938800067883, 1.0052819125149168], [0.1814385775511598, 1.1294172921327112], [-0.0701696100833771, 1.1198000448336496], [-0.24533361669764675, 1.0879071529608526], [-0.5192174489059188, 1.0018457246415233], [-0.7134184311694212, 0.6769332654367761], [-0.6433528285237133, 0.6896904221858949], [-0.28988490584511706, 0.9350187909203179], [-0.07968809790799346, 0.9732902611676744], [0.13688728840368955, 0.9765289300921768], [0.7325436703666519, 0.6868467911591744]], "transform": {"center": [657.3055555555555, 297.7083333333333], "scale": 28.08298130068401, "angle": -0.18010156564114393}}]},
{"url": "z_graduation.jpg", "embedding": [[-0.10347072780132294, 0.06618480384349823, 0.08944465219974518, -0.07737189531326294, -0.11552006006240845, 0.08573660254478455, 0.046469904482364655, -0.06847450882196426, 0.12280146032571793, -0.16738304495811462, 0.1742403209209442, -0.11235165596008301, -0.2353980541229248, 0.05773373693227768, 0.0041805654764175415, 0.2173958122730255, -0.14617669582366943, -0.1555822193622589, -0.1452403962612152, -0.09430722892284393, 0.06853944063186646, 0.06412877142429352, -0.016129378229379654, 0.1033785343170166, -0.214976504445076, -0.26460638642311096, -0.04681946337223053, -0.11194434762001038, 0.002350524067878723, -0.16609476506710052, -0.0859680250287056, 0.030269399285316467, -0.07969270646572113, 0.028913356363773346, 0.055137380957603455, 0.040262576192617416, -0.04348456859588623, -0.13810989260673523, 0.21289345622062683, 0.01108074001967907, -0.20171934366226196, 0.03134848177433014, 0.1433902084827423, 0.1995633989572525, 0.1422107219696045, 0.03252260386943817, 0.013437449932098389, -0.04832911491394043, 0.19192145764827728, -0.353022038936615, -0.07311773300170898, 0.08788390457630157, 0.009788064286112785, 0.11551441252231598, 0.10874035209417343, -0.2155231237411499, -0.022924482822418213, 0.06408864259719849, -0.14326870441436768, 0.12566182017326355, -0.0089341402053833, -0.11461055278778076, -0.018849458545446396, -0.13815036416053772, 0.1788560152053833, 0.10208114981651306, -0.1329701989889145, -0.1552974432706833, 0.17799843847751617, -0.14959058165550232, -0.09886149317026138, 0.07049356400966644, -0.1002323254942894, -0.1553780734539032, -0.19551590085029602, -0.07084693014621735, 0.35036325454711914, 0.19172263145446777, -0.17135915160179138, 0.03334537148475647, -0.06804950535297394, 0.005142960697412491, -0.03089281916618347, 0.08233700692653656, -0.025252290070056915, 0.040651485323905945, -0.058026619255542755, 0.005649566650390625, 0.25859734416007996, -0.04798811674118042, 0.03298860043287277, 0.2710118293762207, 0.011071112006902695, 0.06405965983867645, 0.021791843697428703, 0.04493946582078934, -0.2007286548614502, -0.07654495537281036, -0.12700404226779938, -0.03793442249298096, -0.03135742247104645, -0.08816545456647873, 0.037576183676719666, 0.11404962837696075, -0.22244760394096375, 0.2417600154876709, -0.10163278132677078, -0.0190229881554842, -0.10493285953998566, 0.09807974100112915, -0.10566893965005875, 0.10523773729801178, 0.15236829221248627, -0.24814532697200775, 0.11649006605148315, 0.23807835578918457, 0.030752547085285187, 0.08939310908317566, 0.09190269559621811, 0.02550491690635681, -0.008133232593536377, 0.05940970033407211, -0.19346140325069427, -0.1485685259103775, 0.0636448860168457, -0.08197643607854843, -0.0027558356523513794, 0.05000733956694603], [-0.2155204564332962, -0.009355373680591583, 0.10569865256547928, -0.14248305559158325, -0.2401953935623169, 0.0062473490834236145, -0.07300037890672684, -0.09250541776418686, 0.10319375991821289, -0.17283660173416138, 0.12574879825115204, -0.07314009964466095, -0.2313532680273056, 0.023544326424598694, -0.04060798138380051, 0.19351410865783691, -0.12407182902097702, -0.14405938982963562, -0.09648479521274567, -0.12597429752349854, -0.03353222459554672, 0.06990648806095123, 0.021360084414482117, 0.07479704916477203, -0.10979354381561279, -0.34250181913375854, -0.0028632432222366333, -0.052254945039749146, -0.020846698433160782, -0.041207194328308105, -0.047129400074481964, 0.08114264905452728, -0.19749915599822998, -0.0036079511046409607, -0.0041292160749435425, 0.15744861960411072, -0.09345822036266327, -0.16085577011108398, 0.18300677835941315, 0.016291823238134384, -0.275452584028244, -0.08526945114135742, 0.07046473771333694, 0.1674947887659073, 0.16078417003154755, -0.07995378971099854, 0.04284711182117462, -0.01278117299079895, 0.14265038073062897, -0.37702125310897827, 0.036473535001277924, 0.14943325519561768, 0.011130199767649174, 0.012673497200012207, 0.10759692639112473, -0.0896933376789093, 0.06530025601387024, 0.2046736776828766, -0.11348921805620193, 0.02376156486570835, 0.10011967271566391, -0.08136575669050217, -0.021795926615595818, -0.08152977377176285, 0.21635103225708008, 0.15871961414813995, -0.06910879909992218, -0.15085282921791077, 0.20230497419834137, -0.11280342191457748, -0.1222330778837204, 0.10484418272972107, -0.08783306181430817, -0.1903233528137207, -0.2679708003997803, 0.016265124082565308, 0.333586186170578, 0.21754854917526245, -0.10732398927211761, 0.02665925770998001, -0.09157320857048035, -0.0019355416297912598, 0.07154302299022675, 0.08694051951169968, -0.00985746830701828, 0.015777036547660828, -0.06938159465789795, 0.027039706707000732, 0.24091392755508423, 0.022234968841075897, -0.02055448852479458, 0.2908914387226105, 0.10501660406589508, -0.009518720209598541, 0.029494263231754303, 0.06762060523033142, -0.07423647493124008, -0.05992566794157028, -0.1503196507692337, -0.014799565076828003, 0.09881355613470078, -0.019330769777297974, -0.0018251091241836548, 0.1346282809972763, -0.23509342968463898, 0.17524439096450806, -0.10095764696598053, -0.02102724090218544, -0.02335241436958313, -0.09113955497741699, -0.02991214394569397, 0.05151863396167755, 0.11598723381757736, -0.2119646668434143, 0.08596327155828476, 0.19264554977416992, 0.0768716037273407, 0.14474712312221527, 0.1156022846698761, -0.07171675562858582, 0.053890831768512726, -0.11147797107696533, -0.1953001618385315, -0.11592841893434525, 0.09483542293310165, -0.06864320486783981, -0.023124828934669495, 0.11208107322454453], [-0.06351804733276367, 0.07849720120429993, 0.06996607780456543, -0.04253798723220825, -0.14571750164031982, 0.042076148092746735, 0.022159893065690994, -0.1259559541940689, 0.15536949038505554, -0.20729902386665344, 0.10697396099567413, -0.09123585373163223, -0.2612212896347046, 0.0799151062965393, -0.05715279281139374, 0.2900269031524658, -0.13844402134418488, -0.1882251650094986, -0.1688675880432129, -0.12977680563926697, 0.03380975499749184, 0.13383352756500244, 0.012283522635698318, 0.08485710620880127, -0.10572966933250427, -0.31621092557907104, -0.07812625169754028, -0.050282072275877, 0.05409006029367447, -0.03037393093109131, -0.07133964449167252, 0.05762488767504692, -0.10015597194433212, 0.05236813426017761, 0.06671023368835449, 0.029764879494905472, -0.01929686963558197, -0.098593570291996, 0.22805504500865936, 0.03645527362823486, -0.29693084955215454, 0.05137811601161957, 0.17211857438087463, 0.20626315474510193, 0.21991702914237976, 0.030803266912698746, 0.028843622654676437, -0.12532298266887665, 0.14692778885364532, -0.318533718585968, 0.013961667194962502, 0.07958979159593582, 0.09157535433769226, 0.13408203423023224, 0.05398979038000107, -0.21646848320960999, -0.02776622772216797, 0.1445615589618683, -0.17740750312805176, 0.07066016644239426, 0.06536474823951721, -0.13443619012832642, -0.038578614592552185, -0.08570988476276398, 0.19619035720825195, 0.09085685014724731, -0.12589503824710846, -0.2171173244714737, 0.26211458444595337, -0.27144524455070496, -0.09769316017627716, 0.107618048787117, -0.05924909561872482, -0.1453329622745514, -0.2651616930961609, -0.03727254271507263, 0.41126614809036255, 0.21413466334342957, -0.17886142432689667, 0.014581352472305298, -0.02189214713871479, 0.019366241991519928, 0.053872913122177124, 0.14403942227363586, 0.003467205911874771, -0.0756249949336052, -0.07068027555942535, -0.07119116187095642, 0.2857629358768463, -0.058421775698661804, -0.0031607914716005325, 0.2903119921684265, 0.10654941201210022, 0.04493764042854309, -0.01075722649693489, 0.11138377338647842, -0.14136189222335815, -0.04914993420243263, -0.16193462908267975, -0.023617342114448547, -0.1264043152332306, -0.012857740744948387, -0.01407429575920105, 0.09044059365987778, -0.2054254114627838, 0.31047168374061584, -0.08746135979890823, -0.04884018376469612, -0.08957292139530182, 0.05855950713157654, -0.027758292853832245, 0.04164823889732361, 0.16458316147327423, -0.24715571105480194, 0.10343006253242493, 0.2409234642982483, 0.046937860548496246, 0.16318818926811218, 0.03855789452791214, 0.1123027428984642, 0.024455681443214417, -0.04845592379570007, -0.2565963566303253, -0.15010212361812592, 0.08593214303255081, -0.15321195125579834, -0.018994644284248352, 0.10869285464286804], [-0.1622653603553772, 0.10667402297258377, 0.16186590492725372, -0.024813374504446983, -0.21226145327091217, 0.047012604773044586, -0.009016577154397964, -0.1011572778224945, 0.17401644587516785, -0.1432335525751114, 0.23199768364429474, -0.02993565984070301, -0.14372959733009338, 0.1309354305267334, -0.158227801322937, 0.1817736029624939, -0.13040851056575775, -0.18256913125514984, -0.09357091784477234, -0.09872502833604813, 0.0501764751970768, 0.0944056585431099, -0.008703894913196564, 0.007800593972206116, -0.18669173121452332, -0.3292912244796753, 0.006852403283119202, -0.06222854182124138, 0.05195290967822075, -0.10438765585422516, -0.0315193347632885, 0.09237222373485565, -0.13403336703777313, 0.05487024784088135, 0.027490325272083282, 0.07986706495285034, -0.06368846446275711, -0.0874166414141655, 0.20791524648666382, 0.0006215021712705493, -0.3381630778312683, 0.05145488679409027, 0.03048308938741684, 0.29708245396614075, 0.1835361123085022, -0.0853395015001297, 0.00918653979897499, -0.09365241229534149, 0.1011030375957489, -0.3116293251514435, -0.02987561747431755, 0.16513365507125854, -0.016467588022351265, 0.06917163729667664, 0.02024465799331665, -0.11985262483358383, -0.0028847455978393555, 0.10800138860940933, -0.13690002262592316, 0.02127664163708687, 0.13347265124320984, -0.1824302077293396, -0.0175941102206707, -0.10835480690002441, 0.16083931922912598, 0.155307799577713, -0.11025797575712204, -0.19995234906673431, 0.12867310643196106, -0.15309107303619385, -0.06516091525554657, 0.13672520220279694, -0.09342947602272034, -0.15850374102592468, -0.228196918964386, -0.02101033926010132, 0.4681355953216553, 0.13667304813861847, -0.13881227374076843, 0.019748102873563766, -0.08628113567829132, 0.0793687179684639, 0.08296886086463928, 0.11915836483240128, -0.030819160863757133, 0.015634842216968536, -0.10738232731819153, 0.027990877628326416, 0.22755271196365356, -0.015590041875839233, -0.06826312094926834, 0.2085656076669693, 0.027404405176639557, -0.016411155462265015, 0.03946696221828461, 0.16726933419704437, -0.15331044793128967, -0.022329457104206085, -0.10147280246019363, -0.021441660821437836, -0.02088908851146698, -0.012860259972512722, 0.003996357321739197, 0.14046749472618103, -0.19003021717071533, 0.26271796226501465, -0.10665494203567505, 0.050930920988321304, 0.001983948051929474, -0.027657464146614075, 0.053725454956293106, 0.05339433252811432, 0.12873134016990662, -0.2468513697385788, 0.14720389246940613, 0.16455116868019104, 0.021719638258218765, 0.16536322236061096, 0.08578133583068848, -0.024663500487804413, -0.05523153394460678, -0.006905809044837952, -0.20063042640686035, -0.086925208568573, -0.0071152374148368835, -0.09783738106489182, 0.0247327983379364, 0.03150591254234314], [-0.08468881249427795, 0.05062910541892052, 0.08884206414222717, -0.08632675558328629, -0.18303269147872925, -0.02147606760263443, -0.04902232065796852, -0.07299777120351791, 0.1233745738863945, -0.056916244328022, 0.26721543073654175, -0.06945379078388214, -0.2963871955871582, -0.03550424799323082, -0.05917713791131973, 0.15390321612358093, -0.13863778114318848, -0.1595398336648941, -0.004796238616108894, -0.011620908975601196, 0.029839646071195602, 0.04638495296239853, 0.0341787114739418, 0.10655766725540161, -0.1709275245666504, -0.39438116550445557, 0.025705236941576004, -0.07000824809074402, -0.03425661474466324, -0.07333999872207642, -0.08051050454378128, 0.15393920242786407, -0.18197089433670044, -0.022850319743156433, 0.09899937361478806, 0.08794867992401123, -0.02390746772289276, -0.046553902328014374, 0.17632603645324707, 0.05032376945018768, -0.25870776176452637, -0.007901281118392944, 0.009482741355895996, 0.2233717441558838, 0.1590895652770996, 0.06115242838859558, 0.06663002073764801, -0.10216858983039856, 0.0709027647972107, -0.28968656063079834, 0.06991647183895111, 0.2120543271303177, 0.06342986226081848, -0.05745907872915268, 0.033337004482746124, -0.2109571397304535, -0.037464916706085205, 0.11347676068544388, -0.23975375294685364, 0.08416307717561722, 0.12463321536779404, -0.07179061323404312, 0.024310005828738213, -0.1336551010608673, 0.1623554825782776, 0.0913575291633606, -0.15395371615886688, -0.0997084528207779, 0.1632210910320282, -0.15288904309272766, -0.06681159138679504, 0.05356551706790924, -0.11314139515161514, -0.2594450116157532, -0.27299293875694275, 0.025258153676986694, 0.32455524802207947, 0.2087569385766983, -0.18779470026493073, -0.026855669915676117, -0.034332964569330215, 0.038080353289842606, 0.03174525499343872, 0.03699690103530884, -0.07544437795877457, -0.020106777548789978, -0.11514584720134735, -0.017981842160224915, 0.1903182566165924, 0.0412796288728714, -0.04190044850111008, 0.2441481053829193, -0.034097425639629364, -0.00458170473575592, 0.06049467623233795, 0.0914527028799057, -0.14436012506484985, 0.0005228482186794281, -0.15228883922100067, 0.021727025508880615, -0.07578074932098389, -0.12272706627845764, 0.014724254608154297, 0.13094548881053925, -0.19094645977020264, 0.11322697252035141, -0.1251596063375473, -0.06757443398237228, -0.08601278811693192, 0.009008154273033142, -0.10948967933654785, -0.030012518167495728, 0.11732136458158493, -0.23896268010139465, 0.2156258076429367, 0.18710294365882874, 0.15975461900234222, 0.1830999255180359, 0.10915717482566833, -0.007929019629955292, 0.01623612642288208, -0.07807093858718872, -0.11899517476558685, -0.154739648103714, 0.06158199906349182, -0.09636050462722778, 0.1251973807811737, 0.029372289776802063], [-0.1899084746837616, 0.07582516968250275, 0.06282438337802887, -0.029497623443603516, -0.1011238768696785, -0.01815955340862274, 0.0020921342074871063, -0.16721157729625702, 0.15428045392036438, -0.11110670119524002, 0.2912014424800873, 0.02717241272330284, -0.302534818649292, -0.014657944440841675, -0.07239563763141632, 0.20420494675636292, -0.12649677693843842, -0.1027531549334526, -0.13227418065071106, -0.07769056409597397, 0.053240060806274414, 0.019755519926548004, 0.043561339378356934, 0.08306816220283508, -0.08707504719495773, -0.2550261914730072, -0.10365509241819382, -0.07514837384223938, -0.0038271723315119743, -0.0403653085231781, -0.05612165853381157, 0.13658444583415985, -0.0410744771361351, -0.014241576194763184, 0.03292024880647659, 0.049582600593566895, -0.07688698172569275, -0.11351048946380615, 0.2858181893825531, -0.019553430378437042, -0.20351967215538025, -0.026067093014717102, 0.09181012958288193, 0.2618864178657532, 0.21750950813293457, -0.015930671244859695, 0.015823276713490486, -0.05111834406852722, 0.10940176993608475, -0.34646350145339966, 0.015187317505478859, 0.130348339676857, 0.14736443758010864, 0.09111573547124863, 0.07303264737129211, -0.18415924906730652, 0.04384544491767883, 0.19662180542945862, -0.19997580349445343, -0.0008214116096496582, 0.020437106490135193, -0.22163431346416473, -0.021162763237953186, -0.062075212597846985, 0.15244555473327637, 0.24080470204353333, -0.08912287652492523, -0.09798530489206314, 0.18229393661022186, -0.16631737351417542, -0.09863116592168808, 0.08514253795146942, -0.15980970859527588, -0.2306676208972931, -0.24079392850399017, -0.01762804388999939, 0.4092550277709961, 0.26022374629974365, -0.13065291941165924, -0.0029518455266952515, -0.02412671595811844, -0.012858591973781586, 0.0909465029835701, 0.03434827923774719, -0.11088314652442932, -0.12481939047574997, -0.109773650765419, -0.0344412624835968, 0.20980048179626465, -0.01123163104057312, -0.030477918684482574, 0.28319525718688965, 0.0891207829117775, 0.012552738189697266, 0.03563898056745529, 0.024273104965686798, -0.0052940696477890015, -0.02797764725983143, -0.13461904227733612, 0.0037610679864883423, -0.06215030699968338, -0.08089485764503479, 0.058980733156204224, 0.043991126120090485, -0.204592764377594, 0.10564123839139938, -0.02104102075099945, 0.02229873463511467, -0.025998368859291077, -0.04481832683086395, -0.05478160083293915, 0.048304617404937744, 0.13732948899269104, -0.22735990583896637, 0.13845939934253693, 0.20151424407958984, 0.032394979149103165, 0.16570323705673218, 0.07285493612289429, 0.048131950199604034, -0.01178710162639618, -0.10988008975982666, -0.1631658673286438, -0.06561403721570969, 0.15499939024448395, -0.039041176438331604, 0.06298123300075531, 0.050981730222702026], [-0.05971662700176239, 0.04291289299726486, 0.011343798600137234, -0.05675065517425537, -0.16845548152923584, 0.06304694712162018, 0.0294057447463274, -0.08292731642723083, 0.13215723633766174, 0.019797686487436295, 0.21112021803855896, 0.016995660960674286, -0.2522878348827362, -0.06451469659805298, -0.016370877623558044, 0.06177259609103203, -0.1309884488582611, -0.13300643861293793, -0.1273777186870575, -0.17559322714805603, 0.003724951995536685, 0.024603448808193207, 0.015199359506368637, 0.04932433366775513, -0.2635538578033447, -0.24933654069900513, -0.02638132870197296, -0.19137725234031677, 0.11208070069551468, -0.1377968192100525, -0.03153131902217865, 0.03063780441880226, -0.17438563704490662, -0.05582728981971741, 0.024754099547863007, 0.01295047253370285, -0.0643949806690216, -0.11403767019510269, 0.2512989938259125, -0.07464148104190826, -0.18082745373249054, 0.031504496932029724, 0.12834742665290833, 0.2118203341960907, 0.16290675103664398, -0.019335569813847542, 0.12228235602378845, 0.028620362281799316, 0.21875454485416412, -0.23903100192546844, 0.0383971743285656, 0.12702232599258423, 0.11569942533969879, 0.061049722135066986, -0.01465895026922226, -0.23514991998672485, -0.004266232252120972, 0.16797789931297302, -0.206926167011261, 0.1842781901359558, 0.08794306218624115, -0.15228596329689026, -0.05476880818605423, 0.03913967311382294, 0.16721272468566895, 0.05611109361052513, -0.0954936146736145, -0.20327430963516235, 0.18001730740070343, -0.18484045565128326, 0.000875517725944519, 0.1469310224056244, -0.1496894210577011, -0.16313382983207703, -0.2466074675321579, 0.07991468906402588, 0.45619872212409973, 0.09780249744653702, -0.06600874662399292, 0.0316472202539444, -0.11506402492523193, 0.011425025761127472, -0.030062437057495117, 0.002657070755958557, -0.11292383819818497, -0.012863337993621826, -0.16887956857681274, 0.09187200665473938, 0.31320202350616455, -0.009955406188964844, -0.0017158538103103638, 0.22545765340328217, 0.07080413401126862, 0.02884223312139511, 0.01798650436103344, 0.12331865727901459, -0.161158949136734, -0.01610831916332245, -2.2957101464271545e-05, 0.10888330638408661, 0.05822475999593735, -0.15711790323257446, 0.07564057409763336, 0.08326422423124313, -0.18868649005889893, 0.2069597691297531, -0.07470810413360596, 0.02327362820506096, -0.09382889419794083, -0.039679959416389465, -0.05424951761960983, 0.03715918958187103, 0.19063109159469604, -0.2662286162376404, 0.20330636203289032, 0.18340010941028595, 0.14901727437973022, 0.12862347066402435, 0.05386102944612503, -0.04618313908576965, 0.031073570251464844, -0.010280907154083252, -0.19839493930339813, -0.1061757281422615, 0.008842680603265762, -0.14380663633346558, 0.0637657642364502, 0.09609098732471466], [-0.11810746043920517, 0.10795408487319946, 0.0003110552206635475, -0.05764614790678024, -0.15731167793273926, 0.014938533306121826, -0.048517629504203796, -0.054755792021751404, 0.13443127274513245, -0.027727514505386353, 0.18840721249580383, -0.07022444158792496, -0.28328749537467957, 0.020340628921985626, -0.03086845576763153, 0.10149224102497101, -0.17117008566856384, -0.039500150829553604, -0.21139243245124817, -0.1354937106370926, 0.09031455963850021, 0.05787856876850128, 0.07132666558027267, 0.03818799555301666, -0.2271578311920166, -0.22759540379047394, -0.07452360540628433, -0.09852124750614166, 0.08185859024524689, -0.07049395143985748, 0.024794533848762512, 0.006194934248924255, -0.21511715650558472, -0.10409153252840042, 0.003796122968196869, 0.008954117074608803, -0.10556265711784363, -0.033339083194732666, 0.30525192618370056, 0.029896605759859085, -0.16416284441947937, 0.10361659526824951, 0.09388650953769684, 0.2664567828178406, 0.20548085868358612, 0.06614913791418076, 0.012816846370697021, -0.014357775449752808, 0.1353568434715271, -0.3422130048274994, 0.04825336113572121, 0.2332281917333603, 0.20141741633415222, 0.08112794160842896, 0.09582351893186569, -0.17631326615810394, 0.04745611548423767, 0.1950213760137558, -0.15633057057857513, 0.1311785876750946, 0.059193238615989685, -0.09984415769577026, -0.0046104807406663895, -0.01275855302810669, 0.210422083735466, 0.07112517952919006, -0.1310350000858307, -0.06008167192339897, 0.12092325836420059, -0.10072271525859833, -0.00681646540760994, 0.10953475534915924, -0.10637666285037994, -0.20604678988456726, -0.2890118956565857, 0.05196782946586609, 0.42445990443229675, 0.09869828820228577, -0.28173238039016724, 0.004349600523710251, -0.08777976781129837, -0.012138783931732178, 0.06107024848461151, 0.044259704649448395, -0.11372500658035278, -0.09840265661478043, -0.11277621984481812, -0.011228665709495544, 0.21668100357055664, -0.12581489980220795, 0.02338469587266445, 0.3036734461784363, 0.17191271483898163, -0.020983174443244934, 0.06702055037021637, 0.047437235713005066, -0.16921952366828918, -0.1454533040523529, -0.08614714443683624, 0.05137070268392563, 0.027148209512233734, -0.1666019707918167, -0.04982903599739075, 0.005466826260089874, -0.189893439412117, 0.19774991273880005, 0.01115773618221283, -0.09896891564130783, -0.10941524058580399, -0.031408295035362244, -0.09822004288434982, -0.023442551493644714, 0.2045270949602127, -0.26578181982040405, 0.19036169350147247, 0.2068472057580948, -0.08643387258052826, 0.18693923950195312, 0.11366856098175049, 0.11027641594409943, -0.01531459391117096, 0.12938904762268066, -0.03742220252752304, -0.1855890452861786, 0.056223683059215546, -0.05471159517765045, 0.026981160044670105, 0.03682070970535278], [-0.12283821403980255, 0.05826893448829651, 0.0220902469009161, -0.06843134760856628, -0.10901860147714615, -0.01174570620059967, -0.08375611156225204, -0.06660722196102142, 0.07882966846227646, -0.06298022717237473, 0.21775703132152557, -0.011316582560539246, -0.2229827344417572, 0.013264857232570648, 0.015823103487491608, 0.09033533930778503, -0.16354940831661224, -0.11441419273614883, -0.1558888852596283, -0.08288642764091492, -0.03297121822834015, 0.018206829205155373, 0.055184897035360336, 0.0508069172501564, -0.24327418208122253, -0.19252654910087585, -0.10381922125816345, -0.12835542857646942, -0.005723127163946629, -0.1086670458316803, 0.01572122424840927, 0.034985922276973724, -0.1325433850288391, -0.010256797075271606, 0.08062659204006195, 0.07954078167676926, -0.15010623633861542, -0.15294545888900757, 0.27248722314834595, 0.04026833176612854, -0.1516432911157608, 0.017172783613204956, 0.06622801721096039, 0.23453989624977112, 0.2277102768421173, -0.02863304316997528, 0.028418701142072678, -0.06531262397766113, 0.10559896379709244, -0.28608620166778564, 0.13289065659046173, 0.16819147765636444, 0.20772865414619446, 0.10030554980039597, 0.06410060077905655, -0.1287674605846405, 0.08059307932853699, 0.19065335392951965, -0.17393465340137482, 0.06777606904506683, 0.08160695433616638, -0.07680267095565796, -0.08939474821090698, -0.03665318340063095, 0.1520957052707672, 0.2137615978717804, -0.12028749287128448, -0.18490074574947357, 0.13292574882507324, -0.12768910825252533, -0.13833126425743103, 0.17084546387195587, -0.1428801268339157, -0.23460827767848969, -0.23078389465808868, 0.01610793173313141, 0.3002232015132904, 0.16871953010559082, -0.1705920696258545, -0.02888231724500656, -0.03514306992292404, -0.027196932584047318, -0.02978155016899109, 0.036010853946208954, -0.1776871383190155, -0.09458350390195847, -0.03302185237407684, 0.04140935838222504, 0.25784265995025635, -0.017403796315193176, -0.10367578268051147, 0.18872028589248657, 0.06294739246368408, -0.05020109564065933, 0.06481019407510757, -0.03351514786481857, -0.008598878979682922, -0.07527254521846771, -0.09695006161928177, -0.03277202695608139, 0.07872097194194794, -0.10757067799568176, -0.05253313481807709, 0.07957641780376434, -0.21210572123527527, 0.16407209634780884, -0.019210442900657654, -0.08333288878202438, -0.01178102195262909, -0.06597043573856354, -0.16903260350227356, 0.055256813764572144, 0.22831782698631287, -0.2808076739311218, 0.19388426840305328, 0.18488410115242004, 0.1067437082529068, 0.07848091423511505, 0.15381725132465363, 0.0068109482526779175, 0.018245071172714233, 0.014675244688987732, -0.1662147045135498, -0.09193019568920135, 0.10394218564033508, -0.011651933193206787, 0.08318066596984863, 0.014291897416114807], [-0.10194796323776245, 0.07889443635940552, 0.058866947889328, -0.005247193388640881, -0.07028044015169144, -0.03241643309593201, 0.0015036817640066147, -0.11035718768835068, 0.03947048634290695, -0.13254380226135254, 0.1497916430234909, -0.05583404004573822, -0.21748121082782745, 0.0047573521733284, 0.013018973171710968, 0.05337836220860481, -0.11043009161949158, -0.16395273804664612, -0.13029196858406067, -0.07034134864807129, -0.03225870057940483, 0.05674229562282562, 0.025884084403514862, -0.012600205838680267, -0.08185721933841705, -0.32268962264060974, -0.08434872329235077, -0.12065887451171875, 0.055090807378292084, 0.016866415739059448, 0.09965773671865463, 0.06998448073863983, -0.10232286900281906, 0.03635205328464508, -0.0002386346459388733, 0.06926149129867554, -0.10940848290920258, -0.062139563262462616, 0.2533961832523346, -0.07134704291820526, -0.16268737614154816, -0.04302956163883209, 0.056027673184871674, 0.2989157438278198, 0.2235892415046692, -0.0321742482483387, 0.05088086426258087, -0.021895185112953186, 0.10338602215051651, -0.2772127687931061, 0.1333509087562561, 0.08845575153827667, 0.09105898439884186, 0.17422519624233246, 0.0706067755818367, -0.19086937606334686, 0.0820988118648529, 0.12789669632911682, -0.12722079455852509, 0.11590468138456345, 0.03538867086172104, -0.20654386281967163, 0.017647629603743553, -0.0081978440284729, 0.2097703218460083, 0.0861395001411438, -0.04658022150397301, -0.14494115114212036, 0.14593718945980072, -0.21934859454631805, -0.04267030954360962, 0.10276307165622711, -0.14624068140983582, -0.08164684474468231, -0.291833758354187, 0.05282013118267059, 0.37718504667282104, 0.11195231229066849, -0.050842080265283585, 0.0031395666301250458, 0.013131041079759598, -0.01452968642115593, 0.06109495460987091, 0.09650001674890518, -0.11440154910087585, -0.16736117005348206, -0.10149030387401581, 0.04024893045425415, 0.23021581768989563, -0.048371948301792145, -0.11979940533638, 0.12634024024009705, -0.03214498609304428, -0.043580569326877594, 0.06735827028751373, 0.030812472105026245, -0.0563548281788826, -0.018266942352056503, -0.022502511739730835, 0.05342397838830948, 0.04155689477920532, -0.20099812746047974, -0.02595183253288269, 0.10969991236925125, -0.17335233092308044, 0.17931169271469116, -0.08095729351043701, 0.041352421045303345, 0.05456937104463577, -0.02775236964225769, -0.04700448364019394, 0.008477076888084412, 0.20075681805610657, -0.18508614599704742, 0.21434777975082397, 0.16023549437522888, 0.030305201187729836, 0.19274312257766724, 0.012850217521190643, 0.11409157514572144, -0.059572480618953705, 0.041451871395111084, -0.20641091465950012, -0.044982705265283585, 0.016241569072008133, 0.07956747710704803, 0.008102238178253174, 0.10139833390712738], [-0.0997617244720459, 0.1204749345779419, 0.007002963684499264, -0.031989965587854385, -0.07311355322599411, -0.03989902138710022, 0.006336744874715805, -0.07350613921880722, 0.1556871235370636, 0.006309863179922104, 0.07882361859083176, -0.038553256541490555, -0.21996194124221802, -0.0027953237295150757, -0.017785385251045227, 0.15834975242614746, -0.11964674293994904, -0.09336978197097778, -0.1447012722492218, -0.14604192972183228, 0.04465402290225029, 0.05842011421918869, 0.03087368980050087, 0.1059979721903801, -0.10829853266477585, -0.17156527936458588, -0.06911605596542358, -0.12798288464546204, -0.015801778063178062, -0.09336397051811218, 0.020984485745429993, 0.003699015825986862, -0.20548942685127258, -0.12153231352567673, 0.059772003442049026, 0.02084954082965851, -0.12216955423355103, -0.12793473899364471, 0.20819710195064545, 0.02647634595632553, -0.1543910652399063, 0.05593341588973999, 0.08216135203838348, 0.21924617886543274, 0.15454429388046265, -0.03568577021360397, -0.032571494579315186, -0.10217243432998657, 0.18159976601600647, -0.190089151263237, 0.06963818520307541, 0.18470510840415955, 0.20321419835090637, 0.11638092994689941, 0.0761958509683609, -0.06301460415124893, 0.12569305300712585, 0.136714369058609, -0.20883111655712128, 0.018272146582603455, 0.11950279772281647, -0.07517752051353455, -0.06491788476705551, -0.02016569674015045, 0.05614062771201134, 0.13233467936515808, -0.06769562512636185, -0.1269545555114746, 0.06602795422077179, -0.10798531025648117, -0.08510630577802658, 0.07262541353702545, -0.0847453773021698, -0.18143942952156067, -0.27890345454216003, 0.03091028332710266, 0.33573445677757263, 0.15943029522895813, -0.22114427387714386, -0.0020804107189178467, -0.08020684868097305, 0.0728158950805664, 0.08825068175792694, 0.050705939531326294, -0.13327032327651978, -0.06352576613426208, -0.050195708870887756, 0.01462334394454956, 0.10105704516172409, -0.03476322442293167, -0.10311847180128098, 0.16620570421218872, 0.0821024477481842, -0.01768975704908371, 0.0484580397605896, 0.05407857149839401, -0.09687735885381699, -0.05288677662611008, -0.10416322201490402, -0.025060318410396576, 0.05733996629714966, -0.0341324657201767, -0.02174621820449829, 0.040505632758140564, -0.17260228097438812, 0.13991034030914307, 0.052791863679885864, -0.038093678653240204, -0.04761967062950134, 0.025304362177848816, -0.1397569179534912, 0.007020846009254456, 0.0902889221906662, -0.211914524435997, 0.19753482937812805, 0.11324024200439453, -0.12416668236255646, 0.1033400222659111, 0.08860716223716736, 0.09147529304027557, -0.046786122024059296, -0.041591204702854156, -0.06959127634763718, -0.13704374432563782, 0.15837937593460083, 0.10464682430028915, 0.0748622715473175, -0.010789364576339722]], "landmarks": [{"chin": [[-1.9486566897318507, -0.9204787792074999], [-1.914588295520131, -0.4088458642497582], [-1.880519901308411, 0.10278705070798352], [-1.7733610906741564, 0.6095530522069081], [-1.5979787770761849, 1.038361723824481], [-1.281282544091961, 1.3843461521018852], [-0.8914958946852026, 1.7254636669204724], [-0.5065761587372617, 1.9934907653165248], [0.014790583138114335, 2.105603203949874], [0.44846616821450447, 2.0033113067744366], [0.8675410129144432, 1.681748160331396], [1.2086585277330302, 1.2919615109246376], [1.4766856261290826, 0.9070417749766965], [1.6667553946437834, 0.45389853606503794], [1.7106443303134151, 0.0104891240710136], [1.74966635252423, -0.5060107043455453], [1.7204648717713271, -0.9445532028807525]], "left_eyebrow": [[-1.5344487584907291, -1.3151323420730754], [-1.329778249599577, -1.5490043317171303], [-0.9740599944045385, -1.719519731856285], [-0.6816983287144004, -1.7389873856915534], [-0.30651241968409343, -1.61714112014057]], "right_eyebrow": [[0.429258658000069, -1.5927198383062067], [0.7898438266539245, -1.690144822022827], [1.082205492344063, -1.7096124758580955], [1.4573914013743696, -1.587766210307112], [1.61817297459589, -1.3782287879571424]], "nose_bridge": [[0.02478455367658168, -1.0518854425955622], [0.04425220751185017, -0.759523776905424], [0.06858677480593578, -0.39407169479275145], [0.01983092567748685, -0.02375269922126166]], "nose_tip": [[-0.3407542429763687, 0.07367228449535848], [-0.11661608024994798, 0.13216196054144166], [0.03929857951275534, 0.2686089664688765], [0.18061249889900727, 0.18578472312870772], [0.32192641828525925, 0.10296047978853892]], "left_eye": [[-1.1446621090839706, -0.9740148272544882], [-0.9351246867340015, -1.1347964004760087], [-0.715853437466398, -1.14939714085246], [-0.4819814478223429, -0.9447266319613078], [-0.7012526970899465, -0.9301258915848565], [-0.9205239463575501, -0.9155251512084052]], "right_eye": [[0.5461512955519576, -0.939773003962213], [0.7508218044431099, -1.1736449936062678], [0.9700930537107134, -1.1882457339827193], [1.2039650433547684, -0.9835752250915671], [0.9846937940871647, -0.9689744847151157], [0.7654225448195612, -0.9543737443386644]], "top_lip": [[-0.8183187637223905, 0.61937359366482], [-0.5356909249498867, 0.4537251069844825], [-0.24332925925974858, 0.434257453149214], [-0.019191096533327824, 0.4927471291952972], [0.19521323927545864, 0.40505597239631125], [0.49244181842441387, 0.4586787349835773], [0.7896703975733692, 0.5123014975708434], [0.7214468946096517, 0.5902588274521949], [0.20494706619309289, 0.5512368052413804], [-0.0143241830745107, 0.5658375456178317], [-0.23359543234211433, 0.5804382859942832], [-0.745228347299856, 0.614506680206003]], "bottom_lip": [[0.7896703975733692, 0.5123014975708434], [0.5265102126361337, 0.9703116499413191], [0.24388237386362988, 1.1359601366216567], [0.029478038054843406, 1.2236512934206427], [-0.19466012467157734, 1.1651616173745594], [-0.5698460337018842, 1.0433153518235758], [-0.8183187637223905, 0.61937359366482], [-0.745228347299856, 0.614506680206003], [-0.2092608650480287, 0.9458903681069558], [0.014877297678392035, 1.004380044153039], [0.23414854694599563, 0.9897793037765876], [0.7214468946096517, 0.5902588274521949]], "transform": {"center": [806.7083333333334, 140.30555555555554], "scale": 13.651453111954831, "angle": 0.06648941993600621}}, {"chin": [[-2.0895931315564584, -1.0057402976053131], [-2.021118211611321, -0.48575836229174], [-1.9526432916661833, 0.03422357302183318], [-1.8841683717210453, 0.5542055083354064], [-1.6673595130903016, 1.0758137434768837], [-1.3747573852888506, 1.4499011898467078], [-0.9330081688878411, 1.7514479667016327], [-0.4912589524868317, 2.052994743556558], [0.027096682998837173, 2.1328537622970263], [0.47372479888355956, 1.9893987230951333], [0.9219792145961864, 1.6976097452076342], [1.29606666096601, 1.405007617406183], [1.597613437820935, 0.9632584010051737], [1.7508262759902542, 0.51988288477626], [1.8306852947307224, 0.0015272492905911254], [1.9105443134711906, -0.5168283861950778], [1.916236362868856, -1.0359971715946987]], "left_eyebrow": [[-1.6429650156717364, -1.1491953368072063], [-1.4172115079875185, -1.4434237644365617], [-1.0455635113595514, -1.513524984209604], [-0.6747286646455364, -1.509459234639843], [-0.30470696784547346, -1.431226515727279]], "right_eyebrow": [[0.4369627255825566, -1.4230950165877572], [0.7344437528677208, -1.4940093862747517], [1.1060917494956883, -1.5641106060477938], [1.4011333270389958, -1.412524067706379], [1.6211947853255482, -1.1875837099361133]], "nose_bridge": [[0.06206212929878072, -1.056325919443503], [0.057996379729019845, -0.6854910727294881], [0.054743780073211144, -0.38882319535827614], [0.12565814976020545, -0.0913421680731119]], "nose_tip": [[-0.32096996612451695, 0.052112871128781046], [-0.0992822080100601, 0.12871929021344058], [0.04823858076159374, 0.20451255938414795], [0.2715526387039549, 0.13278503978320147], [0.4206997273035131, 0.060244370268302795]], "left_eye": [[-1.1995894994428224, -0.9959824986378871], [-0.9754622915865092, -1.1418769875816366], [-0.6787944142152972, -1.138624387925828], [-0.4579198060147925, -0.9878509994983653], [-0.7554008332999567, -0.916936629811371], [-0.9779017413283657, -0.9193760795532276]], "right_eye": [[0.5062507954416465, -0.9772800506169871], [0.73037800329796, -1.1231745395607367], [0.952878911326369, -1.1207350898188801], [1.1737535195268738, -0.9699617013914175], [0.9504394615845125, -0.898234181790471], [0.7279385535561035, -0.9006736315323276]], "top_lip": [[-0.9191846203506541, 0.4906094878739816], [-0.62170359306549, 0.41969511818698735], [-0.2500555964375226, 0.3495938984139453], [0.04579913101973721, 0.4270134674125569], [0.26830003904814625, 0.42945291715441347], [0.5649679164193583, 0.4327055168102222], [0.8608226438766182, 0.5101250858088339], [0.7858425246198629, 0.5834789052376846], [0.26748688913419405, 0.5036198864972165], [0.044985981105785035, 0.50118043675536], [-0.251681896265427, 0.49792783709955124], [-0.8458308009218032, 0.5655896071307368]], "bottom_lip": [[0.8608226438766182, 0.5101250858088339], [0.6342559862784483, 0.8785204827809924], [0.26179483973652884, 1.0227886718968375], [-0.0348730376346832, 1.0195360722410287], [-0.25737394566309224, 1.0170966224991722], [-0.626582492549203, 0.8646969342438053], [-0.9191846203506541, 0.4906094878739816], [-0.8458308009218032, 0.5655896071307368], [-0.2557476458351879, 0.8687626838135662], [0.04092023153602416, 0.872015283469375], [0.2634211395644332, 0.8744547332112315], [0.7858425246198629, 0.5834789052376846]], "transform": {"center": [327.31944444444446, 152.25], "scale": 13.482280752533061, "angle": -0.010963335054971155}}, {"chin": [[-1.77729071467661, -0.8501572646507438], [-1.7173183623331516, -0.3747189869688358], [-1.7168843082265757, 0.011628870411036385], [-1.6569119558831173, 0.4870671480929443], [-1.5226252442702, 0.9772814868074291], [-1.2844720513226702, 1.333643168015572], [-0.897690139836222, 1.7195569712888683], [-0.49613216731719734, 2.0311564152927057], [-0.05024601170044268, 2.1198127814881658], [0.42519226598146526, 2.0598404291447068], [0.8706443674916442, 1.7621489379602948], [1.2417821097323636, 1.4496813857433057], [1.4790671944667417, 1.0333473521917043], [1.7311283402336965, 0.5426989593706439], [1.834560767461733, 0.02249844448443017], [1.848902774387734, -0.43816377216490116], [1.8780208423463112, -0.9731403480836915]], "left_eyebrow": [[-1.4361391486076194, -1.4003439557086867], [-1.2431822469709712, -1.5937349114519108], [-1.0054631081300172, -1.6237210876236399], [-0.6934296100196042, -1.6389312027627922], [-0.4109482339743444, -1.5055125993630267]], "right_eyebrow": [[0.37652354181797654, -1.5806950668456374], [0.6437948027240838, -1.7593099615562848], [0.9410522398019202, -1.7002057174259784], [1.2383096768797568, -1.6411014732956717], [1.50601499189244, -1.4333685106264469]], "nose_bridge": [[-0.02416632248789638, -1.1195987960897305], [-0.023732268381320504, -0.7332509387098582], [-0.02329821427474464, -0.34690308132998604], [-0.08240245840505123, -0.04964564425214958]], "nose_tip": [[-0.3496737193111585, 0.1289692504584978], [-0.2010450007722403, 0.1585213725236511], [-0.06719234326589871, 0.2623878538582635], [0.1853028566076319, 0.15808731841707524], [0.3487076361791268, 0.11332508121276941]], "left_eye": [[-1.1979859556600896, -1.0439822745005438], [-0.9307146947539824, -1.222597169211191], [-0.707771616945605, -1.178268986113461], [-0.5143806612023809, -0.985312084476813], [-0.7373237390107583, -1.0296402675745429], [-0.9750428778517123, -0.9996540914028138]], "right_eye": [[0.49603419239831736, -1.0161663688616938], [0.6889910940349655, -1.2095573246049178], [0.9267102328759196, -1.239543500776647], [1.1201011886191434, -1.0465865991399987], [0.9566964090476487, -1.0018243619356932], [0.7189772702066947, -0.9718381857639639]], "top_lip": [[-0.8246779428864905, 0.5752894601818282], [-0.49786838374350084, 0.48576498577321675], [-0.24537318386997023, 0.38146445033202836], [-0.03720616709416954, 0.5001069926992174], [0.28960339204882024, 0.4105825182906059], [0.5868608291266566, 0.46968676242091245], [0.8545661441393397, 0.6774197250901373], [0.7802517848698807, 0.6626436640575606], [0.2600512699836669, 0.559211236829524], [0.022332131142712916, 0.5891974130012533], [-0.20061094666566442, 0.5448692299035234], [-0.6760492243475724, 0.6048415822469816]], "bottom_lip": [[0.8545661441393397, 0.6774197250901373], [0.5577427611680793, 1.004663338339703], [0.21615714099251282, 1.1685021720177737], [-0.02156199784844115, 1.1984883481895028], [-0.24450507565681848, 1.1541601650917728], [-0.6013008109715374, 1.0059655006594306], [-0.8246779428864905, 0.5752894601818282], [-0.6760492243475724, 0.6048415822469816], [-0.2744912518285476, 0.9164410262508189], [-0.05154817402017031, 0.9607692093485488], [0.2604853240902427, 0.9455590942093963], [0.7802517848698807, 0.6626436640575606]], "transform": {"center": [473.19444444444446, 180.43055555555554], "scale": 13.197992943887854, "angle": -0.196272080281759}}, {"chin": [[-1.967308766341375, -0.8617181783348584], [-1.9118294469388408, -0.3845009709056665], [-1.777464112293666, 0.09661735249687635], [-1.7258859088644825, 0.6527205751687084], [-1.5876194582459568, 1.054952883328611], [-1.3704669923847912, 1.4610863074618647], [-0.9127553648223541, 1.8000370642725312], [-0.44724150531321505, 1.9812157905979169], [0.022173470169274928, 2.083508501680663], [0.4993906775984668, 2.0280291822781282], [0.9094252177050713, 1.7319907011743225], [1.2405737425690357, 1.4320511040971657], [1.4178513529210708, 1.0454232598306668], [1.599030079246457, 0.5799094003215278], [1.6224367750865627, 0.10659330886568687], [1.7247294861693083, -0.3628216666168031], [1.7481361820094141, -0.8361377580726441]], "left_eyebrow": [[-1.5494719942880688, -1.3155286899239444], [-1.3799966158827355, -1.5443845037051631], [-1.056650322965473, -1.6865520702970396], [-0.6583191307789212, -1.745932505672925], [-0.3505773017550625, -1.5725560112942407]], "right_eyebrow": [[0.43828285067133904, -1.5335448515607313], [0.6827431283459614, -1.6796135341259588], [1.081074320532513, -1.7389939695018444], [1.388816149556372, -1.5656174751231602], [1.5348848321215993, -1.3211571974485377]], "nose_bridge": [[0.024347194591383528, -1.1586203552142853], [0.008742730697979734, -0.8430762942437248], [0.0720242820472161, -0.5236311172998133], [0.052518702180461355, -0.12920104108661243]], "nose_tip": [[-0.34971360597944134, 0.009065409531913135], [-0.195842691467512, 0.09575365672125519], [0.03691423828705755, 0.1863430198839482], [0.1985873847456888, 0.11525923658800993], [0.36026053120432006, 0.044175453292071676]], "left_eye": [[-1.1667452659949207, -1.0593650643292694], [-0.9261861042936493, -1.1265477316518564], [-0.6856269425923779, -1.1937303989744439], [-0.45677112881115933, -1.0242550205691108], [-0.6973302905124308, -0.9570723532465235], [-0.9339883362403513, -0.9687757011665763]], "right_eye": [[0.4898610541005226, -0.9774416288888994], [0.7343213317751449, -1.1235103114541267], [0.9709793775030654, -1.111806963534074], [1.1248502920149948, -1.0251187163447317], [0.9631771455563635, -0.9540349330487937], [0.726519099828443, -0.9657382809688466]], "top_lip": [[-0.8542386252220899, 0.6167468356329286], [-0.5308923323048274, 0.4745792690410522], [-0.21144715536091577, 0.41129771769181583], [0.025210890367004708, 0.4230010656118687], [0.2618689360949252, 0.4347044135319215], [0.5774129970654858, 0.4503088774253253], [0.8851548260893445, 0.6236853718040094], [0.7273827956040642, 0.6158831398573075], [0.2540667041482233, 0.5924764440172018], [0.01740865842030281, 0.5807730960971489], [-0.21924938730761767, 0.5690697481770961], [-0.7753526099794498, 0.6206479516062796]], "bottom_lip": [[0.8851548260893445, 0.6236853718040094], [0.6328923164680202, 0.9275260848545172], [0.3095460235507577, 1.0696936514463937], [0.06898686184948633, 1.136876318768981], [-0.24655719912107432, 1.1212718548755771], [-0.554299028144933, 0.9478953604968932], [-0.8542386252220899, 0.6167468356329286], [-0.7753526099794498, 0.6206479516062796], [-0.23485385120102148, 0.8846138091476567], [0.0018041945268990126, 0.8963171570677095], [0.31734825549745965, 0.9119216209611134], [0.7273827956040642, 0.6158831398573075]], "transform": {"center": [722.4166666666666, 109.66666666666667], "scale": 12.661045902030898, "angle": -0.04941231327870112}}, {"chin": [[-1.711866530152148, -1.02450505814229], [-1.748750016156577, -0.48440021832451535], [-1.7032065984721194, -0.016184143337218584], [-1.657663180787662, 0.4520319316500781], [-1.4578040945838406, 0.9307861454957831], [-1.175518104691133, 1.3376515945110101], [-0.887963045369221, 1.667359209266555], [-0.44609231752794487, 2.0076049628805084], [0.01158561860094362, 2.1163772137154155], [0.4850707630174445, 1.9936759617712756], [0.8919362120326715, 1.7113899718785677], [1.2988016610478985, 1.4291039819858602], [1.6390474146618517, 0.987233254144584], [1.8249774997564407, 0.5348243874448996], [1.9390188200205518, -1.1382943670978918e-05], [2.0530601402846624, -0.5348471533322416], [2.089943626289091, -1.0749519931500162]], "left_eyebrow": [[-1.5417436533451714, -1.2454404220629283], [-1.3663517071089908, -1.5435336202432484], [-1.0524513006410583, -1.599615176786114], [-0.7438199636023298, -1.5785388990692975], [-0.44572676542200973, -1.4031469528331166]], "right_eyebrow": [[0.3311206466040155, -1.4276140928007575], [0.6502901225011521, -1.5608534836033052], [1.041348363228767, -1.611665970716967], [1.344710630838291, -1.5134318587404683], [1.6428038290186113, -1.3380399125042874]], "nose_bridge": [[-0.08101387184041561, -1.0681702686483676], [-0.10209014955723211, -0.7595389316096393], [-0.12843549670325274, -0.3737497603112287], [-0.14951177442006924, -0.06511842327250028]], "nose_tip": [[-0.47395031974641005, 0.14527880178972952], [-0.3196346512270458, 0.15581694064813778], [-0.09343021787720365, 0.24878198319543227], [0.06615452007136469, 0.1821622877941584], [0.30289709227961514, 0.12081166182208869]], "left_eye": [[-1.1664926209051691, -1.0647794063975433], [-0.9297500486969188, -1.126130032369613], [-0.6982765459178724, -1.1103228240820007], [-0.47207211256803033, -1.0173577815347061], [-0.7088146847762806, -0.9560071555626364], [-0.940288187555327, -0.9718143638502488]], "right_eye": [[0.4590909679773591, -1.0312867826439387], [0.7011026096148136, -1.1697952428756904], [0.93257611239386, -1.1539880345880782], [1.1587805457437022, -1.0610229920407839], [0.999195807795134, -0.9944032966395099], [0.7677223050160875, -1.0102105049271222]], "top_lip": [[-0.8913539076200453, 0.5818804602018015], [-0.5774535011521128, 0.5257989036589359], [-0.34071092894386235, 0.4644482776868662], [-0.11450649559402015, 0.5574133202341607], [0.1993939108739124, 0.5013317636912951], [0.5904521516015271, 0.4505192765776336], [0.8938144192110514, 0.5487533885541322], [0.8166565849513693, 0.5434843191249281], [0.18885577201550413, 0.6556474322106592], [-0.04261773076354218, 0.6398402239230468], [-0.27409123354258846, 0.6240330156354346], [-0.7370382391006811, 0.5924185990602098]], "bottom_lip": [[0.8938144192110514, 0.5487533885541322], [0.6359955692859844, 0.9187353515649304], [0.23439918969996149, 1.1238635071979561], [-0.07423214733876694, 1.1027872294811396], [-0.30570565011781325, 1.0869800211935272], [-0.6090679177273376, 0.9887459092170285], [-0.8913539076200453, 0.5818804602018015], [-0.7370382391006811, 0.5924185990602098], [-0.28989844183020086, 0.8555065184144809], [-0.06369400848035868, 0.9484715609617752], [0.2502063979875738, 0.8923900044189097], [0.8166565849513693, 0.5434843191249281]], "transform": {"center": [629.9861111111111, 133.70833333333334], "scale": 12.930331779899216, "angle": -0.0681836346559226}}, {"chin": [[-1.9948276761912056, -0.9364518185163971], [-1.98424322498188, -0.38994480886385885], [-1.8991284364124383, 0.09624206035096095], [-1.8211187463041956, 0.6498541684646982], [-1.5940483814757198, 1.0828259957029986], [-1.232127538849409, 1.5300080198636972], [-0.8559964993007008, 1.8423395662265607], [-0.40533512239187586, 2.0943509721517057], [-0.007888787459570418, 2.2044068018178176], [0.4854031802164484, 2.051866774349458], [0.8509497685558315, 1.817691311059783], [1.2307065538176123, 1.4486653699722736], [1.543038100180476, 1.072534330423565], [1.7276242672067037, 0.6147678550535413], [1.7844650548962957, 0.07536594386220194], [1.8342007441246886, -0.39661072843021994], [1.823616292915363, -0.9431177380827582]], "left_eyebrow": [[-1.6824961298283423, -1.3125828580651056], [-1.4518000192867941, -1.5609685182771784], [-1.1075687263310081, -1.5928682648701007], [-0.6959121944763046, -1.6176629130018243], [-0.36589109844291645, -1.5147121817969118]], "right_eyebrow": [[0.375786529445175, -1.436556098723723], [0.72712292086216, -1.5358810842155628], [1.064249115356747, -1.500355591909568], [1.394270211390135, -1.3974048607046556], [1.5752306327032903, -1.1738138486243064]], "nose_bridge": [[0.06345498308231143, -1.0604250591750146], [0.03503458923751548, -0.7907241035793449], [0.07403943429163692, -0.5139180495224761], [0.04561904044684098, -0.2442170939268066]], "nose_tip": [[-0.38735278679145946, -0.017146729098330878], [-0.18507707009470722, 0.004168566285266087], [0.010093548140846035, 0.09290910056778046], [0.21947436329879724, 0.046799157052460016], [0.4288551784567485, 0.00068921353713957]], "left_eye": [[-1.2318347529195173, -1.0605714521399605], [-0.9550286988626485, -1.099576297194082], [-0.7527529821658965, -1.078261001810485], [-0.49015712503142583, -0.9824153690667715], [-0.7669631790882945, -0.9434105240126501], [-0.9692388957850465, -0.9647258193962471]], "right_eye": [[0.5283265569135344, -0.9432641310477042], [0.7448124705326845, -1.056799313461942], [0.9470881872294368, -1.0354840180783451], [1.2096840443639074, -0.9396383853346317], [1.0003032292059562, -0.8935284418193112], [0.7306022736102865, -0.9219488356641072]], "top_lip": [[-0.8558501063357549, 0.5470498302247319], [-0.5648338553564881, 0.3731945073727756], [-0.21349746393950317, 0.27386952188093566], [0.05620349165616648, 0.3022899157257316], [0.2584792083529187, 0.3236052111093286], [0.5956054028475057, 0.35913070341532355], [0.8439910630595784, 0.5898268139568718], [0.776565824160661, 0.5827217154956728], [0.24426901143052074, 0.4584556889071635], [0.0419932947337685, 0.4371403935235665], [-0.16028242196298373, 0.41582509813996954], [-0.7884248674368375, 0.5541549286859309]], "bottom_lip": [[0.8439910630595784, 0.5898268139568718], [0.6061898540568312, 0.9056377130678619], [0.2477483641786472, 1.072387937458619], [0.045472647481895015, 1.051072642075022], [-0.22422830811377464, 1.022652248230226], [-0.5542494041471626, 0.9197015170253138], [-0.8558501063357549, 0.5470498302247319], [-0.7884248674368375, 0.5541549286859309], [-0.21001811119137667, 0.8878017704323914], [-0.007742394494624438, 0.9091170658159884], [0.2690636595622442, 0.8701122207618669], [0.776565824160661, 0.5827217154956728]], "transform": {"center": [160.70833333333334, 186.65277777777777], "scale": 14.749574957257348, "angle": -0.1049899582039885}}, {"chin": [[-2.231700931768745, -0.8795474566834093], [-2.161241709753566, -0.371068260520327], [-2.0907824877383874, 0.13741093564275533], [-2.0203232657232086, 0.6458901318058377], [-1.804366207060623, 1.0823836417480581], [-1.4429113117506303, 1.4468914654694165], [-0.9359585797932312, 1.7394136029699132], [-0.4283952621535588, 1.8867431966641397], [0.07947334832725036, 1.9614765184552312], [0.5153562725871976, 1.8907120035989156], [0.8792535106262829, 1.6744496520951935], [1.1708597696033698, 1.3852857358471997], [1.3901750495184582, 1.0232202548549338], [1.5371993503715478, 0.5882532091183964], [1.5390311074183676, 0.15267557769958573], [1.6134591363683224, -0.28259676087808827], [1.615290893415142, -0.7181743922968988]], "left_eyebrow": [[-1.6484884138145717, -1.4578752891793973], [-1.4294784267406195, -1.747344498268528], [-1.0664970672249443, -1.7458180340628449], [-0.6312247286472703, -1.67139000511289], [-0.3414502267170031, -1.5249762899420731]], "right_eyebrow": [[0.4568034713763464, -1.4490217967864358], [0.74779914467116, -1.5929931692281594], [1.0381842322837005, -1.591771997863613], [1.3282640270551043, -1.5179545545959312], [1.472540692337965, -1.2995551532042529]], "nose_bridge": [[0.09260094049612451, -1.1601631733795783], [0.1636707481935766, -0.7968765210227662], [0.16244957682903016, -0.5064914334102257], [0.2338246773676188, -0.21580105295654872]], "nose_tip": [[-0.2752651044777367, -0.0001492871350996603], [-0.05778158160946803, 0.07336286329144527], [0.1597019412588007, 0.1468750137179902], [0.30489448506507083, 0.1474855994002634], [0.4503923217124777, 0.07549991317940152]], "left_eye": [[-1.2144372466014437, -1.093062172616902], [-0.9960378452097653, -1.2373388378997625], [-0.77824902950036, -1.2364229593763527], [-0.561070799473228, -1.0903145370466725], [-0.7791649080237698, -1.0186341436669475], [-0.9969537237331751, -1.0195500221903573]], "right_eye": [[0.527567986232662, -1.0131388725264885], [0.7456620947832038, -1.0848192659062137], [0.9634509104926091, -1.083903387382804], [1.1806291405197413, -0.9377949650531239], [0.9625350319691993, -0.8661145716733984], [0.7450515091009305, -0.9396267220999435]], "top_lip": [[-0.7138956643079134, 0.7239816748494318], [-0.3503037191099647, 0.5803155952488446], [-0.05961333865628768, 0.5089404947102558], [0.15787018421198104, 0.5824526451368008], [0.3030627280182512, 0.5830632308190741], [0.52054625088652, 0.6565753812456189], [0.7380297737547886, 0.730087531672164], [0.5928372299485184, 0.7294769459898908], [0.30245214233597795, 0.7282557746253443], [0.0846633266265727, 0.7273398961019345], [-0.0605292171796975, 0.7267293104196613], [-0.6412993924047783, 0.7242869676905684]], "bottom_lip": [[0.7380297737547886, 0.730087531672164], [0.5199356652042467, 0.8017679250518891], [0.30184155665370477, 0.8734483184316144], [0.1566490128474346, 0.8728377327493412], [-0.06113980286197072, 0.8719218542259314], [-0.3512195976333745, 0.7981044109582498], [-0.7138956643079134, 0.7239816748494318], [-0.6412993924047783, 0.7242869676905684], [-0.06022392433856089, 0.654133038516526], [0.15756489137084442, 0.6550489170399358], [0.30275743517711456, 0.6556595027222091], [0.5928372299485184, 0.7294769459898908]], "transform": {"center": [95.79166666666667, 90.98611111111111], "scale": 13.774690234244208, "angle": -0.004205326712419358}}, {"chin": [[-1.8593233096700956, -0.8596616115423852], [-1.881592577663214, -0.3245762368685803], [-1.81557587354935, 0.14986197572326693], [-1.7495591694354855, 0.624300188315114], [-1.6090758982271511, 1.1125578059194738], [-1.2920206828048504, 1.4795210993599186], [-0.9004989002880796, 1.8603037978128762], [-0.4813383077462833, 2.092153362076893], [0.02610825690249602, 2.263355764258953], [0.514365874506856, 2.1228724930506178], [0.9419763300292584, 1.8941032497353003], [1.2482924613877455, 1.4887620622060167], [1.5546085927462328, 1.083420874676733], [1.6375250228213092, 0.6366214721099113], [1.7204414528963854, 0.18982206954308956], [1.7288913158769912, -0.270796738036245], [1.8256271509645803, -0.7920627076975371]], "left_eyebrow": [[-1.5391877732990955, -1.339469366166139], [-1.334977019060104, -1.6096968245189947], [-1.0094719406571975, -1.7033523386578846], [-0.6371391051848461, -1.6342553135953208], [-0.35309224181947757, -1.5045111264507998]], "right_eyebrow": [[0.25645969994879747, -1.4684224534451682], [0.581964778351704, -1.562077967584058], [0.9681170188365683, -1.5674475096159646], [1.2521638822019368, -1.4377033224714435], [1.4341053684478096, -1.1728454061504947]], "nose_bridge": [[-0.036037026397176986, -1.137547833010355], [-0.003028674340244869, -0.9003287267144314], [0.016160272704174555, -0.5886430533240374], [0.03534921974859398, -0.2769573799336436]], "nose_tip": [[-0.3784418307612956, -0.12265470371279627], [-0.16886153449039748, -0.006729921580787824], [0.054538166793013404, 0.03472829345675033], [0.21729070599446673, -0.012099463612694525], [0.38004324519592, -0.05892722068213939]], "left_eye": [[-1.1200271807572992, -1.1076198019021222], [-0.9434552365433333, -1.2289141260660372], [-0.7200555352599224, -1.187455911028499], [-0.5987612110960072, -1.010883966814533], [-0.7476943452849478, -1.0385227768395586], [-0.9849134515808715, -1.0055144247826264]], "right_eye": [[0.47140953825160226, -0.9663454308282956], [0.7224480495600387, -1.073820349979698], [0.8713811837489793, -1.0461815399546726], [1.0809614800198775, -0.9302567578226643], [0.9320283458309369, -0.9578955678476897], [0.6948092395350133, -0.9248872157907574]], "top_lip": [[-0.8889687163587743, 0.5529139421693432], [-0.549644232943355, 0.3847918609359831], [-0.23795855955296108, 0.36560291389156363], [0.05990770882492012, 0.4208805339416145], [0.2971268151208437, 0.38787218188468237], [0.6694596505931952, 0.45696920694724597], [0.9535065139585638, 0.5867133940917671], [0.8790399468640934, 0.5728939890792544], [0.3439545721902886, 0.5506247210861357], [0.0460883038124074, 0.4953471010360848], [-0.19113080248351622, 0.528355453093017], [-0.814502149264304, 0.5667333471818559]], "bottom_lip": [[0.9535065139585638, 0.5867133940917671], [0.6610097876125892, 0.9175880145265805], [0.3216853041971699, 1.0857100957599404], [0.009999630806775961, 1.10489904280436], [-0.21340007047663495, 1.063440827766822], [-0.5719135009364736, 0.9198772356097878], [-0.8889687163587743, 0.5529139421693432], [-0.814502149264304, 0.5667333471818559], [-0.24640842253356707, 0.8262217214708981], [0.05145784584431412, 0.881499341520949], [0.2886769521402377, 0.8484909894640169], [0.8790399468640934, 0.5728939890792544]], "transform": {"center": [248.20833333333334, 90.68055555555556], "scale": 13.203410696193075, "angle": -0.18349120961794116}}, {"chin": [[-1.617020160071279, -0.8300283300650086], [-1.640710668897071, -0.407519556414437], [-1.6644011777228627, 0.014989217236134666], [-1.5238262788535843, 0.5314759491471374], [-1.3785132782191476, 0.9634609263280256], [-1.0641967681244822, 1.4049221070392308], [-0.660640401534544, 1.7666196347854801], [-0.33684768790956177, 2.0390773060364564], [0.08092298397585151, 2.1472695695923627], [0.5974097158868542, 2.0066946707230846], [1.1186345495630152, 1.7816180171236917], [1.5553576285090622, 1.5518032617591404], [1.996818809220267, 1.237486751664475], [2.194250929271446, 0.7399524268141059], [2.3071812945925103, 0.23768000019857827], [2.2511081504533466, -0.274068629947266], [2.3593004140092524, -0.6918393018326794]], "left_eyebrow": [[-1.5040897947502143, -1.3323007566805363], [-1.2363702252643962, -1.571591715575404], [-0.9781268593088949, -1.6418791650100433], [-0.6401198403884376, -1.6229267579494098], [-0.3068509232331386, -1.519472596158662]], "right_eyebrow": [[0.11565785041743298, -1.49578208733287], [0.3786393181380927, -1.6505712914976236], [0.8058861935538227, -1.711382537401946], [1.223656865439236, -1.6031902738460397], [1.5474495790642182, -1.3307326025950632]], "nose_bridge": [[-0.24130157556365775, -1.1767274754730463], [-0.2602539826242913, -0.838720456552589], [-0.2744682879197664, -0.585215192362246], [-0.2886825932152415, -0.331709928171903]], "nose_tip": [[-0.47190040797094535, -0.08768086751187673], [-0.3921367550059894, 0.0015589889833959626], [-0.22313324554576075, 0.01103519251371271], [-0.054129736085532086, 0.020511396044029462], [0.20411362986996928, -0.04977605339060973]], "left_eye": [[-1.095795326395118, -1.0551049836644013], [-0.9220537151697309, -1.130130534864199], [-0.7530502057095022, -1.1206543313338821], [-0.5887847980144318, -1.026676373073451], [-0.762526409239819, -0.9516508218736536], [-0.9315299187000476, -0.9611270254039703]], "right_eye": [[0.4204981569817816, -0.8853173971614363], [0.5942397682071687, -0.9603429483612338], [0.8477450323975116, -0.9461286430657587], [1.012010440092582, -0.8521506848053277], [0.8430069306323532, -0.8616268883356444], [0.5895016664420103, -0.8758411936311196]], "top_lip": [[-0.678808731552441, 0.5788569667987211], [-0.5003290185618956, 0.41932966086880924], [-0.3313255091016669, 0.428805864399126], [-0.16232199964143829, 0.43828206792944274], [0.09118326454890469, 0.45249637322491787], [0.4244521817042036, 0.5559505350156657], [0.8422228535896168, 0.6641427985715719], [0.6732193441293882, 0.6546665950412551], [0.08170706101858793, 0.6214998826851466], [-0.17179820317175504, 0.6072855773896714], [-0.34080171263198367, 0.5978093738593546], [-0.5943069768223267, 0.5835950685638795]], "bottom_lip": [[0.8422228535896168, 0.6641427985715719], [0.4054997746435701, 0.893957553936123], [0.06275465395795443, 0.9595069016056038], [-0.10624885550227421, 0.9500306980752871], [-0.2752523649625029, 0.9405544945449703], [-0.5192814256225291, 0.7573366797892664], [-0.678808731552441, 0.5788569667987211], [-0.5943069768223267, 0.5835950685638795], [-0.35027791616230036, 0.7668128833195832], [-0.09677265197195746, 0.7810271886150584], [0.07223085748827118, 0.7905033921453751], [0.6732193441293882, 0.6546665950412551]], "transform": {"center": [567.625, 91.72222222222223], "scale": 11.81551459018456, "angle": -0.056012394714385905}}, {"chin": [[-1.8142388501738926, -0.7103567585987939], [-1.768512816428285, -0.22044323548050118], [-1.6411345288296288, 0.2618492820135236], [-1.603029500708289, 0.6701105512787675], [-1.4756512131096329, 1.1524030687727924], [-1.2818626829064637, 1.4637700729364516], [-0.8507383967684159, 1.6706218063742582], [-0.501266364483417, 1.8850945454363328], [-0.003731835740856393, 1.921020765543774], [0.4861816873774363, 1.8752947317981665], [0.9684742048714612, 1.74791644419951], [1.4431457167412178, 1.538885902747805], [1.7392707096563416, 1.1817928648385383], [1.946122443094148, 0.7506685787004905], [1.9896696688258573, 0.33478630381097874], [2.025595888933298, -0.16274822493158186], [2.0615221090407396, -0.6602827536741425]], "left_eyebrow": [[-1.607387116736086, -1.1414810447368415], [-1.4745666315270602, -1.4833320713975726], [-1.1631996273634009, -1.6771206016007418], [-0.754938358098157, -1.7152256297220814], [-0.41308733143742604, -1.5824051445130556]], "right_eyebrow": [[0.329403958864281, -1.5693419412784182], [0.6407709630279403, -1.7631304714815874], [1.1383054917705007, -1.7272042513741461], [1.480156518431232, -1.5943837661651203], [1.673945048634401, -1.283016762001461]], "nose_bridge": [[-0.040752282279623325, -1.1229756438918346], [-0.017889265406819538, -0.8780188823326882], [-0.07667850238706456, -0.625441115149274], [-0.04619447988999284, -0.29883209973707886]], "nose_tip": [[-0.423971726658165, 0.0658819437964559], [-0.2606672189520675, 0.050639932547920055], [-0.089741705621702, 0.11705017515243299], [0.15521505593744434, 0.0941871582796292], [0.3185195636435419, 0.07894514703109336]], "left_eye": [[-1.1762628305980383, -0.9346293112990347], [-1.0282003341404766, -1.1131758302536683], [-0.7832435725813303, -1.1360388471264722], [-0.523044799773648, -0.9955973562931781], [-0.7603805557085265, -0.8910820855673256], [-1.0053373172676727, -0.8682190686945219]], "right_eye": [[0.46440325208720523, -1.0053971699313446], [0.6941180023978157, -1.1915646945102458], [1.028348023434279, -1.1403964631542687], [1.2068945423889121, -0.9923339666967071], [0.9695587864540338, -0.8878186959708546], [0.7169810192706195, -0.9466079329510996]], "top_lip": [[-0.7788859565535334, 0.6755527488891371], [-0.5491712062429229, 0.4893852243102357], [-0.3042144446837766, 0.4665222074374319], [-0.051636677500362355, 0.525311444417677], [0.19332008405878398, 0.5024484275448732], [0.4382768456179304, 0.4795854106720694], [0.7801278722786613, 0.6124058958810952], [0.6984756184256126, 0.6200269015053631], [0.2085620953073198, 0.6657529352509707], [-0.03639466625182651, 0.6886159521237745], [-0.2889724334352408, 0.6298267151435295], [-0.6972337027004847, 0.667931743264869]], "bottom_lip": [[0.7801278722786613, 0.6124058958810952], [0.46876086811500206, 0.8061944260842645], [0.14215185270280692, 0.8366784485813362], [-0.10280490885633944, 0.85954146545414], [-0.27373042218670496, 0.793131222849627], [-0.5263081893701191, 0.734341985869382], [-0.7788859565535334, 0.6755527488891371], [-0.6972337027004847, 0.667931743264869], [-0.2889724334352408, 0.6298267151435295], [-0.04401567187609444, 0.6069636982707257], [0.11928883583000313, 0.5917216870221899], [0.6984756184256126, 0.6200269015053631]], "transform": {"center": [897.2222222222222, 97.68055555555556], "scale": 12.194060832994293, "angle": 0.0930652900702675}}, {"chin": [[-1.5951821405823876, -0.7626645304056091], [-1.5828379518006108, -0.2667799051736439], [-1.5014165578116645, 0.15650060377064387], [-1.419995163822718, 0.5797811127149316], [-1.267733109086348, 1.0012981661189657], [-1.044630393602554, 1.4210517639827458], [-0.7524504729115905, 1.7682012455588485], [-0.39119334701345726, 2.0427466108472734], [0.03561407301133822, 2.103006538353174], [0.45889458195562594, 2.0215851443642276], [0.9494888405668297, 1.7967189733401803], [1.2966383221429323, 1.5045390526492166], [1.7146284644664587, 1.2105956764179995], [1.9165697134672068, 0.7802613453126963], [2.1167475069277004, 0.27908635345996957], [2.1044033181459234, -0.2167982717719956], [2.092059129364147, -0.7126828970039608]], "left_eyebrow": [[-1.4658450078693173, -1.262076066718082], [-1.3329809640757395, -1.6198062815357075], [-1.0531452321665526, -1.7685414251915703], [-0.6989419284294346, -1.7773587028928395], [-0.3412117136118089, -1.644494659099261]], "right_eyebrow": [[0.2255135723675799, -1.6586023034212918], [0.5761899650241903, -1.8091009026174083], [1.001233929508732, -1.8196816358589312], [1.3607275998666113, -1.6159769313179293], [1.5112261990627276, -1.265300538661319]], "nose_bridge": [[-0.11810899812801516, -1.224741061235481], [-0.10929172042674604, -0.870537757498363], [-0.17307855901315433, -0.5854116589684148], [-0.1642612813118852, -0.23120835523129682]], "nose_tip": [[-0.5114107628879878, 0.060971565459666734], [-0.29712532510546324, 0.12652185958632883], [-0.08283988732293866, 0.19207215371299097], [0.12791863937907832, 0.1159411263448059], [0.3386771660810953, 0.03981009897662083]], "left_eye": [[-1.104587881971184, -0.9875307014296568], [-0.9664334715568447, -1.1327389340050116], [-0.7539114893145739, -1.1380293006257731], [-0.5378625959917952, -1.0016383457516875], [-0.7503845782340661, -0.996347979130926], [-0.9629065604763369, -0.9910576125101644]], "right_eye": [[0.4539066544721351, -1.026326723315241], [0.6629017256338983, -1.1732984114308496], [0.875423707876169, -1.178588778051611], [1.0914726011989477, -1.0421978231775255], [0.8789506189566767, -1.036907456556764], [0.666428636714406, -1.0316170899360024]], "top_lip": [[-0.7789023060153979, 0.7055913343474944], [-0.5681437793133809, 0.6294603069793093], [-0.2865445918639403, 0.5515658240708704], [-0.1430998148288393, 0.6188795737377863], [0.06765871187317767, 0.5427485463696013], [0.4218620156102956, 0.5339312686683322], [0.7778287748876676, 0.5959546517144866], [0.6361474533928204, 0.5994815627949943], [0.06942216741343149, 0.6135892071170249], [-0.14133635928858548, 0.68972023448521], [-0.28301768078343265, 0.6932471455657176], [-0.7080616452679743, 0.7038278788072406]], "bottom_lip": [[0.7778287748876676, 0.5959546517144866], [0.4271523822310571, 0.746453250910603], [0.1473166503218704, 0.8951883945664656], [-0.0652053319204004, 0.900478761187227], [-0.2777273141626712, 0.9057691278079885], [-0.4920127519451958, 0.8402188336813264], [-0.7789023060153979, 0.7055913343474944], [-0.7080616452679743, 0.7038278788072406], [-0.28125422524317883, 0.7640878063131412], [-0.06873224300090805, 0.7587974396923798], [0.14378973924136276, 0.7535070730716183], [0.6361474533928204, 0.5994815627949943]], "transform": {"center": [425.2361111111111, 69.31944444444444], "scale": 14.11181510711092, "angle": 0.024888127816916374}}]}
]
<head>
<style> body {padding: 0; margin: 0;} </style>
</head>
<body style="background-color:white">
<img src="same_pose.jpg" width="960" height="500"/><br>
Same Pose
<hr>
<img src="same_subject.jpg" width="960" height="500"/><br>
Same Subject
<p>
<a href="index.html">program</a>
</body>
// 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
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