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

running RM process as deamon

datasunnydatasunny Member Posts: 11 Contributor II
edited November 2018 in Help
I'm writing a text classification process. A SVM model and wordlist are pre-generated. Since loading the model and wordlist takes some time, i'm wondering what's the best way to deamonize the process. That is, loading model/wordlist just once, process any incoming documents as needed.
Thanks.
Tagged:

Answers

  • Marco_BoeckMarco_Boeck Administrator, Moderator, Employee-RapidMiner, Member, University Professor Posts: 1,996 RM Engineering
    Hi,

    I suggest creating a process which loads the model and the wordlist and returns them as outputs, and then just store them as IOObjects in your code. Then you can create your other processes which take the model and the wordlist as inputs, and then you can pass them to your other processes via

    IOContainer ioInput = new IOContainer(new IOObject[]{ model, wordlist });
    IOContainer ioResult = process.run(ioInput);
    Regards,
    Marco
Sign In or Register to comment.