I want to deploy my Rapidminer model to End User Application
dear all, first I have no idea about programming nor deploying
I created a model so data set entered then processed using stacking including NN and K-nn and get the results, so how to deploy that model to make it end user application so can enter NEW data and get predication? so what should I do as new starter to make such application?
I created a model so data set entered then processed using stacking including NN and K-nn and get the results, so how to deploy that model to make it end user application so can enter NEW data and get predication? so what should I do as new starter to make such application?
Find more posts tagged with
Sort by:
1 - 16 of
161
- Step 1: Read Data
- Step 2: Train Naive Bayes Model
- Step 3: Read NewData
- Step 4: Apply Model to Data
- Step 5: Store Results
Hello,
I'm not sure, but maybe this post is what you want:
http://rapid-i.com/rapidforum/index.php/topic,5807.0.html
(I'm not sure if it works for RM7.)
Best wishes,
Vaclav
I'm not sure, but maybe this post is what you want:
http://rapid-i.com/rapidforum/index.php/topic,5807.0.html
(I'm not sure if it works for RM7.)
Best wishes,
Vaclav
Here's a quick explanation on how it works.
You build RapidMiner processes using the GUI which stores the workflow as an XML file.
On running a process in RapidMiner the XML is read by the RapidMiner Engine and it follows it as a set of instructions.
For example
So, the solution is to include RapidMiner as the engine within your java program.
In your Java program you then ask the RapidMiner engine to run the process XML you have created.
This has the advantage that when you need to update your model you just replace the XML with a new one you have created with RapidMiner Studio.
Hope that makes it clearer.
You can get an OEM licence to do this from RM. Play with RM 5.3 to do it in earlier versions.
I believe the Server licencing also covers it too so you can have the option of WebService or Java calls.
You build RapidMiner processes using the GUI which stores the workflow as an XML file.
On running a process in RapidMiner the XML is read by the RapidMiner Engine and it follows it as a set of instructions.
For example
So, the solution is to include RapidMiner as the engine within your java program.
In your Java program you then ask the RapidMiner engine to run the process XML you have created.
This has the advantage that when you need to update your model you just replace the XML with a new one you have created with RapidMiner Studio.
Hope that makes it clearer.
You can get an OEM licence to do this from RM. Play with RM 5.3 to do it in earlier versions.
I believe the Server licencing also covers it too so you can have the option of WebService or Java calls.
You don't have a programmer for your existing application? You might need to explain a little. I'm sure there's several people on this forum who can offer assistance integrating into your application for consulting costs so you might not need to hire a programmer.
Also the reason Marco & I suggested RapidMiner Server initially is that you don't need to be a programmer to create a deployable process. It's really easy to create WebApps & Web Services which you can call from other applications just by using a URL.
Your users can login to a web interface, upload their data and receive the predictions to download. Really easy to do and no programming required.
Also the reason Marco & I suggested RapidMiner Server initially is that you don't need to be a programmer to create a deployable process. It's really easy to create WebApps & Web Services which you can call from other applications just by using a URL.
Your users can login to a web interface, upload their data and receive the predictions to download. Really easy to do and no programming required.
Hi,
have a look at our YT channel: https://www.youtube.com/user/RapidIVideos/videos
This (older) video might still be helpful: https://www.youtube.com/watch?v=SBCUwA6llns
Regards,
Marco
have a look at our YT channel: https://www.youtube.com/user/RapidIVideos/videos
This (older) video might still be helpful: https://www.youtube.com/watch?v=SBCUwA6llns
Regards,
Marco
sounds like a job for a web service on RM Server
You can pass in data in various formats, e.g. JSON or even Excel files and get the prediction outcome in various formats.
Regards,
Marco