To prevent spam users, you can only post on this forum after registration, which is by invitation. If you want to post on the forum, please send me a mail (h DOT m DOT w DOT verbeek AT tue DOT nl) and I'll send you an invitation in return for an account.

ProM Lite - Inductive Miner plugin

Hi,

How can we pass parameters to Inductive miner CLI plugin. Have seen an example script to pass parameters object without any values. But how do we pass the noise and event parameters?

Regards
Jane

Comments

  • hverbeek
    edited August 2021
    Hi Jane,

    If you go to https://icpmconference.org/2020/process-discovery-contest/downloads/, and download the Inductive miner from there, it will come with a discover.txt script file in the Scripts folder. Around line 30, you will find the following snippet that calls the Inductive miner with parameters:

    pars = new org.processmining.plugins.InductiveMiner.mining.MiningParametersIMi();
    pars.setClassifier(clss);

    print("    <pluginfo>");
    res = mine_petri_net_with_inductive_miner_with_parameters(log, pars);
    print("    </pluginfo>");

    By changing the 'pars' variable before calling the miner (line 5 of the snippet), you can pass different parameters to the Inductive miner.

    Kind regards,
    Eric.


  • Thanks Eric
Sign In or Register to comment.