sgwt 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.

Potentially problematic release.


This version of sgwt might be problematic. Click here for more details.

@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sgwt
3
- Version: 0.1.0
4
- Summary: A Spectral Graph Wavelet module for sparse networks
5
- Author-email: Luke Lowery <lukel@tamu.edu>
3
+ Version: 0.1.1
4
+ Summary: Tools for the Spectral Graph Wavelet Transformation
5
+ Author: Luke Lowery
6
6
  License: Apache License
7
7
  Version 2.0, January 2004
8
8
  http://www.apache.org/licenses/
@@ -208,36 +208,38 @@ License: Apache License
208
208
  Requires-Python: >=3.7
209
209
  Description-Content-Type: text/markdown
210
210
  License-File: LICENSE
211
+ Requires-Dist: scipy<=1.9.1
212
+ Requires-Dist: numpy<=1.23.2
211
213
 
212
- # sparse-sgwt
214
+ # Spectral Graph Wavelet Transformation (SGWT)
213
215
 
214
216
  A Collection of SGWT Functions for Large Sparse Networks
215
217
 
216
- ## About
218
+ ## Introduction
217
219
 
218
- Currently under construction at the moment, but a minimum viable code example is available.
220
+ A highly customizable, sparse-friendly SGWT module. Existing GSP tools for the SGWT over sparse networks is limited. This package provides tools to design, approximate, and implement a custom SGWT kernel for use over sparse networks.
219
221
 
220
- ## Installation
222
+ The specific implementation is adventagous, as it does not require any modification if the graph itself changes.
223
+
224
+
225
+ No documentation available yet, available soon.
226
+
227
+ ## Installation Notes
221
228
 
222
229
  More details will be added on specific versions for this python implementation.
223
230
 
224
- - Python 3.8
231
+ - Python 3.8.2
225
232
  - scikit-sparse
226
233
 
234
+ See below for instruction on scikit-sparse.
227
235
 
228
236
  https://github.com/scikit-sparse/scikit-sparse
229
237
 
230
238
 
231
- First
232
-
233
- conda install -c conda-forge scikit-sparse
234
-
235
- Then we need to enfore these versions for now
236
- - scipy
239
+ We enforce the following for compatability
237
240
  ```
238
241
  pip install --force-reinstall "scipy<=1.9.1"
239
- ```
240
- - numpy
241
- ```
242
242
  pip install --force-reinstall "numpy<=1.23.2"
243
243
  ```
244
+
245
+
@@ -4,8 +4,8 @@ sgwt/kernel/__init__.py,sha256=bcFpgQO48bRiCmkSqxX5ZG9u_xgASMrSbKoVomfvD20,32
4
4
  sgwt/kernel/design.py,sha256=_Db7bUzopx4Pp9YC8q0g2fS1ccCE9x2NhAYN7d4kOZI,3472
5
5
  sgwt/kernel/fitting.py,sha256=x5O241TYy8-XsxO-Fp531a_-GVoxnIgmtD1ZYg6_YQQ,2031
6
6
  sgwt/kernel/kernel.py,sha256=4PSYqniafLA7Swe9TJWYoh4zJamcOE2TiY_UIiGt0Bs,853
7
- sgwt-0.1.0.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
8
- sgwt-0.1.0.dist-info/METADATA,sha256=dBZoXpnH17fNvCu_8Gfol-z1nEHI4NUCvAfHPLRh8VA,13998
9
- sgwt-0.1.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
10
- sgwt-0.1.0.dist-info/top_level.txt,sha256=8LSxEs_qatRESXGTRxf80xaNVoBt5NeSp9jBXQIm23Y,5
11
- sgwt-0.1.0.dist-info/RECORD,,
7
+ sgwt-0.1.1.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
8
+ sgwt-0.1.1.dist-info/METADATA,sha256=PPn59g_QVlJJJQc074mWG4H4e9N6SsJQRwsHJNSDpQw,14356
9
+ sgwt-0.1.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
10
+ sgwt-0.1.1.dist-info/top_level.txt,sha256=8LSxEs_qatRESXGTRxf80xaNVoBt5NeSp9jBXQIm23Y,5
11
+ sgwt-0.1.1.dist-info/RECORD,,
File without changes
File without changes