<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Operations not found in Intel® Distribution of OpenVINO™ Toolkit</title>
    <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637810#M855</link>
    <description>&lt;P&gt;@Annabar How did you find out that ['CifarNet/Normal_cell_1/add', 'CifarNet/Normal_cell_1/add_1', 'CifarNet/Normal_cell_1/add_2', 'CifarNet/Normal_cell_1/add_3'] were not found?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like the network is crashing after parsing the operation and during creation of the layers for the graph file. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It always crashes on this node: &lt;CODE&gt;CifarNet/Normal_cell_0/Normal_cell_0_unused_concat/axis&lt;/CODE&gt; and during  &lt;CODE&gt;CifarNet/Reduction_cell_2/block_4_op2/identity/Conv2D&lt;/CODE&gt; for me. If I use the node right before that one &lt;CODE&gt;CifarNet/Normal_cell_0/add_4&lt;/CODE&gt;, I get no issues. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems those add operations that you listed come right before the conv2D layer that fails:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;Add
        686 ConcatV2 CifarNet/Normal_cell_1/Normal_cell_1_unused_concat
           IN: CifarNet/Normal_cell_1/add:0
           IN: CifarNet/Normal_cell_1/add_1:0
           IN: CifarNet/Normal_cell_1/add_2:0
           IN: CifarNet/Normal_cell_1/add_3:0
           IN: CifarNet/Normal_cell_1/add_4:0
           IN: CifarNet/Normal_cell_1/Normal_cell_1_unused_concat/axis:0
           OUT: CifarNet/Normal_cell_1/Normal_cell_1_unused_concat:0

Concat
        687 Conv2D CifarNet/Reduction_cell_2/block_4_op2/identity/Conv2D
           IN: CifarNet/Normal_cell_1/Normal_cell_1_unused_concat:0
           IN: CifarNet/Reduction_cell_2/block_4_op2/identity/weights/read:0
           OUT: CifarNet/Reduction_cell_2/block_4_op2/identity/Conv2D:0

Conv2D
[Dimension(1), 16, 16, Dimension(24)]
Traceback (most recent call last):
  File "/usr/local/bin/mvNCCheck", line 199, in &amp;lt;module&amp;gt;
    quit_code = check_net(args.network, args.image, args.inputnode, args.outputnode, args.nshaves, args.inputsize, args.weights, args)
  File "/usr/local/bin/mvNCCheck", line 166, in check_net
    load_ret = load_network(args, parser, myriad_config)
  File "/usr/local/bin/ncsdk/Controllers/Scheduler.py", line 82, in load_network
    parse_ret = parse_tensor(arguments, myriad_conf)
  File "/usr/local/bin/ncsdk/Controllers/TensorFlowParser.py", line 452, in parse_tensor
    network.attach(prev_node)
  File "/usr/local/bin/ncsdk/Models/Network.py", line 87, in attach
    stage.attach_several(appropriate_nodes)
  File "/usr/local/bin/ncsdk/Models/NetworkStage.py", line 911, in attach_several
    self.top.append(l.unprocessed_name)
AttributeError: 'int' object has no attribute 'unprocessed_name'
&lt;/CODE&gt;</description>
    <pubDate>Fri, 11 May 2018 06:49:30 GMT</pubDate>
    <dc:creator>idata</dc:creator>
    <dc:date>2018-05-11T06:49:30Z</dc:date>
    <item>
      <title>Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637805#M850</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to run a custom model implemented in Tensorflow on Cifar 10 dataset. However when I run this command : mvNCCompile -s 8 'frozen_graph.pb'  -in 'input' -on 'CifarNet/Predictions/Reshape_1' I have this error : &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;Traceback (most recent call last):
  File "/usr/local/bin/mvNCProfile", line 122, in &amp;lt;module&amp;gt;
    args = parse_args()
  File "/usr/local/bin/mvNCProfile", line 105, in profile_net
    net = parse_tensor(args, myriad_config, file_gen=True)
  File "/usr/local/bin/ncsdk/Controllers/TensorFlowParser.py", line 520, in parse_tensor
    network.attach(prev_node)
  File "/usr/local/bin/ncsdk/Models/Network.py", line 80, in attach
    print('parent : ',parent)
  File "/usr/local/bin/ncsdk/Models/NetworkStage.py", line 698, in attach_several
    self.top.append(l.unprocessed_name)
