juniper-ml 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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Overtoad
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,78 @@
1
+ Metadata-Version: 2.4
2
+ Name: juniper-ml
3
+ Version: 0.1.0
4
+ Summary: Juniper - Cascade Correlation Neural Network Research Platform
5
+ Author: Paul Calnon
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pcalnon/juniper
8
+ Project-URL: Repository, https://github.com/pcalnon/juniper
9
+ Project-URL: Issues, https://github.com/pcalnon/juniper/issues
10
+ Keywords: juniper,cascade-correlation,neural-network,machine-learning,artificial-intelligence,research,dynamic-neural-network
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.12
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Provides-Extra: clients
25
+ Requires-Dist: juniper-data-client>=0.3.0; extra == "clients"
26
+ Requires-Dist: juniper-cascor-client>=0.1.0; extra == "clients"
27
+ Provides-Extra: worker
28
+ Requires-Dist: juniper-cascor-worker>=0.1.0; extra == "worker"
29
+ Provides-Extra: all
30
+ Requires-Dist: juniper[clients,worker]; extra == "all"
31
+ Dynamic: license-file
32
+
33
+ # juniper
34
+
35
+ Meta-package for the Juniper-ML Project, a Research Platform for investigating dynamic neural networks and novel learning algorithms. Prototype implementation uses Cascade Correlation neural networks.
36
+
37
+ ## Installation
38
+
39
+ Install all client libraries and the distributed worker:
40
+
41
+ ```bash
42
+ pip install juniper[all]
43
+ ```
44
+
45
+ Or install selectively:
46
+
47
+ ```bash
48
+ pip install juniper[clients] # All client libraries
49
+ pip install juniper[worker] # Distributed training worker
50
+ ```
51
+
52
+ ## Packages
53
+
54
+ | Package | Description | Install |
55
+ |---------|-------------|---------|
56
+ | [juniper-data-client](https://github.com/pcalnon/juniper-data-client) | HTTP client for the JuniperData dataset generation service | `pip install juniper-data-client` |
57
+ | [juniper-cascor-client](https://github.com/pcalnon/juniper-cascor-client) | HTTP/WebSocket client for the JuniperCascor neural network training service | `pip install juniper-cascor-client` |
58
+ | [juniper-cascor-worker](https://github.com/pcalnon/juniper-cascor-worker) | Remote candidate training worker for distributed CasCor training | `pip install juniper-cascor-worker` |
59
+
60
+ ## Extras
61
+
62
+ | Extra | Packages Included |
63
+ |-------|-------------------|
64
+ | `clients` | `juniper-data-client`, `juniper-cascor-client` |
65
+ | `worker` | `juniper-cascor-worker` |
66
+ | `all` | All of the above |
67
+
68
+ ## About Juniper
69
+
70
+ Juniper is an AI/ML research platform implementing the Cascade Correlation Neural Network algorithm (Fahlman & Lebiere, 1990). The platform includes:
71
+
72
+ - **JuniperCascor** - Cascade Correlation neural network training service
73
+ - **JuniperData** - Dataset generation and management service
74
+ - **JuniperCanopy** - Real-time monitoring dashboard
75
+
76
+ ## License
77
+
78
+ MIT License - Copyright (c) 2024-2026 Paul Calnon
@@ -0,0 +1,46 @@
1
+ # juniper
2
+
3
+ Meta-package for the Juniper-ML Project, a Research Platform for investigating dynamic neural networks and novel learning algorithms. Prototype implementation uses Cascade Correlation neural networks.
4
+
5
+ ## Installation
6
+
7
+ Install all client libraries and the distributed worker:
8
+
9
+ ```bash
10
+ pip install juniper[all]
11
+ ```
12
+
13
+ Or install selectively:
14
+
15
+ ```bash
16
+ pip install juniper[clients] # All client libraries
17
+ pip install juniper[worker] # Distributed training worker
18
+ ```
19
+
20
+ ## Packages
21
+
22
+ | Package | Description | Install |
23
+ |---------|-------------|---------|
24
+ | [juniper-data-client](https://github.com/pcalnon/juniper-data-client) | HTTP client for the JuniperData dataset generation service | `pip install juniper-data-client` |
25
+ | [juniper-cascor-client](https://github.com/pcalnon/juniper-cascor-client) | HTTP/WebSocket client for the JuniperCascor neural network training service | `pip install juniper-cascor-client` |
26
+ | [juniper-cascor-worker](https://github.com/pcalnon/juniper-cascor-worker) | Remote candidate training worker for distributed CasCor training | `pip install juniper-cascor-worker` |
27
+
28
+ ## Extras
29
+
30
+ | Extra | Packages Included |
31
+ |-------|-------------------|
32
+ | `clients` | `juniper-data-client`, `juniper-cascor-client` |
33
+ | `worker` | `juniper-cascor-worker` |
34
+ | `all` | All of the above |
35
+
36
+ ## About Juniper
37
+
38
+ Juniper is an AI/ML research platform implementing the Cascade Correlation Neural Network algorithm (Fahlman & Lebiere, 1990). The platform includes:
39
+
40
+ - **JuniperCascor** - Cascade Correlation neural network training service
41
+ - **JuniperData** - Dataset generation and management service
42
+ - **JuniperCanopy** - Real-time monitoring dashboard
43
+
44
+ ## License
45
+
46
+ MIT License - Copyright (c) 2024-2026 Paul Calnon
@@ -0,0 +1,78 @@
1
+ Metadata-Version: 2.4
2
+ Name: juniper-ml
3
+ Version: 0.1.0
4
+ Summary: Juniper - Cascade Correlation Neural Network Research Platform
5
+ Author: Paul Calnon
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/pcalnon/juniper
8
+ Project-URL: Repository, https://github.com/pcalnon/juniper
9
+ Project-URL: Issues, https://github.com/pcalnon/juniper/issues
10
+ Keywords: juniper,cascade-correlation,neural-network,machine-learning,artificial-intelligence,research,dynamic-neural-network
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.12
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Provides-Extra: clients
25
+ Requires-Dist: juniper-data-client>=0.3.0; extra == "clients"
26
+ Requires-Dist: juniper-cascor-client>=0.1.0; extra == "clients"
27
+ Provides-Extra: worker
28
+ Requires-Dist: juniper-cascor-worker>=0.1.0; extra == "worker"
29
+ Provides-Extra: all
30
+ Requires-Dist: juniper[clients,worker]; extra == "all"
31
+ Dynamic: license-file
32
+
33
+ # juniper
34
+
35
+ Meta-package for the Juniper-ML Project, a Research Platform for investigating dynamic neural networks and novel learning algorithms. Prototype implementation uses Cascade Correlation neural networks.
36
+
37
+ ## Installation
38
+
39
+ Install all client libraries and the distributed worker:
40
+
41
+ ```bash
42
+ pip install juniper[all]
43
+ ```
44
+
45
+ Or install selectively:
46
+
47
+ ```bash
48
+ pip install juniper[clients] # All client libraries
49
+ pip install juniper[worker] # Distributed training worker
50
+ ```
51
+
52
+ ## Packages
53
+
54
+ | Package | Description | Install |
55
+ |---------|-------------|---------|
56
+ | [juniper-data-client](https://github.com/pcalnon/juniper-data-client) | HTTP client for the JuniperData dataset generation service | `pip install juniper-data-client` |
57
+ | [juniper-cascor-client](https://github.com/pcalnon/juniper-cascor-client) | HTTP/WebSocket client for the JuniperCascor neural network training service | `pip install juniper-cascor-client` |
58
+ | [juniper-cascor-worker](https://github.com/pcalnon/juniper-cascor-worker) | Remote candidate training worker for distributed CasCor training | `pip install juniper-cascor-worker` |
59
+
60
+ ## Extras
61
+
62
+ | Extra | Packages Included |
63
+ |-------|-------------------|
64
+ | `clients` | `juniper-data-client`, `juniper-cascor-client` |
65
+ | `worker` | `juniper-cascor-worker` |
66
+ | `all` | All of the above |
67
+
68
+ ## About Juniper
69
+
70
+ Juniper is an AI/ML research platform implementing the Cascade Correlation Neural Network algorithm (Fahlman & Lebiere, 1990). The platform includes:
71
+
72
+ - **JuniperCascor** - Cascade Correlation neural network training service
73
+ - **JuniperData** - Dataset generation and management service
74
+ - **JuniperCanopy** - Real-time monitoring dashboard
75
+
76
+ ## License
77
+
78
+ MIT License - Copyright (c) 2024-2026 Paul Calnon
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ juniper_ml.egg-info/PKG-INFO
5
+ juniper_ml.egg-info/SOURCES.txt
6
+ juniper_ml.egg-info/dependency_links.txt
7
+ juniper_ml.egg-info/requires.txt
8
+ juniper_ml.egg-info/top_level.txt
@@ -0,0 +1,10 @@
1
+
2
+ [all]
3
+ juniper[clients,worker]
4
+
5
+ [clients]
6
+ juniper-data-client>=0.3.0
7
+ juniper-cascor-client>=0.1.0
8
+
9
+ [worker]
10
+ juniper-cascor-worker>=0.1.0
@@ -0,0 +1,43 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "juniper-ml"
7
+ version = "0.1.0"
8
+ description = "Juniper - Cascade Correlation Neural Network Research Platform"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ authors = [{ name = "Paul Calnon" }]
12
+ requires-python = ">=3.12"
13
+ keywords = ["juniper", "cascade-correlation", "neural-network", "machine-learning", "artificial-intelligence", "research", "dynamic-neural-network"]
14
+ classifiers = [
15
+ "Development Status :: 3 - Alpha",
16
+ "Intended Audience :: Developers",
17
+ "Intended Audience :: Science/Research",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.12",
21
+ "Programming Language :: Python :: 3.13",
22
+ "Programming Language :: Python :: 3.14",
23
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
24
+ "Topic :: Software Development :: Libraries :: Python Modules",
25
+ ]
26
+ dependencies = []
27
+
28
+ [project.optional-dependencies]
29
+ clients = [
30
+ "juniper-data-client>=0.3.0",
31
+ "juniper-cascor-client>=0.1.0",
32
+ ]
33
+ worker = [
34
+ "juniper-cascor-worker>=0.1.0",
35
+ ]
36
+ all = [
37
+ "juniper[clients,worker]",
38
+ ]
39
+
40
+ [project.urls]
41
+ Homepage = "https://github.com/pcalnon/juniper"
42
+ Repository = "https://github.com/pcalnon/juniper"
43
+ Issues = "https://github.com/pcalnon/juniper/issues"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+