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
Answers
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
What cmd argument I have to pass to RapidMinerGUI.main and in what order?
Thanks,
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
If you can specify what to "refactor" and how, using official release of Rapid- Minder, it would be nice.
Thanks,
Nadi
if you have runnig process, you can use process.getCurrentOperator() to get the operator that is currently being executed. That should be enough to monitor process. Or you can use some logging operator.
Best,
Václav
The way I refactored include the following (I can give you more details if you need next week):
- 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)
I am not sure if all these could be solved better, or differently, I could not find a better solution. I would prefer using a plain RM too instead of my custom fork (and updating mine on each release).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..