Skip to content

Commit 65112cd

Browse files
authored
Merge pull request #7 from Yuan-Jinghui/main
Some additions and modifications to the README and tests.
2 parents 7675b89 + 7ec98e2 commit 65112cd

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ print(tree.score(X_test, y_test))
7979
- `manify.predictors.perceptron` - Product space perceptron
8080
- `manify.predictors.svm` - Product space SVM
8181

82+
**Clustering**
83+
- `manify.clustering.fuzzy_kmeans` - Riemannian fuzzy K-Means for clustering
84+
85+
**Optimizers**
86+
- `manify.optimizers.radan` - Riemannian version of Adan optimizer
87+
8288
**Utilities**
8389
- `manify.utils.benchmarks` - Tools for benchmarking
8490
- `manify.utils.dataloaders` - Loading datasets

notebooks/64_start_clustering.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@
104104
"import numpy as np\n",
105105
"# (curvature, dimension)\n",
106106
"signature = [\n",
107-
" (0.0, 4), # R^2 (Euclidean space)\n",
108-
" (1.0, 4), # S^2 (Spherical space)\n",
109-
" (-1.0, 4), # H^2 (Hyperbolic space)\n",
107+
" (0.0, 4), # R^4 (Euclidean space)\n",
108+
" (1.0, 4), # S^4 (Spherical space)\n",
109+
" (-1.0, 4), # H^4 (Hyperbolic space)\n",
110110
"]\n",
111111
"\n",
112112
"# 2. Construct the ProductManifold (without stereographic projection)\n",

0 commit comments

Comments
 (0)