Storing Process for use -

DanDunne
DanDunne New Altair Community Member
edited November 2024 in Community Q&A
Hi,

I am trying to store a process (used on training data) to apply it to test data. A block is generated as per following:

'</operator>
          <operator activated="true" class="store" compatibility="9.5.001" expanded="true" height="68" name="Store" width="90" x="581" y="238">
            <parameter key="repository_entry" value="//AssignmentRepository/FirstTest"/>


However there is a warning flag to say "This may not be portable when sharing processes" on the source block. There is a similar  message in block in destination folder.  

Regards

Danny


Tagged:

Best Answer

  • varunm1
    varunm1 New Altair Community Member
    Answer ✓
    Hello @DanDunne

    This warning is related to data in the repository. When you use this process somewhere else you should have data in a relative folder so that it can automatically retrieve data or else you need to connect data again.

    To apply a trained model on test data, you can use the "store" operator and connect it to "mod" port and provide a relevant path to repository location and run the process. It will store a trained model, then you can drag and drop the trained model and use the "apply model" to apply on test data in any other process.

    Please let us know if you need more information.

Answers

  • varunm1
    varunm1 New Altair Community Member
    Answer ✓
    Hello @DanDunne

    This warning is related to data in the repository. When you use this process somewhere else you should have data in a relative folder so that it can automatically retrieve data or else you need to connect data again.

    To apply a trained model on test data, you can use the "store" operator and connect it to "mod" port and provide a relevant path to repository location and run the process. It will store a trained model, then you can drag and drop the trained model and use the "apply model" to apply on test data in any other process.

    Please let us know if you need more information.
  • DanDunne
    DanDunne New Altair Community Member
    Varun...thank you. this cleared the issue for me. Danny