Mettre en place l'IA

Résolu
julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention   -  
julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention   - 6 janv. 2021 à 08:49
Bonjour, sur mon site web, j'aimerai mettre en place une intelligence artificielle. Je l'ai déjà créé mais je ne sais pas comment la lier au site web.
Le site web est en html et l'IA en javascript.
On m'a dit de mettre des bases de données mais j'ai quelques doutes. Voilà pourquoi je vous pose la question.
1)L'utilisateur entre sur le site, avec son image à faire analyser.
2) Il importe son image et clique sur analyser. L'IA entre en jeu.
3)Elle analyse l'image et je pense la fait correspondre avec une base de donnée.
4) Quand c'est terminé, l'utilisateur est redirigé vers une page de l'encyclopédie où il y a plein d'informations sur ça plante.
Voilà à peu près comment ça devrait se passer.

Dites moi si c'est faux. Sinon comment et avec quelle balise je met tout ça en place ?

3 réponses

jordane45 Messages postés 38480 Date d'inscription   Statut Modérateur Dernière intervention   4 746
 
Bonjour,

Tu travailles en "pur" javascript ou avec node.js ?

Si "pure" javascript ( vanilla... jquery...), sache que le javascript seul ne permet pas d'accéder à des données sur le serveur.
Donc, là, il faudra faire de l'ajax .. et côté serveur, disposer d'un langage serveur ( tel que le php, le python, le ruby .... )

En plus tu nous dis
Je l'ai déjà créé mais je ne sais pas comment la lier au site web.

Tu as créé quoi ? Elle fonctionne comment ? Elle attend quoi comme paramètres ? elle retourne quoi comme infos ? Elle est vraiment fonctionnelle ???


Elle analyse l'image et je pense la fait correspondre avec une base de donnée.

Donc, soit du node.js ... soit de l'ajax avec un langage serveur...
Et puis.. la bdd existe ?
Tu sais y faire des requête ?

J'ai bien peur que tu n'ais fait qu' 1% de ton programme ... et pour le reste... il va falloir que tu apprennes pas mal de choses...


1
julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention   23
 
merci pour ta réponse.Le " Elle" désigne L'IA donc l'intelligence artificielle. Hum...Elle est créé en JSON. Elle est prête à fonctionner enfin c'est un test elle n'est pas totalement complète. Je veux juste voir comment la mettre en place et comment elle marche. Si tout va bien, je la développerai plus.
Seulement il faut que je la lie au site web.Et là déjà c'est compliqué. Voici un aperçu du code :

