nystrom-ncut 0.3.6__tar.gz → 0.3.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. {nystrom_ncut-0.3.6/src/nystrom_ncut.egg-info → nystrom_ncut-0.3.7}/PKG-INFO +3 -2
  2. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/pyproject.toml +1 -1
  3. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/sampling_utils.py +7 -0
  4. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7/src/nystrom_ncut.egg-info}/PKG-INFO +3 -2
  5. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/LICENSE +0 -0
  6. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/MANIFEST.in +0 -0
  7. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/README.md +0 -0
  8. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/requirements.txt +0 -0
  9. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/setup.cfg +0 -0
  10. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/__init__.py +0 -0
  11. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/__init__.py +0 -0
  12. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/common.py +0 -0
  13. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/distance_utils.py +0 -0
  14. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/global_settings.py +0 -0
  15. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/kernel/__init__.py +0 -0
  16. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/kernel/kernel_ncut.py +0 -0
  17. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/nystrom/__init__.py +0 -0
  18. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/nystrom/distance_realization.py +0 -0
  19. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/nystrom/normalized_cut.py +0 -0
  20. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/nystrom/nystrom_utils.py +0 -0
  21. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/transformer/__init__.py +0 -0
  22. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/transformer/axis_align.py +0 -0
  23. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/transformer/transformer_mixin.py +0 -0
  24. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut/visualize_utils.py +0 -0
  25. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut.egg-info/SOURCES.txt +0 -0
  26. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut.egg-info/dependency_links.txt +0 -0
  27. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/src/nystrom_ncut.egg-info/top_level.txt +0 -0
  28. {nystrom_ncut-0.3.6 → nystrom_ncut-0.3.7}/tests/test.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: nystrom_ncut
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: Normalized Cut and Nyström Approximation
5
5
  Author-email: Huzheng Yang <huze.yann@gmail.com>, Wentinn Liao <wentinn.liao@gmail.com>
6
6
  Project-URL: Documentation, https://github.com/JophiArcana/Nystrom-NCUT/
@@ -11,6 +11,7 @@ Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
+ Dynamic: license-file
14
15
 
15
16
 
16
17
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "nystrom_ncut"
7
- version = "0.3.6"
7
+ version = "0.3.7"
8
8
  authors = [
9
9
  { name = "Huzheng Yang", email = "huze.yann@gmail.com" },
10
10
  { name = "Wentinn Liao", email = "wentinn.liao@gmail.com" },
@@ -186,6 +186,13 @@ class OnlineTransformerSubsampleFit(TorchTransformerMixin, OnlineTorchTransforme
186
186
  V.scatter_(-2, indices[..., None].expand([-1] * indices.ndim + [V_sampled.shape[-1]]), _V)
187
187
  else:
188
188
  V = V_sampled
189
+ # from .visualize_utils import extrapolate_knn
190
+ # V = extrapolate_knn(
191
+ # anchor_features=self.base_transformer.anchor_features,
192
+ # anchor_output=V_sampled,
193
+ # extrapolation_features=features,
194
+ # affinity_type="rbf",
195
+ # )
189
196
  return V
190
197
 
191
198
  def update(self, features: torch.Tensor) -> torch.Tensor:
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: nystrom_ncut
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: Normalized Cut and Nyström Approximation
5
5
  Author-email: Huzheng Yang <huze.yann@gmail.com>, Wentinn Liao <wentinn.liao@gmail.com>
6
6
  Project-URL: Documentation, https://github.com/JophiArcana/Nystrom-NCUT/
@@ -11,6 +11,7 @@ Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
+ Dynamic: license-file
14
15
 
15
16
 
16
17
 
File without changes
File without changes
File without changes
File without changes
File without changes