🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Cannot run RapidMiner process from Python with Performance Operator

User: "winn"
New Altair Community Member
Updated by Jocelyn
I am trying to run a RapidMiner process using a Python script. When I run the process ( Decision Tree Model) without Performance operator, I am able to successfully execute it via connector.run_process but when I add Performance operator, the Python script fails with the error: 

 raise ValueError("Cannot handle files with '" + str(extension) + "' extension.")

ValueError: Cannot handle files with '.ioo' extension. 

I am attaching my process rmp files without Performance operator and with performance operator.
I am executing following code in python:

<p>connector = rapidminer.Studio(rm_home, rm_stdout=None, override_python_binary=True)</p><p><span style="background-color: transparent; color: inherit; font-size: inherit; font-family: "open sans", sans-serif;">my_process = connector.run_process("//Local Repository/processes/MyProcess")</span><br></p>

Sort by:
1 - 2 of 21
    User: "hbajpai"
    New Altair Community Member
    Accepted Answer
    Hey @winn,

    The error is because you are passing the performance .ioo output as an object to Python and it is unable to parse it. If you use Performance to Data operator, after your performance block to convert the output to an example set, the error can be resolved. This way the pandas will parse the example set as a dataframe.
    User: "hbajpai"
    New Altair Community Member
    Accepted Answer
    @winnYou can check the metadata by hovering over the output port of the operator to have an idea.