<code js>"format": "graph-model", "generatedBy": "1.15.4", "convertedBy": "TensorFlow.js Converter v2.7.0", "userDefinedMetadata": {"signature": {"inputs": {"Image:0": {"name": "Image:0", "dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "-1"}, {"size": "224"}, {"size": "224"}, {"size": "3"}]}}}, "outputs": {"93e97695-b120-4ed4-89e2-f3cb90e1cd44/dense_2/Softmax:0": {"name": "93e97695-b120-4ed4-89e2-f3cb90e1cd44/dense_2/Softmax:0", "dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "-1"}, {"size": "4"}]}}}}}, "modelTopology": {"node": [{"name": "Image", "op": "Placeholder", "attr": {"dtype": {"type": "DT_FLOAT"}, "shape": {"shape": {"dim": [{"size": "-1"}, {"size": "224"}, {"size": "224"}, {"size": "3"}]}}}}, {"name": "conv1_conv/kernel", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "7"}, {"size": "7"}, {"size": "3"}, {"size": "64"}]}}}}}, {"name": "dense/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv1_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "dense_1/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv5_block3_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "dense_2/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "4"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv5_block3_3_conv/bias", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}}}, {"name": "dense_1/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv2_block1_0_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv2_block1_0_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv2_block1_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv2_block1_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/tf_op_layer_Mul/Mul/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/tf_op_layer_Sub/Sub/y", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv1_pad/Pad/paddings", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "4"}, {"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "4"}, {"size": "2"}]}}}, "dtype": {"type": "DT_INT32"}}}, {"name": "conv2_block2_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv2_block2_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv2_block3_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv2_block3_3_conv/bias", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "conv3_block1_0_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block1_0_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block1_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block1_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block2_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block2_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block3_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block3_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block4_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "128"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv3_block4_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block1_0_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block1_0_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block1_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block1_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block2_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block2_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block3_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block3_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block4_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block4_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block5_3_conv/kernel", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}}}, {"name": "conv4_block5_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block6_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv4_block6_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv5_block1_0_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv5_block1_0_conv/bias", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}}}, {"name": "conv5_block1_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv5_block1_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv5_block2_3_conv/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "conv5_block2_3_conv/bias", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/avg_pool/Mean/reduction_indices", "op": "Const", "attr": {"dtype": {"type": "DT_INT32"}, "value": {"tensor": {"dtype": "DT_INT32", "tensorShape": {"dim": [{"size": "2"}]}}}}}, {"name": "dense_2/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}, {"size": "4"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "dense/kernel", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}, {"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block6_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block6_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_2_conv/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block5_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block5_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "64"}, {"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block4_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_1_conv/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "256"}, {"size": "128"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block4_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block3_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block3_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block2_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block2_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "128"}, {"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "128"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "512"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block2_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block2_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block2_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block2_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block3_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block3_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block3_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block3_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block4_1_conv/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block4_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block4_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block4_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block5_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block5_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block5_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block5_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block6_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block6_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block6_2_conv/Conv2D_weights", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "256"}, {"size": "256"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block6_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block1_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "1024"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block1_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block1_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "512"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block1_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block2_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "2048"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block2_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block2_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "512"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block2_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block3_1_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1"}, {"size": "1"}, {"size": "2048"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block3_1_conv/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block3_2_conv/Conv2D_weights", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "3"}, {"size": "3"}, {"size": "512"}, {"size": "512"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "256"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block3_2_conv/Conv2D_bn_offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "512"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "64"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/post_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"dtype": {"type": "DT_FLOAT"}, "value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}}}, {"name": "saved_resnet_50_model/resnet50v2/post_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block3_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block3_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block2_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block2_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "2048"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block1_preact_bn/FusedBatchNormV3/Scaled", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv5_block1_preact_bn/FusedBatchNormV3/Offset", "op": "Const", "attr": {"value": {"tensor": {"dtype": "DT_FLOAT", "tensorShape": {"dim": [{"size": "1024"}]}}}, "dtype": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/tf_op_layer_Mul/Mul", "op": "Mul", "input": ["Image", "saved_resnet_50_model/tf_op_layer_Mul/Mul/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/tf_op_layer_Sub/Sub", "op": "Sub", "input": ["saved_resnet_50_model/tf_op_layer_Mul/Mul", "saved_resnet_50_model/tf_op_layer_Sub/Sub/y"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv1_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/tf_op_layer_Sub/Sub", "saved_resnet_50_model/resnet50v2/conv1_pad/Pad/paddings"], "attr": {"Tpaddings": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv1_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv1_pad/Pad", "conv1_conv/kernel", "conv1_conv/bias"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/pool1_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/resnet50v2/conv1_conv/BiasAdd", "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings"], "attr": {"T": {"type": "DT_FLOAT"}, "Tpaddings": {"type": "DT_INT32"}}}, {"name": "saved_resnet_50_model/resnet50v2/pool1_pool/MaxPool", "op": "MaxPool", "input": ["saved_resnet_50_model/resnet50v2/pool1_pad/Pad"], "attr": {"T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "data_format": {"s": "TkhXQw=="}, "ksize": {"list": {"i": ["1", "3", "3", "1"]}}, "padding": {"s": "VkFMSUQ="}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_preact_bn/FusedBatchNormV3/Mul", "op": "Mul", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_preact_bn/FusedBatchNormV3/Scaled", "saved_resnet_50_model/resnet50v2/pool1_pool/MaxPool"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_preact_bn/FusedBatchNormV3", "op": "Add", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_preact_bn/FusedBatchNormV3/Mul", "saved_resnet_50_model/resnet50v2/conv2_block1_preact_bn/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_preact_relu/Relu", "op": "Relu", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_preact_bn/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_0_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_preact_relu/Relu", "conv2_block1_0_conv/kernel", "conv2_block1_0_conv/bias"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_1_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_preact_relu/Relu", "saved_resnet_50_model/resnet50v2/conv2_block1_1_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv2_block1_1_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_2_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_1_relu/Relu", "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings"], "attr": {"Tpaddings": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_2_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_2_pad/Pad", "saved_resnet_50_model/resnet50v2/conv2_block1_2_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv2_block1_2_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_3_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_2_relu/Relu", "conv2_block1_3_conv/kernel", "conv2_block1_3_conv/bias"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block1_out/add", "op": "AddV2", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_0_conv/BiasAdd", "saved_resnet_50_model/resnet50v2/conv2_block1_3_conv/BiasAdd"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_preact_bn/FusedBatchNormV3/Mul", "op": "Mul", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_out/add", "saved_resnet_50_model/resnet50v2/conv2_block2_preact_bn/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_preact_bn/FusedBatchNormV3", "op": "Add", "input": ["saved_resnet_50_model/resnet50v2/conv2_block2_preact_bn/FusedBatchNormV3/Mul", "saved_resnet_50_model/resnet50v2/conv2_block2_preact_bn/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_preact_relu/Relu", "op": "Relu", "input": ["saved_resnet_50_model/resnet50v2/conv2_block2_preact_bn/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_1_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block2_preact_relu/Relu", "saved_resnet_50_model/resnet50v2/conv2_block2_1_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv2_block2_1_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_2_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/resnet50v2/conv2_block2_1_relu/Relu", "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings"], "attr": {"Tpaddings": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_2_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block2_2_pad/Pad", "saved_resnet_50_model/resnet50v2/conv2_block2_2_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv2_block2_2_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_3_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block2_2_relu/Relu", "conv2_block2_3_conv/kernel", "conv2_block2_3_conv/bias"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block2_out/add", "op": "AddV2", "input": ["saved_resnet_50_model/resnet50v2/conv2_block1_out/add", "saved_resnet_50_model/resnet50v2/conv2_block2_3_conv/BiasAdd"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/max_pooling2d/MaxPool", "op": "MaxPool", "input": ["saved_resnet_50_model/resnet50v2/conv2_block2_out/add"], "attr": {"data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "ksize": {"list": {"i": ["1", "1", "1", "1"]}}, "padding": {"s": "VkFMSUQ="}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_preact_bn/FusedBatchNormV3/Mul", "op": "Mul", "input": ["saved_resnet_50_model/resnet50v2/conv2_block2_out/add", "saved_resnet_50_model/resnet50v2/conv2_block3_preact_bn/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_preact_bn/FusedBatchNormV3", "op": "Add", "input": ["saved_resnet_50_model/resnet50v2/conv2_block3_preact_bn/FusedBatchNormV3/Mul", "saved_resnet_50_model/resnet50v2/conv2_block3_preact_bn/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_preact_relu/Relu", "op": "Relu", "input": ["saved_resnet_50_model/resnet50v2/conv2_block3_preact_bn/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_1_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block3_preact_relu/Relu", "saved_resnet_50_model/resnet50v2/conv2_block3_1_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv2_block3_1_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_2_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/resnet50v2/conv2_block3_1_relu/Relu", "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings"], "attr": {"T": {"type": "DT_FLOAT"}, "Tpaddings": {"type": "DT_INT32"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_2_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block3_2_pad/Pad", "saved_resnet_50_model/resnet50v2/conv2_block3_2_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv2_block3_2_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_3_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv2_block3_2_relu/Relu", "conv2_block3_3_conv/kernel", "conv2_block3_3_conv/bias"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv2_block3_out/add", "op": "AddV2", "input": ["saved_resnet_50_model/resnet50v2/conv2_block3_3_conv/BiasAdd", "saved_resnet_50_model/resnet50v2/max_pooling2d/MaxPool"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_preact_bn/FusedBatchNormV3/Mul", "op": "Mul", "input": ["saved_resnet_50_model/resnet50v2/conv2_block3_out/add", "saved_resnet_50_model/resnet50v2/conv3_block1_preact_bn/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_preact_bn/FusedBatchNormV3", "op": "Add", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_preact_bn/FusedBatchNormV3/Mul", "saved_resnet_50_model/resnet50v2/conv3_block1_preact_bn/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_preact_relu/Relu", "op": "Relu", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_preact_bn/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_0_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_preact_relu/Relu", "conv3_block1_0_conv/kernel", "conv3_block1_0_conv/bias"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_1_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_preact_relu/Relu", "saved_resnet_50_model/resnet50v2/conv3_block1_1_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv3_block1_1_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_2_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_1_relu/Relu", "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings"], "attr": {"Tpaddings": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_2_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_2_pad/Pad", "saved_resnet_50_model/resnet50v2/conv3_block1_2_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv3_block1_2_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_3_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_2_relu/Relu", "conv3_block1_3_conv/kernel", "conv3_block1_3_conv/bias"], "device": "/device:CPU:0", "attr": {"data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block1_out/add", "op": "AddV2", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_0_conv/BiasAdd", "saved_resnet_50_model/resnet50v2/conv3_block1_3_conv/BiasAdd"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_preact_bn/FusedBatchNormV3/Mul", "op": "Mul", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_out/add", "saved_resnet_50_model/resnet50v2/conv3_block2_preact_bn/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_preact_bn/FusedBatchNormV3", "op": "Add", "input": ["saved_resnet_50_model/resnet50v2/conv3_block2_preact_bn/FusedBatchNormV3/Mul", "saved_resnet_50_model/resnet50v2/conv3_block2_preact_bn/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_preact_relu/Relu", "op": "Relu", "input": ["saved_resnet_50_model/resnet50v2/conv3_block2_preact_bn/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_1_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block2_preact_relu/Relu", "saved_resnet_50_model/resnet50v2/conv3_block2_1_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv3_block2_1_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_2_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/resnet50v2/conv3_block2_1_relu/Relu", "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings"], "attr": {"Tpaddings": {"type": "DT_INT32"}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_2_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block2_2_pad/Pad", "saved_resnet_50_model/resnet50v2/conv3_block2_2_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv3_block2_2_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_3_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block2_2_relu/Relu", "conv3_block2_3_conv/kernel", "conv3_block2_3_conv/bias"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block2_out/add", "op": "AddV2", "input": ["saved_resnet_50_model/resnet50v2/conv3_block1_out/add", "saved_resnet_50_model/resnet50v2/conv3_block2_3_conv/BiasAdd"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_preact_bn/FusedBatchNormV3/Mul", "op": "Mul", "input": ["saved_resnet_50_model/resnet50v2/conv3_block2_out/add", "saved_resnet_50_model/resnet50v2/conv3_block3_preact_bn/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_preact_bn/FusedBatchNormV3", "op": "Add", "input": ["saved_resnet_50_model/resnet50v2/conv3_block3_preact_bn/FusedBatchNormV3/Mul", "saved_resnet_50_model/resnet50v2/conv3_block3_preact_bn/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_preact_relu/Relu", "op": "Relu", "input": ["saved_resnet_50_model/resnet50v2/conv3_block3_preact_bn/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_1_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block3_preact_relu/Relu", "saved_resnet_50_model/resnet50v2/conv3_block3_1_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv3_block3_1_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_2_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/resnet50v2/conv3_block3_1_relu/Relu", "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings"], "attr": {"T": {"type": "DT_FLOAT"}, "Tpaddings": {"type": "DT_INT32"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_2_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block3_2_pad/Pad", "saved_resnet_50_model/resnet50v2/conv3_block3_2_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv3_block3_2_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_3_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block3_2_relu/Relu", "conv3_block3_3_conv/kernel", "conv3_block3_3_conv/bias"], "device": "/device:CPU:0", "attr": {"dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block3_out/add", "op": "AddV2", "input": ["saved_resnet_50_model/resnet50v2/conv3_block2_out/add", "saved_resnet_50_model/resnet50v2/conv3_block3_3_conv/BiasAdd"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/max_pooling2d_1/MaxPool", "op": "MaxPool", "input": ["saved_resnet_50_model/resnet50v2/conv3_block3_out/add"], "attr": {"padding": {"s": "VkFMSUQ="}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "ksize": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_preact_bn/FusedBatchNormV3/Mul", "op": "Mul", "input": ["saved_resnet_50_model/resnet50v2/conv3_block3_out/add", "saved_resnet_50_model/resnet50v2/conv3_block4_preact_bn/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_preact_bn/FusedBatchNormV3", "op": "Add", "input": ["saved_resnet_50_model/resnet50v2/conv3_block4_preact_bn/FusedBatchNormV3/Mul", "saved_resnet_50_model/resnet50v2/conv3_block4_preact_bn/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_preact_relu/Relu", "op": "Relu", "input": ["saved_resnet_50_model/resnet50v2/conv3_block4_preact_bn/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_1_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block4_preact_relu/Relu", "saved_resnet_50_model/resnet50v2/conv3_block4_1_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv3_block4_1_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_2_pad/Pad", "op": "Pad", "input": ["saved_resnet_50_model/resnet50v2/conv3_block4_1_relu/Relu", "saved_resnet_50_model/resnet50v2/pool1_pad/Pad/paddings"], "attr": {"T": {"type": "DT_FLOAT"}, "Tpaddings": {"type": "DT_INT32"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_2_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block4_2_pad/Pad", "saved_resnet_50_model/resnet50v2/conv3_block4_2_conv/Conv2D_weights", "saved_resnet_50_model/resnet50v2/conv3_block4_2_conv/Conv2D_bn_offset"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA==", "UmVsdQ=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "2", "2", "1"]}}, "data_format": {"s": "TkhXQw=="}, "explicit_paddings": {"list": {}}, "use_cudnn_on_gpu": {"b": true}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_3_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv3_block4_2_relu/Relu", "conv3_block4_3_conv/kernel", "conv3_block4_3_conv/bias"], "device": "/device:CPU:0", "attr": {"use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}, "num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "data_format": {"s": "TkhXQw=="}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv3_block4_out/add", "op": "AddV2", "input": ["saved_resnet_50_model/resnet50v2/conv3_block4_3_conv/BiasAdd", "saved_resnet_50_model/resnet50v2/max_pooling2d_1/MaxPool"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_preact_bn/FusedBatchNormV3/Mul", "op": "Mul", "input": ["saved_resnet_50_model/resnet50v2/conv3_block4_out/add", "saved_resnet_50_model/resnet50v2/conv4_block1_preact_bn/FusedBatchNormV3/Scaled"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_preact_bn/FusedBatchNormV3", "op": "Add", "input": ["saved_resnet_50_model/resnet50v2/conv4_block1_preact_bn/FusedBatchNormV3/Mul", "saved_resnet_50_model/resnet50v2/conv4_block1_preact_bn/FusedBatchNormV3/Offset"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_preact_relu/Relu", "op": "Relu", "input": ["saved_resnet_50_model/resnet50v2/conv4_block1_preact_bn/FusedBatchNormV3"], "attr": {"T": {"type": "DT_FLOAT"}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_0_conv/BiasAdd", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv4_block1_preact_relu/Relu", "conv4_block1_0_conv/kernel", "conv4_block1_0_conv/bias"], "device": "/device:CPU:0", "attr": {"num_args": {"i": "1"}, "epsilon": {"f": 0.0}, "padding": {"s": "VkFMSUQ="}, "fused_ops": {"list": {"s": ["Qmlhc0FkZA=="]}}, "dilations": {"list": {"i": ["1", "1", "1", "1"]}}, "T": {"type": "DT_FLOAT"}, "strides": {"list": {"i": ["1", "1", "1", "1"]}}, "data_format": {"s": "TkhXQw=="}, "use_cudnn_on_gpu": {"b": true}, "explicit_paddings": {"list": {}}}}, {"name": "saved_resnet_50_model/resnet50v2/conv4_block1_1_relu/Relu", "op": "_FusedConv2D", "input": ["saved_resnet_50_model/resnet50v2/conv4_block1_preact_relu/Relu", "saved_resnet_50_model/resnet50
0
julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention   23
 
PS: je n'arrive pas à mettre le code en forme. J'ai pourtant ajouté les balises code
0
julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention   23
 
L'IA ne se connecte pas aux bases de données.
0
jordane45 Messages postés 38480 Date d'inscription   Statut Modérateur Dernière intervention   4 746 > julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention  
 
Nous n'avons pas la même définition d'une IA ... ni de PROGRAMMAITION ...

Le JSON n'est pas non plus du javascript ....
C'est juste un "format" de données... comme l'est le CSV, le XML, le .INI .....
Il n'y a aucune "programmation" là dedans.. et par conséquent .. aucune IA ...
0
julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention   23
 
en fait j'utilise Lobe, un logiciel qui me permet de créer des intelligences artificielles. Le problèmes est que ce n'est pas moi qui programme. Donc je suis perdu car je ne connais ni les variables ni les div et je ne sais pas comment l'IA est codée. Je pense que il faut que je pose ma question directement à la société qui la publié. Elle saura me répondre.
Mais je savais pas que le JSON était un format de données. Donc comme tu l'as dis avant, ce fichier ne peut pas être utilisé car il n'y a pas d'IA dedans
0
julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention   23
 
Je pense qu'il faut que je construise l'IA moi même. Ce serait plus simple
J'ai déjà quelque notions en python et en ruby. Mais que me proposerai-tu comme language de programmation ?
De plus je dois créer un fichier php pour envoyer les données au serveur
0
jordane45 Messages postés 38480 Date d'inscription   Statut Modérateur Dernière intervention   4 746 > julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention  
 
oulaaa... développer de l'IA nécessite de très très grosses connaissances en programmation .....
Le fait que tu poses ces questions me fait dire que tu n'as pas le niveau pour ça...
A la limite, si ton but est de faire de la reconnaissance d'image.. je t'invite à regarder les API fournies par Google, Microsfot, Amazon par exemple..
https://www.datagenius.fr/single-post/reconnaissance-d-image-intelligence-artificielle-ai-compare
0
julien_7324 Messages postés 98 Date d'inscription   Statut Membre Dernière intervention   23 > jordane45 Messages postés 38480 Date d'inscription   Statut Modérateur Dernière intervention  
 
D'accord, merci pour tes conseils
0