-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
# PinkPony | ||
Pink pony is a free software command-line application that suggest modules based on the common changes on git. Now it is under construction but when it will be ready tou will love it.! | ||
Pink pony is a free software command-line application that suggest functional clusters based on the common changes on git. | ||
> <i> What changes together should be also together </i> | ||
## Usage | ||
To run the Pink pony application you have to download the [recently released version](https://github.com/Pavlmits/PinkPony/releases/latest). | ||
|
||
#### Clustering algorithms options | ||
* `mr`: [Markov Clustering] is hard clustering algorithm; | ||
* `ch`: [Chinese Whispers] is a hard clustering algorithm; | ||
* `max`: [MaxMax] is a soft clustering algorithm for undirected graphs; | ||
* `watset`: [Watset] is a *local-global meta-algorithm* for fuzzy graph clustering. | ||
|
||
The implementation of the algorithms used from [Watset](https://github.com/nlpub/watset-java) | ||
|
||
#### Level of clustering | ||
Depends the investigation that you want to do, the application provides two kind of options. | ||
|
||
* `file` : Suggect functional clusters on file level. | ||
* `module` : Suggect functional clusters on module level. | ||
|
||
```bash | ||
java -jar pinkpony.jar path\to\.git file max | ||
``` | ||
|
||
[Markov Clustering]: https://doi.org/10.1137/040608635 | ||
[Chinese Whispers]: https://dl.acm.org/citation.cfm?id=1654774 | ||
[MaxMax]: https://doi.org/10.1007/978-3-642-37247-6_30 | ||
[Watset]: https://doi.org/10.1162/COLI_a_00354 |