Cannot run RapidMiner process from Python with Performance Operator

winnwinn MemberPosts:11Learner I
edited April 2020 inHelp
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.

我将处理rmp文件没有性能rmance operator and with performance operator.
I am executing following code in python:

connector = rapidminer.Studio(rm_home, rm_stdout=None, override_python_binary=True)

my_process = connector.run_process("//Local Repository/processes/MyProcess")


Best Answers

  • hbajpaihbajpai MemberPosts:102Unicorn
    Solution Accepted
    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.
    Best,
    Harshit
    winn lionelderkrikor phellinger
  • hbajpaihbajpai MemberPosts:102Unicorn
    Solution Accepted
    @winnYou can check the metadata by hovering over the output port of the operator to have an idea.


    Best,
    Harshit
    winn lionelderkrikor sgenzer phellinger

Answers

  • winnwinn MemberPosts:11Learner I
    Hey@hbajpai
    Thanks a lot, this resolved my issue. For the future, how can I check what is the output type from an operator? I couldn't find that performance operator returns .ioo output.
Sign InorRegisterto comment.