Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HDBSCAN from HorseML.jl #273

Open
wants to merge 47 commits into
base: master
Choose a base branch
from

Commits on Mar 22, 2024

  1. [add function or file]add hdbscan

    make PR
    MommaWatasu committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    23bbed1 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2024

  1. [test]add test for hdbscan

    there was no test for it
    MommaWatasu committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    fa44398 View commit details
    Browse the repository at this point in the history
  2. [fix]change Int64 to Int

    test failed on a ubuntu-latest-x86
    MommaWatasu committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    4e64fdf View commit details
    Browse the repository at this point in the history
  3. [fix]change all Int64 into Int

    tests still fails on ubuntu-latest-x86
    MommaWatasu committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    e294565 View commit details
    Browse the repository at this point in the history
  4. [change]change usage and remove extra code

    there were functions for Xmeans
    MommaWatasu committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    b851997 View commit details
    Browse the repository at this point in the history
  5. [test]update test

    deleted some utility functions
    MommaWatasu committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    7822a7c View commit details
    Browse the repository at this point in the history
  6. [docs]add docs for HDBSCAN

    Documentation workflow failed due to the docs for it
    MommaWatasu committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    8901cfe View commit details
    Browse the repository at this point in the history
  7. [fix]export HdbscanCluster

    I forgot to export it
    MommaWatasu committed Mar 23, 2024
    Configuration menu
    Copy the full SHA
    6de5d02 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2024

  1. [docs]merge docs of HDBSCAN with DBSCAN.md

    there is no need to create new file
    MommaWatasu committed Apr 14, 2024
    Configuration menu
    Copy the full SHA
    85c5644 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. [clean]refactoring HDBSCANGraph

    add comment and alias
    MommaWatasu committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    edcc70a View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2024

  1. [docs]fix docs

    hdbscan.md remains
    MommaWatasu committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    939ce65 View commit details
    Browse the repository at this point in the history
  2. [clean]refactoring

    the progress is temporary
    MommaWatasu committed Apr 26, 2024
    Configuration menu
    Copy the full SHA
    2f67d07 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2024

  1. [clean]refactoring

    add comment and improve performance, etc.
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    61463f2 View commit details
    Browse the repository at this point in the history
  2. [test]update test

    changes sugges alyst
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    09ed174 View commit details
    Browse the repository at this point in the history
  3. [fix]change isnothing into ===

    error occured with Julia1.10
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    6039c0c View commit details
    Browse the repository at this point in the history
  4. [fix]remove println

    forgot to remove debugging code
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    3cc7689 View commit details
    Browse the repository at this point in the history
  5. [docs]update docs

    add description for detail
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    1798148 View commit details
    Browse the repository at this point in the history
  6. [docs]fix docs

    fix links
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    a0a819e View commit details
    Browse the repository at this point in the history
  7. [fix]fix docstring

    add space
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    bf38eb6 View commit details
    Browse the repository at this point in the history
  8. [fix]add isnoise to the list of exprted function

    make isnoise available for user
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    380acf1 View commit details
    Browse the repository at this point in the history
  9. core_distances() tweaks

    alyst authored Apr 27, 2024
    Configuration menu
    Copy the full SHA
    6fdebe6 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ff98806 View commit details
    Browse the repository at this point in the history
  11. remove heappush!: unused

    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    64a202a View commit details
    Browse the repository at this point in the history
  12. hdbscan test: small tweaks

    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    661edbc View commit details
    Browse the repository at this point in the history
  13. fixup hdbscan assignments

    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    082c5e6 View commit details
    Browse the repository at this point in the history
  14. hdbscan: further opt core_dists

    we don't really need a function, this is one line operation
    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    c9db368 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    c205575 View commit details
    Browse the repository at this point in the history
  16. HDBSCANGraph -> HdbscanGraph

    for consistency
    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    bdf1aec View commit details
    Browse the repository at this point in the history
  17. HdbscanEdge

    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    9aa9841 View commit details
    Browse the repository at this point in the history
  18. HdbscanGraph: rename edges to adj_edges

    and remove Base.getindex()
    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    c9b9374 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    092ac40 View commit details
    Browse the repository at this point in the history
  20. refactor HdbscanMSTEdge

    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    c972caa View commit details
    Browse the repository at this point in the history
  21. hdbscan: fix graph vertices, remove add_edges!

    add_edges!() is used only once
    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    57b05e6 View commit details
    Browse the repository at this point in the history
  22. hdbscan_minspantree(): refactor

    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    f616795 View commit details
    Browse the repository at this point in the history
  23. prune_clusters!(): cleanup

    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    0f6e992 View commit details
    Browse the repository at this point in the history
  24. hdbscan: fix 1.0 compat

    replace eachcol with alternatives
    alyst committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    e01609b View commit details
    Browse the repository at this point in the history
  25. [docs]fix docstring

    add newline
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    de6b83a View commit details
    Browse the repository at this point in the history
  26. [clean]rename and refactoring

    cleanup UnionFind terminology and move it to the other file
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    38212ca View commit details
    Browse the repository at this point in the history
  27. [test]add test for unionfind

    there wes no test for it
    MommaWatasu committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    159858d View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2024

  1. Configuration menu
    Copy the full SHA
    a03c224 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3a577ea View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    744af22 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    8803573 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2024

  1. [clean]rename the result structure

    rename HdbscanCluster into HdbscanNode and create new one to expose to the user
    MommaWatasu committed May 1, 2024
    Configuration menu
    Copy the full SHA
    b94de25 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

  1. [hotfix]apply hot fix

    the algorithm went wrong
    MommaWatasu committed May 2, 2024
    Configuration menu
    Copy the full SHA
    7078223 View commit details
    Browse the repository at this point in the history
  2. [test]add test about min_size

    ensure that `min_size` effects properly
    MommaWatasu committed May 2, 2024
    Configuration menu
    Copy the full SHA
    b0791d9 View commit details
    Browse the repository at this point in the history
  3. [add function or file]support ClusteringResult

    add counts field into HdbscanResult
    MommaWatasu committed May 2, 2024
    Configuration menu
    Copy the full SHA
    dc5dd40 View commit details
    Browse the repository at this point in the history