AttributeError: 'int' object has no attribute 'unprocessed_name'
Makefile:34: recipe for target 'profile' failed
make: [profile] Error 1 (ignored)
&lt;/CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;You can find the files here : &lt;A href="https://drive.google.com/open?id=1ngOx8esOHIXJBZ744EYKlpCm7eK0TQNd"&gt;https://drive.google.com/open?id=1ngOx8esOHIXJBZ744EYKlpCm7eK0TQNd&lt;/A&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;When digging into the code, I found that it was because somehow the operations ['CifarNet/Normal_cell_1/add', 'CifarNet/Normal_cell_1/add_1', 'CifarNet/Normal_cell_1/add_2', 'CifarNet/Normal_cell_1/add_3'] were not found. However 'CifarNet/Normal_cell_1/add_4' is found. And these operations were found for the Normal_cell_0, I really don't know why.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Tue, 24 Apr 2018 18:53:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637805#M850</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-04-24T18:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637806#M851</link>
      <description>&lt;P&gt;@AnnaBar I'm looking at this issue at the moment. &lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2018 04:52:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637806#M851</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-04-27T04:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637807#M852</link>
      <description>&lt;P&gt;Hi @Tome_at_Intel ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Any update concerning this issue?</description>
      <pubDate>Wed, 09 May 2018 09:00:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637807#M852</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-05-09T09:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637808#M853</link>
      <description>&lt;P&gt;@AnnaBar I was able to reproduce your issue and I have a few questions. For add_1 and add_3 are you adding constants? We have a known issue with our add implementation only adding two tensors at the moment. &lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 23:43:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637808#M853</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-05-09T23:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637809#M854</link>
      <description>&lt;P&gt;@Tome_at_Intel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;No I'm not adding constants with the add_1 and add_3 operations. I am adding two tensors with shape ?x32x32x24.&lt;P&gt;&amp;nbsp;&lt;/P&gt;How should I modify my model to avoid this issue ?</description>
      <pubDate>Thu, 10 May 2018 09:17:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637809#M854</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-05-10T09:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637810#M855</link>
      <description>&lt;P&gt;@Annabar How did you find out that ['CifarNet/Normal_cell_1/add', 'CifarNet/Normal_cell_1/add_1', 'CifarNet/Normal_cell_1/add_2', 'CifarNet/Normal_cell_1/add_3'] were not found?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like the network is crashing after parsing the operation and during creation of the layers for the graph file. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It always crashes on this node: &lt;CODE&gt;CifarNet/Normal_cell_0/Normal_cell_0_unused_concat/axis&lt;/CODE&gt; and during  &lt;CODE&gt;CifarNet/Reduction_cell_2/block_4_op2/identity/Conv2D&lt;/CODE&gt; for me. If I use the node right before that one &lt;CODE&gt;CifarNet/Normal_cell_0/add_4&lt;/CODE&gt;, I get no issues. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems those add operations that you listed come right before the conv2D layer that fails:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;Add
        686 ConcatV2 CifarNet/Normal_cell_1/Normal_cell_1_unused_concat
           IN: CifarNet/Normal_cell_1/add:0
           IN: CifarNet/Normal_cell_1/add_1:0
           IN: CifarNet/Normal_cell_1/add_2:0
           IN: CifarNet/Normal_cell_1/add_3:0
           IN: CifarNet/Normal_cell_1/add_4:0
           IN: CifarNet/Normal_cell_1/Normal_cell_1_unused_concat/axis:0
           OUT: CifarNet/Normal_cell_1/Normal_cell_1_unused_concat:0

Concat
        687 Conv2D CifarNet/Reduction_cell_2/block_4_op2/identity/Conv2D
           IN: CifarNet/Normal_cell_1/Normal_cell_1_unused_concat:0
           IN: CifarNet/Reduction_cell_2/block_4_op2/identity/weights/read:0
           OUT: CifarNet/Reduction_cell_2/block_4_op2/identity/Conv2D:0

Conv2D
[Dimension(1), 16, 16, Dimension(24)]
Traceback (most recent call last):
  File "/usr/local/bin/mvNCCheck", line 199, in &amp;lt;module&amp;gt;
    quit_code = check_net(args.network, args.image, args.inputnode, args.outputnode, args.nshaves, args.inputsize, args.weights, args)
  File "/usr/local/bin/mvNCCheck", line 166, in check_net
    load_ret = load_network(args, parser, myriad_config)
  File "/usr/local/bin/ncsdk/Controllers/Scheduler.py", line 82, in load_network
    parse_ret = parse_tensor(arguments, myriad_conf)
  File "/usr/local/bin/ncsdk/Controllers/TensorFlowParser.py", line 452, in parse_tensor
    network.attach(prev_node)
  File "/usr/local/bin/ncsdk/Models/Network.py", line 87, in attach
    stage.attach_several(appropriate_nodes)
  File "/usr/local/bin/ncsdk/Models/NetworkStage.py", line 911, in attach_several
    self.top.append(l.unprocessed_name)
AttributeError: 'int' object has no attribute 'unprocessed_name'
&lt;/CODE&gt;</description>
      <pubDate>Fri, 11 May 2018 06:49:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637810#M855</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-05-11T06:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637811#M856</link>
      <description>&lt;P&gt;Hi @Tome_at_Intel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually, I am not sure that these operations are not found. I thought it was the problem because the link between these add operations and the Conv2D layer is missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;I don't really understand why this layer Conv2D is failing while the previous Conv2D are accepted.</description>
      <pubDate>Mon, 14 May 2018 10:03:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637811#M856</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-05-14T10:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637812#M857</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Little update, I succeeded to compile my model. I just changed a little thing in the &lt;A href="http://NetworkStage.py"&gt;NetworkStage.py&lt;/A&gt; file on the attach function.&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;.
            if self in self.network.head:
                stage.network.storageOrder = stage.storageOrder
                self.network.head.remove(self)
                self.network.head.append(stage)
            else:
                for parents in self.network.search_several(self.top):
                    newtail = []
                    for p in parents.tail:
                        if p == self:
                            newtail.append(stage)
                        else:
                            newtail.append(p)
                    parents.tail = newtail
            return&lt;/CODE&gt;          &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;instead of : &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;.
            if self in self.network.head:
                stage.network.storageOrder = stage.storageOrder
                self.network.head.remove(self)
                self.network.head.append(stage)
            else:
                for parents in self.network.search_several(self.top):
                    newtail = []
                    for p in parents.tail:
                        if p == self:
                            newtail.append(stage)
                    parents.tail = newtail
            return&lt;/CODE&gt;</description>
      <pubDate>Wed, 06 Jun 2018 13:39:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637812#M857</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-06-06T13:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: Operations not found</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637813#M858</link>
      <description>&lt;P&gt;@Annabar I'm glad that you were able to get it to work and appreciate that you posted your solution on the forum. Are you getting expected results from your model using these new changes? &lt;/P&gt;</description>
      <pubDate>Wed, 06 Jun 2018 23:59:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Operations-not-found/m-p/637813#M858</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-06-06T23:59:59Z</dc:date>
    </item>
  </channel>
</rss>

