The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"Process Run problem with Input and with Performance"
Hi i have build a process that read two model that i have prebuilded and apply this to an input set.
This process is run at every loop of a while cycle.
The performance are very poor and then i think of eliminate the read of the two model at every loop and i want to pass they with the input port.
What can i give to the process three input?
Every idea for have more performance?
Thank you
This process is run at every loop of a while cycle.
The performance are very poor and then i think of eliminate the read of the two model at every loop and i want to pass they with the input port.
What can i give to the process three input?
Every idea for have more performance?
Thank you
Tagged:
0
Answers
I believe Store and Retrieve operators migh help you with computational time demands.
I want only know how :
load a model (out of a loop)
apply same model (at every loop)
Thank you very much
I must admit that I'm not quite sure what you want, however I suggest what I already suggested in the last dozen of threads or so about that topic in this forum:
Build your processes in RapidMiner so you can execute them from RapidMiner without any errors, then you can execute easily via java. Trying to create a process directly via java code requires extensive knowledge of the RapidMiner API and is a bit tedious. But if you're using the method I suggested above, it will work with very little effort
Regards,
Marco
Do you know how do?
Thank you
Another way would be to create your own iterating operator, and add model input to the operator.
Best,
radone
if performance is key I suggest to create a simple process that does nothing than read a model and deliver it to an output port: You can then run this process, and collect the resulting ioobject: Then have your other processes use a model delivered via input port, so you can start you processes with the previously loaded model: That way, you will load your model once and then use it for all your other processes.
Regards,
Marco