Home

Awesome

GMiner

Fork

This is a fork of GMiner with additional parameters. It is used in the project https://github.com/cdancette/detect-shortcuts

Introduction

<b>GMiner</b> is an algorithm for finding frequent itemsets using computing power of GPUs.</br>

<b>GMiner</b> has the following characteristics:

Research Paper

GMiner: A fast GPU-based frequent itemset mining method for large-scale data

Implementation

Implemented C++ code interacting with GPU servers and computing frequent itemsets according to itemsets.

Installation

Input File Format

In an input dataset, each transaction is stored in a single line (row). In the transaction, items are non-negative integers and separated by a space.

Output File Format

The output includes a number of lines. Each line includes a single frequent itemset and its support ratio in a range of [0,1].

How to run

Command

./GMiner -i <input_path> -o <output_path> -s <min_sup> -w <is_write_output>

Parameters