Skip to content

Collection of algorithms to compute diversity between elements and identify diverse element collections within a dataset. Technologies for Information Systems course project (A.Y. 2018/2019) at Politecnico di Milano.

Notifications You must be signed in to change notification settings

nyxgear/TIS-diversity-algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Diversity algorithms

Collection of algorithms to compute diverisity between elements and idenfiy diverse element collections whitin a dataset

Requirements

Python 3.

Usage

import diversity as d

elements = range(42)

# greedy algorithm
greedy_most_diverse = d.greedy(elements, 10)

# interchange algorithm
interchange_most_diverse = d.interchange(elements, 10)

# neighborhood algorithm
neighborhood_most_diverse = d.neighborhood(elements, 20)

Checkout docs/usage.md for further details.

Documentation

Checkout the documentation to initialize the environment, use the module and run the tests.

Project context

This project has been developed for the Technologies for Information Systems course (A.Y. 2018/2019) at Politecnico di Milano.

About

Collection of algorithms to compute diversity between elements and identify diverse element collections within a dataset. Technologies for Information Systems course project (A.Y. 2018/2019) at Politecnico di Milano.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages