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
Deployment and connecting Rapid Miner process
Hi,
I have a process for forecasting daily values.I need to deploy it and connect it with a process in external tools(python) so that any external user can run the process in Rapid Miner and get the output from the process in Python.
Please provide inputs on this!
Tagged:
0
Best Answers
-
MarcoBarradas Administrator, Employee-RapidMiner, RapidMiner Certified Analyst, Member Posts: 272 UnicornHi @Freshy,
If you have AI Hub available you can expose your process as a WebService that can be accessed by any external tool.
The process is simple.
Please watch this video from our academy.
1 -
Freshy Member Posts: 7 Contributor IIHi @MarcoBarradas ,Thanks for this,this definitely answers my question!After exposing my process as a web service,I require the output of my process to go to python.What steps do I have to follow to send my output to python(external system)?0
Answers
You can use requests library in Python to achieve your task.
https://medium.com/edureka/python-requests-tutorial-30edabfa6a1c
You'll need to authenticate through with a user, if basic auth is enabled on AI Hub, and send the POST or GET depending on the type of WS you are exposing.
Â