<?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 how to change input size of model on eIQ software in eIQ Machine Learning Software</title>
    <link>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336250#M442</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I recently started training an fpn-ssd-mobilenetv2 model(which is one of the base models provided) on eIQ with custom dataset, and I was wondering is there a way to change the input size of the model by any chance to a custom size(ex. from 320 to 640)? Thanks very much!&lt;/P&gt;</description>
    <pubDate>Tue, 07 Sep 2021 18:32:44 GMT</pubDate>
    <dc:creator>jasonliu1</dc:creator>
    <dc:date>2021-09-07T18:32:44Z</dc:date>
    <item>
      <title>how to change input size of model on eIQ software</title>
      <link>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336250#M442</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I recently started training an fpn-ssd-mobilenetv2 model(which is one of the base models provided) on eIQ with custom dataset, and I was wondering is there a way to change the input size of the model by any chance to a custom size(ex. from 320 to 640)? Thanks very much!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 18:32:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336250#M442</guid>
      <dc:creator>jasonliu1</dc:creator>
      <dc:date>2021-09-07T18:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to change input size of model on eIQ software</title>
      <link>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336292#M444</link>
      <description>&lt;P&gt;Hi Jason,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; That particular model included with eIQ portal expects a 320x320 image. However it is possible to bring in your own custom models (or other models you might find in a model zoo) by placing them in the &lt;STRONG&gt;&amp;lt;NXP eIQ Portal Install Dir&amp;gt;\plugins&lt;/STRONG&gt; folder&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; There's then a guide to how expose different parameters of that model to the eIQ Portal GUI at&amp;nbsp;&lt;STRONG&gt;C:\nxp\eIQ_Toolkit_v1.0.5\docs\CustomModels.md&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; The best way to learn how to import custom models would be to look at the code for the predefined models already included as part of eIQ Portal and use that as a guide for when you import your own models. For example, you can see in &lt;STRONG&gt;\plugins\detection\boxes\fpn\fpn_ssd.py&lt;/STRONG&gt; where the default&lt;STRONG&gt;&amp;nbsp;VOC-fpn_ssd_mobilenet_v2-320.h5&lt;/STRONG&gt;&amp;nbsp;model is picked up.&lt;BR /&gt;&lt;BR /&gt;-Anthony&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 21:25:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336292#M444</guid>
      <dc:creator>anthony_huereca</dc:creator>
      <dc:date>2021-09-07T21:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to change input size of model on eIQ software</title>
      <link>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336397#M447</link>
      <description>&lt;P&gt;Hi, Jason&lt;/P&gt;&lt;P&gt;I think some method can solve your issue ....&lt;BR /&gt;(1) Special input size When it converter Tensorflow Lite&lt;BR /&gt;(2) Trying "resize_tensor_input" method .. like as&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;interpreter=tf.lite.Interpreter("/root/posenet_text.tflite")&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;input_details = interpreter.get_input_details()&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;interpreter.resize_tensor_input(input_details[0]['index'], (1, 705, 527, 3))&lt;/P&gt;&lt;P&gt;Weilly&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 02:16:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336397#M447</guid>
      <dc:creator>weilly_li</dc:creator>
      <dc:date>2021-09-08T02:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to change input size of model on eIQ software</title>
      <link>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336924#M453</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;so if I change the input size in the file&amp;nbsp;&lt;STRONG&gt;\plugins\detection\boxes\fpn\fpn_ssd.py, &lt;/STRONG&gt;but since the model is for 320x320, would that mean that the model is still training with 320x320 images but now it can take in a 640x640 image for detection?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 14:13:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1336924#M453</guid>
      <dc:creator>jasonliu1</dc:creator>
      <dc:date>2021-09-08T14:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to change input size of model on eIQ software</title>
      <link>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1338097#M457</link>
      <description>&lt;P&gt;Hi Jason,&lt;/P&gt;&lt;P&gt;&amp;nbsp; eIQ Portal will automatically scale the input images that you're training on into the dimensions that the model is expecting when doing the training. But the model itself will still be using the 320x320 dimensions.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;-Anthony&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Sep 2021 06:00:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/eIQ-Machine-Learning-Software/how-to-change-input-size-of-model-on-eIQ-software/m-p/1338097#M457</guid>
      <dc:creator>anthony_huereca</dc:creator>
      <dc:date>2021-09-10T06:00:35Z</dc:date>
    </item>
  </channel>
</rss>

