ml4gw 0.7.2__tar.gz → 0.7.3__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.
Potentially problematic release.
This version of ml4gw might be problematic. Click here for more details.
- {ml4gw-0.7.2 → ml4gw-0.7.3}/PKG-INFO +2 -1
- {ml4gw-0.7.2 → ml4gw-0.7.3}/pyproject.toml +5 -5
- {ml4gw-0.7.2 → ml4gw-0.7.3}/LICENSE +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/README.md +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/augmentations.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/constants.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/dataloading/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/dataloading/chunked_dataset.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/dataloading/hdf5_dataset.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/dataloading/in_memory_dataset.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/distributions.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/gw.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/autoencoder/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/autoencoder/base.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/autoencoder/convolutional.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/autoencoder/skip_connection.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/autoencoder/utils.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/norm.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/resnet/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/resnet/resnet_1d.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/resnet/resnet_2d.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/streaming/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/streaming/online_average.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/nn/streaming/snapshotter.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/spectral.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/iirfilter.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/pearson.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/qtransform.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/scaler.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/snr_rescaler.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/spectral.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/spectrogram.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/spline_interpolation.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/transform.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/waveforms.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/transforms/whitening.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/types.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/utils/interferometer.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/utils/slicing.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/adhoc/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/adhoc/ringdown.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/adhoc/sine_gaussian.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/cbc/__init__.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/cbc/coefficients.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/cbc/phenom_d.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/cbc/phenom_d_data.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/cbc/phenom_p.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/cbc/taylorf2.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/cbc/utils.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/conversion.py +0 -0
- {ml4gw-0.7.2 → ml4gw-0.7.3}/ml4gw/waveforms/generator.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ml4gw
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.3
|
|
4
4
|
Summary: Tools for training torch models on gravitational wave data
|
|
5
5
|
Author: Alec Gunny
|
|
6
6
|
Author-email: alec.gunny@ligo.org
|
|
@@ -12,6 +12,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
13
|
Requires-Dist: jaxtyping (>=0.2,<0.3)
|
|
14
14
|
Requires-Dist: numpy (<2.0.0)
|
|
15
|
+
Requires-Dist: scipy (>=1.9.0,<1.15)
|
|
15
16
|
Requires-Dist: torch (>=2.0,<3.0)
|
|
16
17
|
Requires-Dist: torchaudio (>=2.0,<3.0)
|
|
17
18
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "ml4gw"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.3"
|
|
4
4
|
description = "Tools for training torch models on gravitational wave data"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -17,6 +17,10 @@ torch = "^2.0"
|
|
|
17
17
|
torchaudio = "^2.0"
|
|
18
18
|
numpy = "<2.0.0"
|
|
19
19
|
|
|
20
|
+
# versions >= 1.9. fix issue with median calculation
|
|
21
|
+
# https://github.com/scipy/scipy/issues/15601
|
|
22
|
+
scipy = ">=1.9.0,<1.15"
|
|
23
|
+
|
|
20
24
|
[tool.poetry.group.dev.dependencies]
|
|
21
25
|
coverage = {version = "^7.6.10", extras = ["toml"]}
|
|
22
26
|
pre-commit = "^2.16"
|
|
@@ -28,10 +32,6 @@ bilby = "^2.1"
|
|
|
28
32
|
jupyter = "^1.0.0"
|
|
29
33
|
gwpy = "^3.0"
|
|
30
34
|
|
|
31
|
-
# versions >= 1.9. fix issue with median calculation
|
|
32
|
-
# https://github.com/scipy/scipy/issues/15601
|
|
33
|
-
scipy = ">=1.9.0,<1.15"
|
|
34
|
-
|
|
35
35
|
Sphinx = ">5.0"
|
|
36
36
|
sphinx-rtd-theme = "^2.0.0"
|
|
37
37
|
myst-parser = "^2.0.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|