Slide 1

Slide 1 text

Cognitives Services Paris #2 Sylvain Pontoreau At ZENIKA

Slide 2

Slide 2 text

Premier Field Engineer Apps Domain

Slide 3

Slide 3 text

No content

Slide 4

Slide 4 text

Microsoft's vision reset comes after CEO of Google began saying that the world is shifting from being mobile-first to AI-first.

Slide 5

Slide 5 text

No content

Slide 6

Slide 6 text

No content

Slide 7

Slide 7 text

COMPUTER VISION CONTENT MODERATOR FACE EMOTION VIDEO INDEXER CUSTOM VISION

Slide 8

Slide 8 text

"a cat lying on a bed" with probability of 87% Description - "indoor" with probability of 94% - "cat" with probability of 94% Tags - "animal_cat" with probability of 87% Category

Slide 9

Slide 9 text

- Our mission - Empower every person - and every organization - on the planet to - achieve more. Text - HELLO COGNITIVES - SERVICES - PARIS Text

Slide 10

Slide 10 text

JSON { "boundingBox": [1112, 597, 1360, 596, 1361, 614, 1113, 615], "text": "Dossier UWUTWL", "words": [{ "boundingBox": [1115, 594, 1221, 596, 1218, 617, 1112, 615], "text": "Dossier" }, { "boundingBox": [1242, 596, 1364, 598, 1361, 620, 1239, 617], "text": "UWUTWL" }] }

Slide 11

Slide 11 text

"boundingBox": [1112, 597, 1360, 596, 1361, 614, 1113, 615]

Slide 12

Slide 12 text

https://westeurope.api.cognitive.microsoft.com/vision/v1.0/ocr URL - language - orientation detection Parameters URL / Stream Content Subscription key Header

Slide 13

Slide 13 text

male Gender 53 Age No Makeup Happiness Emotion No Beard Yes Smile Blond & Gray Hair color x=509, y=714 Nose tip

Slide 14

Slide 14 text

VS Probability 19%

Slide 15

Slide 15 text

VS Probability 79%

Slide 16

Slide 16 text

Detection Attributes Verification Similar Group ... Location and size Pose, Gender, Age, Hair … Authentication, Identity Match faces Goup by similarity

Slide 17

Slide 17 text

Emotion Probabilities Surprise "scores": { "anger": 9.29041E-06, "contempt": 0.000118981574, "disgust": 3.15619363E-05, "fear": 0.000589638, "happiness": 0.06630674, "neutral": 0.00555004273, "sadness": 7.44669524E-06, "surprise": 0.9273863 }

Slide 18

Slide 18 text

var client = new HttpClient(); client.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", "myKey"); string uri = "https://westeurope.api.cognitive.microsoft.com/emotion/v1.0/recognize?"; using (var content = new ByteArrayContent(myImageAsByteArray)) { content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream"); var response = await client.PostAsync(uri, content); var json = await response.Content.ReadAsStringAsync(); }

Slide 19

Slide 19 text

No content

Slide 20

Slide 20 text

1 1 1 1 1 2 2 2 2 2 2 ? =

Slide 21

Slide 21 text

Recall Precision k-fold cross validation

Slide 22

Slide 22 text

var client = new HttpClient(); client.DefaultRequestHeaders.Add("Prediction-Key", "myKey"); string uri = "https://southcentralus.api.cognitive.microsoft.com/customvision/v1.0/Prediction/{model_id}/image"; using (var content = new ByteArrayContent(myImageAsByteArray)) { content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream"); var response = await client.PostAsync(uri, content); var prediction = await response.Content.ReadAsStringAsync(); }

Slide 23

Slide 23 text

No content

Slide 24

Slide 24 text

https://microsoft.github.io/ELL/ Embedded Learning Library + =

Slide 25

Slide 25 text

https://azure.microsoft.com/en-us/services/cognitive-services/ Documentation https://azure.microsoft.com/en-us/try/cognitive-services/ Try it free

Slide 26

Slide 26 text

No content

Slide 27

Slide 27 text

No content