[solved] Can I pass locations of data files via command line?
Hi everyone,
I was wondering whether I can pass multiple arguments to RapidMiner via command line. That is, besides the process to be executed, I would like to pass for example names of .csv files that contain the data the process will operate on. Is this possible?
If so, how do I access the passed filenames from inside the process?
Thanks in advance,
Dominic
I was wondering whether I can pass multiple arguments to RapidMiner via command line. That is, besides the process to be executed, I would like to pass for example names of .csv files that contain the data the process will operate on. Is this possible?
If so, how do I access the passed filenames from inside the process?
Thanks in advance,
Dominic
Find more posts tagged with
Sort by:
1 - 5 of
51
I have added "the feature" a few seconds ago to the trunk of RapidMiner. It is already synchronized with sourceforge, so you can checkout the source, build it with "ant createJar" and use it like this (if you use Linux, but Windows works like this as well):
The next release which will include this will be next week if anything works out or the week after next.
./script/rapidminer //YourRepository/home/test/myProcess -Mname1=value "-Mname2=value with spaces"This will pass two macros to RapidMiner with the name "name1" and "name2" which you can use in a process with %{name1} for example.
The next release which will include this will be next week if anything works out or the week after next.
as far as i know there is no such way. For my diploma thesis i took the source code and wrote a mechanism where you can pass macros to the process through the command line. These macros can be used in the process as filename for example. If you like to program and need this feature right now: try this approach!
I will see if i can push my patch to the trunk in the source code.
Best
Marcin