Code Monkey home page Code Monkey logo

rpm_segmentator's Introduction

RPM_Segmentator

This is a command line tool to discover routine tasks from unsegmented UI logs. It works with UI logs recorded by RPA UI Logger tool available at https://github.com/apromore/RPA_UILogger.

Usage

The tool requires the following input parameters:

  • logPath - a path to UI log to be processed (e.g. src\logs\useCase_preprocessed.csv)
  • configPath - a path to configuration file (the file has to be in json format)
  • groundTruthFilePath - a path to the file with ground truth routines (if available). If the ground truth is not available set it to "null"

The example of the configuration file:

{ "preprocessing": true,
  "algorithm": "CloFast",
  "minSupport": 0.1,
  "minCoverage": 0.05,
  "metric": : "cohesion",
  "context": [
      "target.id",
      "target.name",
      "target.innerText",
      "target.sheetName"
  ]}
  • preprocessing - specifies whether the redundant actions should be removed
  • algorithm - the algorithm used to mine frequent patterns (at the moment BIDE and CloFast are supported)
  • minSupport - the miminal relative frequency of the pattern to be considered a candidate routine
  • minCoverage - the minimal amount of the behavior in the log that has to be covered by the routine
  • metric - used for patterns selection (frequency, coverage, cohesion and length are supported metrics)
  • context - a collection of the attributes that are used to distinguish the actions in the log

Example how to run the tool:

java -jar RPM_Segmentator.jar logs/StudentRecord.csv config.json null

The tool generates .DOT file that represents a directly follows graph constructed from the given UI log. You can visualize this graph by using any graph vizualization tool (e.g, http://www.webgraphviz.com/)

rpm_segmentator's People

Contributors

volodymyrleno avatar nemo-91 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.