CLUEstering


NameCLUEstering JSON
Version 2.2.0 PyPI version JSON
download
home_page
SummaryA library that generalizes the original 2-dimensional CLUE
upload_time2024-03-19 17:24:24
maintainer
docs_urlNone
authorSimone Balducci
requires_python>=3.7
license
keywords python clustering binding
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # CLUEstering 
The CLUE algorithm is a clustering algorithm written at CERN (https://www.frontiersin.org/articles/10.3389/fdata.2020.591315/full).

The original algorithm was designed to work in 2 dimensions, with the data distributed in parallel layers.
Unlike other clustering algorithms, CLUE takes the coordinates of the points and also their weight, which represents their energy, and calculates the energy density of each point.
This energy density is used to find the seeds for each cluster, their followers and the outliers, which are dismissed as noise.
CLUE takes 4 parameters in input: 
* `dc_`, which is the side of the box inside of which the density of a point is calculated;
* `rhoc`, which is the minimum energy density that a point must have to not be considered an outlier,
* `outlierDeltaFactor`, that multiplied by dc_ gives dm_, the side of the box inside of which the followers of a point are searched;
* `pointsPerBin`, which is the average number of points that are to be found inside a bin. This value allows to control the size of the bins.

This library generalizes the original algorithm, making it N-dimensional, and turns it into a general purpose algorithm, usable by any user and applicaple to a wider range of applications, in particular outside particle physics.

The C++ code is binded using PyBind11, and the module is created locally during the installation of the library.

In the library is defined the `clusterer` class, which contains the methods for reading the data, running the algorithm, plotting the data both in input and output, and others.  
Outside of the class is also defined the function test_blobs, which takes the number of points and the number of dimensions, and is a way to test quickly the library, producing some N-dimensional blobs.

Below is shown a basic example of how the library can be used:
```
import CLUEstering as clue

clust = clue.clusterer(.4, 2., 1.5)
clust.read_data(clue.test_blobs(1000,2))
clust.run_clue()
clust.cluster_plotter()
```

<p align="center">
  <img width="380" height="380" src="https://raw.githubusercontent.com/cms-patatrack/CLUEstering/main/images/blobwithnoise.png">
</p>

## Heterogeneous backend support with `Alpaka`
Since version `2.0.0` the pybind module is compiled for all the supported backends using the `Alpaka` portability library (https://github.com/alpaka-group/alpaka).  
Currently the supported backends include:
* CPU serial
* CPU parallel using TBB
* NVIDIA GPUs
* AMD GPUs  

The modules are compiled automatically at the moment of installation, and the user can choose the backend to use when running by passing a parameter to the
`run_clue` method.
```
clust.run_clue("cpu serial")
clust.run_clue("cpu tbb")
clust.run_clue("gpu cuda")
clust.run_clue("gpu hip")
```
If no argument is passed, by default the serial backend is used.  
It is possible to list all the available devices with the `list_devices` method. If no argument is passed, the method lists all the devices for all the backends,
but it's also possible to specify the backend whose devices want to be listed.
```
# list devices for all backends
c.list_devices()
# specify the backend
c.list_devices('cpu serial')
c.list_devices('cpu tbb')
c.list_devices('gpu cuda')
c.list_devices('gpu hip')
```

## The `clusterer` class
The `clusterer` class represents a wrapper class around the method `mainRun`, which is binded from `C++` and that is the method that runs the CLUE algorithm.  
When an instance of this class is created, it requires at least three parameters: `dc`, `rhoc` and `outlierDeltaFactor`. There is a fourth parameter, `pPBin`, which represents the desired average number of points found in each of the bins that the clustering space is divided into. This parameter has a default value of `10`.  
The parameters `dc`, `rhoc` and `outlierDeltaFactor` must be `floats` or a type convertible to a `float`. `ppBin`, on the other hand, is an `integer`.

The class has several methods:
* `read_data`, which takes the data in input and inizializes the class members. The data can be in the form of list, numpy array, dictionary, string containing the path to a csv file or pandas DataFrame;
* `change_coordinates`, which allows to change the coordinate system used for clustering;
* `change_domains`, which allows to change the domain ranges of any eventual periodic coordinates;
* `choose_kernel`, which allows to change the convolution kernel used when calculating the local density of each point. The default kernel is a flat kernel with parameter `0.5`, but it can be changed to an exponential or gaussian kernel, or a custom kernel, which is user defined and can be any continuous function;
* `run_clue`, which runs the CLUE algorithm;
* `list_devices`, which lists all the available devices for the supported backends;
* `input_plotter`, which plots all the points in input. This method is useful for getting an idea of the shape of the dataset before clustering. In addition to some plot customizations (like the colour or the size of the points, the addition of a grid, the axis labels and so on) it's also possible to pass the functions for the change of coordinates and change the coordinate system used for plotting.
* `cluster_plotter`, which plots the data using a different colour for each cluster. The seeds are indicated by stars and the outliers by small grey crosses.
* `to_csv`, which takes two strings, the first containing the path to a folder and the second containing the desired name for the csv file (also with the .csv suffix) and produces the csv file containing the cluster informations.


## Reading data
Data is read with the `read_data` method.  
For the data to be acceptable, it must contain the values of at least one coordinate for all the points, and their `weights`. The `weights` of the points represent their relative importance in the dataset, so in most cases they can all be set to 1. There are several accepted formats for providing the data:  
* `string`, where the string contains the relative path to a `csv` file. The file must contain at least one column for the coordinates, which must be named as `x*` (`x0`, `x1`, ecc.) and one column for the `weight`
* `pandas.DataFrame`, where the columns for the coordinates must be named `x*` (`x1`, `x2`, ecc.) and one column should contain the `weight`
* `list` or `np.ndarray`, where the coordinate data should be provided as a list of lists (or array of arrays), and the weights inserted in a second, separate list/array
* `dictionary`, where the coordinate data must be contained in lists, each with key `x*` (``, ``, ecc.) and the weights in another list with key `weight`

## Generating a test dataset with `test_blobs`
If a user wants to test the library without using real data, they can easily do so using the `test_blobs` method.
`test_blobs` generates a dataset containing any number of gaussian blobs (4 by default), i.e. regular distributions of points distributed gaussianly in a round shape. These blobs can be generated in 2 or 3 dimensions.  
It is possible to customize:
* the number of points in the dataset, through the parameter `n_samples`
* how spread out the points are, through the `mean` and `sigma` parameters
* the spatial span over which these blobs are placed, throught the parameters `x_max` and `y_max`. By modifying this parameters it's possible to make the blobs more crammed or more well separated, thus making it harder or easier to clusterize them

## Change of kernels for the calculation of local density
Since `version 1.3.0` it is possible to choose what kernel to use when calculating the local density of each point. 
The default choices are `gaussian`, `exponential` and `flat`. Each of the kernels require a list of parameters:
* `flat`, takes a single parameter
* `exp`, takes two parameters, the amplitude and the mean.
* `gaus`, takes three parameters, the amplitude, the mean and the standard deviation.   

The default kernel is a flat kernel with parameter `0.5`.
The different kernels can be chosen using the `choose_kernel` method. It is also possible to use a user-defined kernel, by passing it as a function object. Custom kernels require an empty list to be passed as parameters.  
The functions used to define a custom kernel should take three parameters: 
* The distance `dist_ij` between the two points.
* The id `point_id` of the fixed point.
* The id `j` of the neighbouring points.

```
import CLUEstering as clue

clust = clue.clusterer(1., 5., 1.5) # the default kernel is flat(0.5)

# Change to an exponential kernel 
clust.choose_kernel('exp', [1. 1.5])

# Now use a custom kernel, a linear function
clust.choose_kernel('custom', [], lambda x, y, z: 2 * x)
```

## Input and cluster `plotter` methods
The `input_plotter` and `cluster_plotter` methods two plotting methods based on matplotlib. `input_plotter` is intenteded to be used as a way to observe the data before clustering and getting an idea of the expected result, whereas `cluster_plotter` plots the results of the clustering, plotting the points corresponding to the same cluster with the same colour and the outliers as small grey crosses.  
Both methods allow for a wide range of customizations:
* the title of the plot and its size can be changed with the `plot_title` and `title_size` parameters
* the labels of the axis can be changed with the `x_label`, `y_label` and `z_label` parameters
* the size and colour of the points. In the cluster plotter it is possible to change the size of the three classes of points (normal, seed and outlier) singularly
* it's possible to add a grid to the point with the `grid` boolean parameter, and change its style and size with the `grid_style` and `grid_size` parameters
* the ticks on the axis can be changed with the `x_ticks`, `y_ticks` and `z_ticks` parameters

Since `version 1.4.0` both plotting methods can take function objects as kwargs, where the functions represent equations for the change of coordinates, thus allowing to change the coordinate system used for plotting.

```
import CLUEstering as clue

clust = clue.clusterer(1., 5., 1.5)
clust.read_data(data)

# Plot the data in polar coordinates
clust.input_plotter(x0=lambda x: np.sqrt(x[0]**2 + x[1]**2),
                    x1=lambda x: np.arctan2(x[1], x[0]))
clust.run_clue()
```
This is particularly useful when the data has some kind of simmetry, which allows it to be clustered more easily in another coordinate system.

## Writing the results of the clustering to file
The results of the clustering can be saved to a csv file for later analysis, using the method `to_csv`.  
This method taks as parameter the path to the `output_folder` and the `file_name`, where the name of the file must include the `.csv` suffix.  
The data saved on the file include the entire input, so the points' coordinates and weights, as well as their `cluster_id`s, an integer that indicates to what cluster they belong, and `is_seed`, a boolean value indicating whether a point is a seed or not.
```
import CLUEstering as clue

clust = clue.clusterer(1., 5., 1.5)
clust.read_data(data)
clust.run_clue()
clust.to_csv('./output/', 'data_results.csv')
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "CLUEstering",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Python,Clustering,Binding",
    "author": "Simone Balducci",
    "author_email": "simone.balducci00@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/4a/2c/936653bf0672f2aeae541e3e4f5eeb51b6a76928b87f85b5dfb799dd009c/CLUEstering-2.2.0.tar.gz",
    "platform": null,
    "description": "# CLUEstering \nThe CLUE algorithm is a clustering algorithm written at CERN (https://www.frontiersin.org/articles/10.3389/fdata.2020.591315/full).\n\nThe original algorithm was designed to work in 2 dimensions, with the data distributed in parallel layers.\nUnlike other clustering algorithms, CLUE takes the coordinates of the points and also their weight, which represents their energy, and calculates the energy density of each point.\nThis energy density is used to find the seeds for each cluster, their followers and the outliers, which are dismissed as noise.\nCLUE takes 4 parameters in input: \n* `dc_`, which is the side of the box inside of which the density of a point is calculated;\n* `rhoc`, which is the minimum energy density that a point must have to not be considered an outlier,\n* `outlierDeltaFactor`, that multiplied by dc_ gives dm_, the side of the box inside of which the followers of a point are searched;\n* `pointsPerBin`, which is the average number of points that are to be found inside a bin. This value allows to control the size of the bins.\n\nThis library generalizes the original algorithm, making it N-dimensional, and turns it into a general purpose algorithm, usable by any user and applicaple to a wider range of applications, in particular outside particle physics.\n\nThe C++ code is binded using PyBind11, and the module is created locally during the installation of the library.\n\nIn the library is defined the `clusterer` class, which contains the methods for reading the data, running the algorithm, plotting the data both in input and output, and others.  \nOutside of the class is also defined the function test_blobs, which takes the number of points and the number of dimensions, and is a way to test quickly the library, producing some N-dimensional blobs.\n\nBelow is shown a basic example of how the library can be used:\n```\nimport CLUEstering as clue\n\nclust = clue.clusterer(.4, 2., 1.5)\nclust.read_data(clue.test_blobs(1000,2))\nclust.run_clue()\nclust.cluster_plotter()\n```\n\n<p align=\"center\">\n  <img width=\"380\" height=\"380\" src=\"https://raw.githubusercontent.com/cms-patatrack/CLUEstering/main/images/blobwithnoise.png\">\n</p>\n\n## Heterogeneous backend support with `Alpaka`\nSince version `2.0.0` the pybind module is compiled for all the supported backends using the `Alpaka` portability library (https://github.com/alpaka-group/alpaka).  \nCurrently the supported backends include:\n* CPU serial\n* CPU parallel using TBB\n* NVIDIA GPUs\n* AMD GPUs  \n\nThe modules are compiled automatically at the moment of installation, and the user can choose the backend to use when running by passing a parameter to the\n`run_clue` method.\n```\nclust.run_clue(\"cpu serial\")\nclust.run_clue(\"cpu tbb\")\nclust.run_clue(\"gpu cuda\")\nclust.run_clue(\"gpu hip\")\n```\nIf no argument is passed, by default the serial backend is used.  \nIt is possible to list all the available devices with the `list_devices` method. If no argument is passed, the method lists all the devices for all the backends,\nbut it's also possible to specify the backend whose devices want to be listed.\n```\n# list devices for all backends\nc.list_devices()\n# specify the backend\nc.list_devices('cpu serial')\nc.list_devices('cpu tbb')\nc.list_devices('gpu cuda')\nc.list_devices('gpu hip')\n```\n\n## The `clusterer` class\nThe `clusterer` class represents a wrapper class around the method `mainRun`, which is binded from `C++` and that is the method that runs the CLUE algorithm.  \nWhen an instance of this class is created, it requires at least three parameters: `dc`, `rhoc` and `outlierDeltaFactor`. There is a fourth parameter, `pPBin`, which represents the desired average number of points found in each of the bins that the clustering space is divided into. This parameter has a default value of `10`.  \nThe parameters `dc`, `rhoc` and `outlierDeltaFactor` must be `floats` or a type convertible to a `float`. `ppBin`, on the other hand, is an `integer`.\n\nThe class has several methods:\n* `read_data`, which takes the data in input and inizializes the class members. The data can be in the form of list, numpy array, dictionary, string containing the path to a csv file or pandas DataFrame;\n* `change_coordinates`, which allows to change the coordinate system used for clustering;\n* `change_domains`, which allows to change the domain ranges of any eventual periodic coordinates;\n* `choose_kernel`, which allows to change the convolution kernel used when calculating the local density of each point. The default kernel is a flat kernel with parameter `0.5`, but it can be changed to an exponential or gaussian kernel, or a custom kernel, which is user defined and can be any continuous function;\n* `run_clue`, which runs the CLUE algorithm;\n* `list_devices`, which lists all the available devices for the supported backends;\n* `input_plotter`, which plots all the points in input. This method is useful for getting an idea of the shape of the dataset before clustering. In addition to some plot customizations (like the colour or the size of the points, the addition of a grid, the axis labels and so on) it's also possible to pass the functions for the change of coordinates and change the coordinate system used for plotting.\n* `cluster_plotter`, which plots the data using a different colour for each cluster. The seeds are indicated by stars and the outliers by small grey crosses.\n* `to_csv`, which takes two strings, the first containing the path to a folder and the second containing the desired name for the csv file (also with the .csv suffix) and produces the csv file containing the cluster informations.\n\n\n## Reading data\nData is read with the `read_data` method.  \nFor the data to be acceptable, it must contain the values of at least one coordinate for all the points, and their `weights`. The `weights` of the points represent their relative importance in the dataset, so in most cases they can all be set to 1. There are several accepted formats for providing the data:  \n* `string`, where the string contains the relative path to a `csv` file. The file must contain at least one column for the coordinates, which must be named as `x*` (`x0`, `x1`, ecc.) and one column for the `weight`\n* `pandas.DataFrame`, where the columns for the coordinates must be named `x*` (`x1`, `x2`, ecc.) and one column should contain the `weight`\n* `list` or `np.ndarray`, where the coordinate data should be provided as a list of lists (or array of arrays), and the weights inserted in a second, separate list/array\n* `dictionary`, where the coordinate data must be contained in lists, each with key `x*` (``, ``, ecc.) and the weights in another list with key `weight`\n\n## Generating a test dataset with `test_blobs`\nIf a user wants to test the library without using real data, they can easily do so using the `test_blobs` method.\n`test_blobs` generates a dataset containing any number of gaussian blobs (4 by default), i.e. regular distributions of points distributed gaussianly in a round shape. These blobs can be generated in 2 or 3 dimensions.  \nIt is possible to customize:\n* the number of points in the dataset, through the parameter `n_samples`\n* how spread out the points are, through the `mean` and `sigma` parameters\n* the spatial span over which these blobs are placed, throught the parameters `x_max` and `y_max`. By modifying this parameters it's possible to make the blobs more crammed or more well separated, thus making it harder or easier to clusterize them\n\n## Change of kernels for the calculation of local density\nSince `version 1.3.0` it is possible to choose what kernel to use when calculating the local density of each point. \nThe default choices are `gaussian`, `exponential` and `flat`. Each of the kernels require a list of parameters:\n* `flat`, takes a single parameter\n* `exp`, takes two parameters, the amplitude and the mean.\n* `gaus`, takes three parameters, the amplitude, the mean and the standard deviation.   \n\nThe default kernel is a flat kernel with parameter `0.5`.\nThe different kernels can be chosen using the `choose_kernel` method. It is also possible to use a user-defined kernel, by passing it as a function object. Custom kernels require an empty list to be passed as parameters.  \nThe functions used to define a custom kernel should take three parameters: \n* The distance `dist_ij` between the two points.\n* The id `point_id` of the fixed point.\n* The id `j` of the neighbouring points.\n\n```\nimport CLUEstering as clue\n\nclust = clue.clusterer(1., 5., 1.5) # the default kernel is flat(0.5)\n\n# Change to an exponential kernel \nclust.choose_kernel('exp', [1. 1.5])\n\n# Now use a custom kernel, a linear function\nclust.choose_kernel('custom', [], lambda x, y, z: 2 * x)\n```\n\n## Input and cluster `plotter` methods\nThe `input_plotter` and `cluster_plotter` methods two plotting methods based on matplotlib. `input_plotter` is intenteded to be used as a way to observe the data before clustering and getting an idea of the expected result, whereas `cluster_plotter` plots the results of the clustering, plotting the points corresponding to the same cluster with the same colour and the outliers as small grey crosses.  \nBoth methods allow for a wide range of customizations:\n* the title of the plot and its size can be changed with the `plot_title` and `title_size` parameters\n* the labels of the axis can be changed with the `x_label`, `y_label` and `z_label` parameters\n* the size and colour of the points. In the cluster plotter it is possible to change the size of the three classes of points (normal, seed and outlier) singularly\n* it's possible to add a grid to the point with the `grid` boolean parameter, and change its style and size with the `grid_style` and `grid_size` parameters\n* the ticks on the axis can be changed with the `x_ticks`, `y_ticks` and `z_ticks` parameters\n\nSince `version 1.4.0` both plotting methods can take function objects as kwargs, where the functions represent equations for the change of coordinates, thus allowing to change the coordinate system used for plotting.\n\n```\nimport CLUEstering as clue\n\nclust = clue.clusterer(1., 5., 1.5)\nclust.read_data(data)\n\n# Plot the data in polar coordinates\nclust.input_plotter(x0=lambda x: np.sqrt(x[0]**2 + x[1]**2),\n                    x1=lambda x: np.arctan2(x[1], x[0]))\nclust.run_clue()\n```\nThis is particularly useful when the data has some kind of simmetry, which allows it to be clustered more easily in another coordinate system.\n\n## Writing the results of the clustering to file\nThe results of the clustering can be saved to a csv file for later analysis, using the method `to_csv`.  \nThis method taks as parameter the path to the `output_folder` and the `file_name`, where the name of the file must include the `.csv` suffix.  \nThe data saved on the file include the entire input, so the points' coordinates and weights, as well as their `cluster_id`s, an integer that indicates to what cluster they belong, and `is_seed`, a boolean value indicating whether a point is a seed or not.\n```\nimport CLUEstering as clue\n\nclust = clue.clusterer(1., 5., 1.5)\nclust.read_data(data)\nclust.run_clue()\nclust.to_csv('./output/', 'data_results.csv')\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A library that generalizes the original 2-dimensional CLUE",
    "version": "2.2.0",
    "project_urls": null,
    "split_keywords": [
        "python",
        "clustering",
        "binding"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a2c936653bf0672f2aeae541e3e4f5eeb51b6a76928b87f85b5dfb799dd009c",
                "md5": "05a7e2e58d16a7107d5904450786311d",
                "sha256": "f83c75a2fbd3455b5b08682a11e6c379fedfab11cf0cca09bbf0cf8b84908705"
            },
            "downloads": -1,
            "filename": "CLUEstering-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "05a7e2e58d16a7107d5904450786311d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 3303428,
            "upload_time": "2024-03-19T17:24:24",
            "upload_time_iso_8601": "2024-03-19T17:24:24.426432Z",
            "url": "https://files.pythonhosted.org/packages/4a/2c/936653bf0672f2aeae541e3e4f5eeb51b6a76928b87f85b5dfb799dd009c/CLUEstering-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-19 17:24:24",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "cluestering"
}
        
Elapsed time: 0.21023s