Skip to content

Interactive Progressive Sequence mining Algorithm

License

Notifications You must be signed in to change notification settings

wsgan001/prosecco-code

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProSecCo

This repository contains the C# implementation of the ProSecCo algorithm for interactive frequent sequence mining, as described in the paper:

Sacha Servan-Schreiber, Matteo Riondato, E. Zgraggen, ProSecCo: Progressive Sequence Mining with Convergence Guarantees appearing in the Proceedings of the 18th IEEE International Conference on Data Mining (ICDM'18).

An extended version of this work is available in the prosecco.pdf file.

Compilation and execution

To compile and run ProSecCo:

$ cd src/ProSecCo
$ dotnet restore
$ dotnet run -- --help
$ dotnet run -- --file <file-path> (--support <min-support> | --top-k <k>) \
	--size <block-size> --db-size <database size>

PrefixSpan (sequence mining algorithm)

A C# implementation of the PrefixSpan algorithm for frequent sequence mining is also included in this repository. This implementation is used by ProSecCo in the sequence mining phase.

To compile and run PrefixSpan:

cd src/PrefixSpan
dotnet restore
dotnet run -- --help
dotnet run -- PrefixSpan --file <file-path> --support <min-support>

File format

Both algorithms expect input files to be in SPMF format.

License

See the LICENSE and the NOTICE files for copyright and license information.

About

Interactive Progressive Sequence mining Algorithm

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 78.1%
  • Python 14.5%
  • Shell 7.3%
  • Smalltalk 0.1%