Skip to content

Commit

Permalink
core: change name to mudpod
Browse files Browse the repository at this point in the history
  • Loading branch information
prokolyvakis committed Oct 3, 2023
1 parent 3a7a737 commit bc63cc9
Show file tree
Hide file tree
Showing 14 changed files with 1,161 additions and 1,604 deletions.
14 changes: 7 additions & 7 deletions experiments/synthetic/clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

from experiments.common import plot_clustered_data
from experiments.synthetic.misc import load
from hdunim.clustering import DipMeans
from hdunim.projections import IdentityProjector
from hdunim.projections import JohnsonLindenstrauss
from hdunim.observer import PercentileObserver
from hdunim.observer import RandomObserver
from hdunim.projections import View
from hdunim.misc import set_seed
from mudpod.clustering import DipMeans
from mudpod.projections import IdentityProjector
from mudpod.projections import JohnsonLindenstrauss
from mudpod.observer import PercentileObserver
from mudpod.observer import RandomObserver
from mudpod.projections import View
from mudpod.misc import set_seed

SEED = 128

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2,733 changes: 1,145 additions & 1,588 deletions pdm.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "hdunim"
version = "0.0.1"
description = "Unimodality in High-Dimensional Euclidean Space"
name = "mudpod"
version = "0.1"
description = " Testing Unimodality in Multivariate Euclidean Space"
authors = [
{name = "Prodromos Kolyvakis", email = "[email protected]"},
]
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

from sklearn.datasets import make_blobs

from hdunim.misc import set_seed
from hdunim.projections import JohnsonLindenstrauss
from hdunim.observer import PercentileObserver
from hdunim.projections import View
from hdunim.unimodality import UnimodalityTest
from hdunim.unimodality import MonteCarloUnimodalityTest
from mudpod.misc import set_seed
from mudpod.projections import JohnsonLindenstrauss
from mudpod.observer import PercentileObserver
from mudpod.projections import View
from mudpod.unimodality import UnimodalityTest
from mudpod.unimodality import MonteCarloUnimodalityTest

set_seed(42)

Expand Down

0 comments on commit bc63cc9

Please sign in to comment.