running RM process as deamon
datasunny
New Altair Community Member
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.
Thanks.
0
Answers
-
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
Regards,
IOContainer ioInput = new IOContainer(new IOObject[]{ model, wordlist });
IOContainer ioResult = process.run(ioInput);
Marco0