geokde-t2 0.1.0__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.
- geokde_t2-0.1.0/PKG-INFO +38 -0
- geokde_t2-0.1.0/README.md +29 -0
- geokde_t2-0.1.0/geokde/__init__.py +2 -0
- geokde_t2-0.1.0/geokde_t2.egg-info/PKG-INFO +38 -0
- geokde_t2-0.1.0/geokde_t2.egg-info/SOURCES.txt +8 -0
- geokde_t2-0.1.0/geokde_t2.egg-info/dependency_links.txt +1 -0
- geokde_t2-0.1.0/geokde_t2.egg-info/requires.txt +1 -0
- geokde_t2-0.1.0/geokde_t2.egg-info/top_level.txt +1 -0
- geokde_t2-0.1.0/pyproject.toml +14 -0
- geokde_t2-0.1.0/setup.cfg +4 -0
geokde_t2-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: geokde-t2
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Geospatial Kernel Density Estimation (KDE) on Toroidal Manifolds (Standalone Module)
|
|
5
|
+
Author-email: Liviu Ioan Cadar <lee@axiom-corp.com>
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: axiom-t2>=0.1.2
|
|
9
|
+
|
|
10
|
+
# geokde-t2
|
|
11
|
+
|
|
12
|
+
**Geospatial Kernel Density Estimation (KDE) on Toroidal Manifolds (Standalone Module)**
|
|
13
|
+
|
|
14
|
+
This is a standalone module of the `axiom-t2` geometry-aware machine learning toolkit for toroidal manifolds. It provides standalone packaging for applications requiring a lightweight dependency footprint.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install geokde-t2
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
from geokde import GeoKDE, flat_kde
|
|
26
|
+
import numpy as np
|
|
27
|
+
|
|
28
|
+
# Fit GeoKDE on geospatial data in radians
|
|
29
|
+
X = np.random.uniform(-np.pi, np.pi, (100, 2))
|
|
30
|
+
kde = GeoKDE()
|
|
31
|
+
kde.fit(X)
|
|
32
|
+
scores = kde.score_samples(X[:5])
|
|
33
|
+
print("Log-likelihoods:", scores)
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Reference
|
|
37
|
+
|
|
38
|
+
For the underlying mathematics and details on toroidal manifolds, please refer to the main toolkit paper: `axiom_t2_toolkit_paper.pdf`.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# geokde-t2
|
|
2
|
+
|
|
3
|
+
**Geospatial Kernel Density Estimation (KDE) on Toroidal Manifolds (Standalone Module)**
|
|
4
|
+
|
|
5
|
+
This is a standalone module of the `axiom-t2` geometry-aware machine learning toolkit for toroidal manifolds. It provides standalone packaging for applications requiring a lightweight dependency footprint.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install geokde-t2
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick Start
|
|
14
|
+
|
|
15
|
+
```python
|
|
16
|
+
from geokde import GeoKDE, flat_kde
|
|
17
|
+
import numpy as np
|
|
18
|
+
|
|
19
|
+
# Fit GeoKDE on geospatial data in radians
|
|
20
|
+
X = np.random.uniform(-np.pi, np.pi, (100, 2))
|
|
21
|
+
kde = GeoKDE()
|
|
22
|
+
kde.fit(X)
|
|
23
|
+
scores = kde.score_samples(X[:5])
|
|
24
|
+
print("Log-likelihoods:", scores)
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Reference
|
|
28
|
+
|
|
29
|
+
For the underlying mathematics and details on toroidal manifolds, please refer to the main toolkit paper: `axiom_t2_toolkit_paper.pdf`.
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: geokde-t2
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Geospatial Kernel Density Estimation (KDE) on Toroidal Manifolds (Standalone Module)
|
|
5
|
+
Author-email: Liviu Ioan Cadar <lee@axiom-corp.com>
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: axiom-t2>=0.1.2
|
|
9
|
+
|
|
10
|
+
# geokde-t2
|
|
11
|
+
|
|
12
|
+
**Geospatial Kernel Density Estimation (KDE) on Toroidal Manifolds (Standalone Module)**
|
|
13
|
+
|
|
14
|
+
This is a standalone module of the `axiom-t2` geometry-aware machine learning toolkit for toroidal manifolds. It provides standalone packaging for applications requiring a lightweight dependency footprint.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install geokde-t2
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
from geokde import GeoKDE, flat_kde
|
|
26
|
+
import numpy as np
|
|
27
|
+
|
|
28
|
+
# Fit GeoKDE on geospatial data in radians
|
|
29
|
+
X = np.random.uniform(-np.pi, np.pi, (100, 2))
|
|
30
|
+
kde = GeoKDE()
|
|
31
|
+
kde.fit(X)
|
|
32
|
+
scores = kde.score_samples(X[:5])
|
|
33
|
+
print("Log-likelihoods:", scores)
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Reference
|
|
37
|
+
|
|
38
|
+
For the underlying mathematics and details on toroidal manifolds, please refer to the main toolkit paper: `axiom_t2_toolkit_paper.pdf`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
axiom-t2>=0.1.2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
geokde
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "geokde-t2"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Geospatial Kernel Density Estimation (KDE) on Toroidal Manifolds (Standalone Module)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [{name="Liviu Ioan Cadar", email="lee@axiom-corp.com"}]
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
dependencies = [
|
|
13
|
+
"axiom-t2>=0.1.2"
|
|
14
|
+
]
|