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 parameters in command line
Is it possible to pass parameters from the command line (i.e. when running in batch mode using rapidminer-4.3/scripts/rapidminer) which can be used in the process being executed. I need to dispatch multiple instances of the same rapidminer process concurrently, with each reading its input data from a different input file (created by the dispatcher) and writing its output to a different output file (as specified by the dispatcher process).
I know I can put a placeholder in the process file and in the dispatcher do the necessary substitutions but this then couples the dispatcher to the process file which is not desirable (since in future we will want to use the same dispatcher for other processes too).
I see rapidminer.operators.additional is set in the scripts/rapidminer script and thought this might allow some external parameters to be passed in but I can't see any documentation on this.
Any suggestions appreciated.
Thanks
I know I can put a placeholder in the process file and in the dispatcher do the necessary substitutions but this then couples the dispatcher to the process file which is not desirable (since in future we will want to use the same dispatcher for other processes too).
I see rapidminer.operators.additional is set in the scripts/rapidminer script and thought this might allow some external parameters to be passed in but I can't see any documentation on this.
Any suggestions appreciated.
Thanks
0
Answers
this is unfortunately not possible in the current version. However, there's a trick to come arround: You could copy each processfile together with one input file in an own subdirectory. Then using relative addressing of the file to open and do save in the subdirectory.
Greetings,
Sebastian