Find more posts tagged with
Sort by:
1 - 6 of
61
- support for using from eclipse (one of the bundles set a resource handler factory and RM also tries it, but only a single set is allowed)
- I wanted to not have a separate window when RM is used, so refactored it to specify the UI state not bound to a window (JFrame), but a custom class.
- The splash screen is not shown when started with embedded UI
- Do not exit when the window of RM is closed (maybe this could be solved other ways too)
Ideally I would like to see RapidMiner in action while my code is running the process. The alternative is to start RapidMiner GUI and load the process file (rmp file). I tried RapidMinerGUI.main(cmdArg); and passed the rmp file path as cmd argument. Rapid Miner splash is displayed, however, it prompts a message "RapidMiner repository is not defined...". After selecting the repository the splash screen reappears and it hangs forever.
What cmd argument I have to pass to RapidMinerGUI.main and in what order?
Thanks,
Nadi
What cmd argument I have to pass to RapidMinerGUI.main and in what order?
Thanks,
Nadi
Hi Nadi,
You might want to take a look at my "fork" of RapidMiner. It is as up-to-date as 5.3.5 (check out the refactored_ui branch).
I had some problems using the embedded UI, so refactored a few things. (It works within KNIME, so I think it is possible to do embedding with this code base.)
Cheers, gabor
You might want to take a look at my "fork" of RapidMiner. It is as up-to-date as 5.3.5 (check out the refactored_ui branch).
I had some problems using the embedded UI, so refactored a few things. (It works within KNIME, so I think it is possible to do embedding with this code base.)
Cheers, gabor
Hi Nadi,
The way I refactored include the following (I can give you more details if you need next week):
You do not have to be familiar with KNIME to understand the basic usage in embedded form, but the KNIME SDK is also quite easy to understand if you want.
Cheers, gabor
PS.: I think I'll skip 5.3.7 version for now, so till next release the version I have will be 5.3.5..
The way I refactored include the following (I can give you more details if you need next week):
You do not have to be familiar with KNIME to understand the basic usage in embedded form, but the KNIME SDK is also quite easy to understand if you want.
Cheers, gabor
PS.: I think I'll skip 5.3.7 version for now, so till next release the version I have will be 5.3.5..
I'm not quite sure what you want - do you want to disguise RapidMiner as part of your application, or do you simply want to launch RapidMiner? In the latter case you should have a look at RapidMinerGUI.main(String[] args).
Regards,
Marco