Skip to main content

Juniper - Cascade Correlation Neural Network Research Platform

Project description

Juniper




Juniper: Dynamic Neural Network Research Platform

Juniper is an AI/ML research platform for investigating dynamic neural network architectures and novel learning paradigms. The project emphasizes ground-up implementations from primary literature, enabling a more transparent exploration of fundamental algorithms.

Juniper ML

juniper-ml is the public face of the Juniper platform on PyPI. It is the meta-distribution that aggregates the platform's services (juniper-canopy, juniper-cascor, juniper-data), client libraries (juniper-data-client, juniper-cascor-client), distributed worker (juniper-cascor-worker), and shared tooling (juniper-ci-tools, juniper-doc-tools, juniper-observability) behind a single installation entry point. The package additionally serves as the version-anchor for cross-component compatibility, the home of the platform-level documentation index, and the host repository from which the independently-tagged juniper-observability and juniper-doc-tools packages are published. External callers who want to interact with Juniper services from their own Python code should start here.

Distribution

juniper-ml is published on PyPI as juniper-ml. It provides a single installation entry point for the platform's client stack:

pip install juniper-ml[all]

Individual components — juniper-canopy, juniper-cascor, juniper-data, juniper-data-client, juniper-cascor-client, juniper-cascor-worker, juniper-ci-tools, juniper-doc-tools, and juniper-observability — remain installable in isolation for callers that require finer control over their dependency surface.

Ecosystem Compatibility

This meta-package is part of the Juniper ecosystem. The pyproject pins matching juniper-ml 0.5.0:

Package Pin Latest published
juniper-canopy >=0.3.0 0.3.0
juniper-cascor >=0.3.17 0.3.17
juniper-data >=0.6.0 0.6.0
juniper-data-client >=0.4.0 0.4.0
juniper-cascor-client >=0.3.0 0.3.0
juniper-cascor-worker >=0.3.0 0.3.0
juniper-ci-tools >=0.1.0 0.1.0
juniper-doc-tools >=0.1.0,<0.2.0 0.1.1
juniper-observability >=0.2.0 0.2.0

For full-stack Docker deployment and integration tests, see juniper-deploy.

Architecture

juniper-ml is a meta-package: it ships no importable code of its own. Its role is to declare, version, and install the libraries through which external callers interact with the platform's services. The diagram below reproduces the platform's dependency graph from the parent ecosystem documentation; juniper-ml sits at the bottom-right, aggregating the client side.

juniper-cascor ──uses──> juniper-data-client ──calls──> juniper-data
juniper-cascor ──managed by──> juniper-cascor-worker (distributed training, architectural only — no code import dependency)
juniper-cascor-client ──calls──> juniper-cascor (REST/WebSocket)
juniper-canopy ──uses──> juniper-data-client ──calls──> juniper-data
juniper-canopy ──uses──> juniper-cascor-client ──calls──> juniper-cascor
juniper-deploy ──orchestrates──> juniper-data, juniper-cascor, juniper-canopy (Docker)
juniper-ml ──meta-package──> juniper-canopy, juniper-cascor, juniper-data,
                              juniper-data-client, juniper-cascor-client, juniper-cascor-worker,
                              juniper-ci-tools, juniper-doc-tools, juniper-observability
juniper-ml ──hosts (independently published)──> juniper-observability, juniper-doc-tools

Related Services

Component Relationship Notes
juniper-canopy Aggregated under [servers] and [all] pip install juniper-canopy
juniper-cascor Aggregated under [servers] and [all] pip install juniper-cascor
juniper-data Aggregated under [servers] and [all] pip install juniper-data
juniper-data-client Aggregated under [clients] and [all] pip install juniper-data-client
juniper-cascor-client Aggregated under [clients] and [all] pip install juniper-cascor-client
juniper-cascor-worker Aggregated under [worker] and [all] pip install juniper-cascor-worker
juniper-ci-tools Aggregated under [tools] and [all]; published from this repository pip install juniper-ci-tools
juniper-doc-tools Aggregated under [doc-tools], [tools], and [all]; published from this repository pip install juniper-doc-tools
juniper-observability Aggregated under [tools] and [all]; published independently from this repository pip install "juniper-observability[all]"

Extras

Extra Packages Included
clients juniper-data-client>=0.4.0, juniper-cascor-client>=0.3.0
worker juniper-cascor-worker>=0.3.0
servers juniper-canopy>=0.3.0, juniper-cascor>=0.3.17, juniper-data>=0.6.0
tools juniper-ci-tools>=0.1.0, juniper-doc-tools>=0.1.0,<0.2.0, juniper-observability>=0.2.0
doc-tools juniper-doc-tools>=0.1.0,<0.2.0 (back-compat alias for the doc-tools entry in tools)
all All of the above

Active Research Components

The active research components of the Juniper platform are surfaced through the component repositories listed below. Each repository's README documents the algorithms, datasets, protocols, or operational primitives it implements; juniper-ml aggregates their client surfaces and does not host research code of its own.

Component Research artifact
juniper-cascor Cascade-Correlation reference implementation (Fahlman & Lebiere, 1990), candidate-pool training protocol, multi-network orchestration
juniper-data Dataset-generation service, named-version registry, ARC-AGI dataset families
juniper-canopy Real-time training-dynamics visualisation, network-topology renderer, WebSocket control surface
juniper-cascor-worker Distributed candidate-unit training over a WebSocket worker protocol
juniper-cascor-client REST + WebSocket training-stream and control-stream client protocols
juniper-observability Idempotent Prometheus collector helpers (register_or_reuse family), structured-JSON logging, Starlette middleware
juniper-doc-tools juniper-check-doc-links CLI for cross-repo and ecosystem-root markdown link validation

Quick Start Guide

Prerequisites

  • Python ≥ 3.12

The meta-package itself has no other prerequisites. Component-specific requirements (e.g. a running juniper-data or juniper-cascor service) are documented in the corresponding component repository.

Installation

pip install juniper-ml[all]            # all servers, clients, worker, and tools
pip install juniper-ml[servers]        # juniper-canopy + juniper-cascor + juniper-data
pip install juniper-ml[clients]        # juniper-data-client + juniper-cascor-client
pip install juniper-ml[worker]         # juniper-cascor-worker
pip install juniper-ml[tools]          # juniper-ci-tools + juniper-doc-tools + juniper-observability
pip install juniper-ml[doc-tools]      # juniper-doc-tools only (back-compat alias)

Verification

Confirm the client libraries are importable:

from juniper_data_client import JuniperDataClient
from juniper_cascor_client import JuniperCascorClient

Confirm the documentation tooling CLI is on PATH:

juniper-check-doc-links --version

Next Steps

Research Philosophy

The Juniper platform exists to study learning algorithms whose network architecture is not fixed in advance. Its initial anchor is the Cascade-Correlation algorithm of Fahlman and Lebiere (1990), implemented from the primary literature without recourse to higher-level abstractions that elide the algorithm's operational detail. The organising commitment is that algorithm implementations remain inspectable at the level at which they were originally specified: candidate units, correlation objectives, weight-freezing semantics, and the structural events that grow the network are first-class artifacts of the codebase rather than internal details of a library wrapper. This permits comparative work — across algorithms, datasets, and hyperparameter regimes — to be conducted on a known and reproducible substrate.

The current platform comprises a Cascade-Correlation training service exposing a REST and WebSocket interface, a dataset-generation service with a named-version registry that includes the ARC-AGI families, a real-time monitoring dashboard for inspecting training dynamics as they occur, and a distributed worker that parallelises candidate-unit training across hosts. Near-term work extends the architectural-growth catalogue beyond Cascade-Correlation, introduces multi-network orchestration for comparative experiments at the level of network populations rather than individual runs, and tightens the dataset–training–monitoring loop into a reproducible research workbench. The longer-term direction is the systematic empirical study of constructive and architecture-growing learning algorithms, with first-class infrastructure for the ablation, comparison, and replication that such a study requires.

Within this programme, juniper-ml is the integration surface: a single installation entry point that aggregates the client libraries needed to interact with the platform from external Python code, and a version-anchor that makes the compatibility of components legible at a glance.

Documentation

Document Purpose
docs/DOCUMENTATION_OVERVIEW.md Navigation index for all juniper-ml documentation
docs/QUICK_START.md Installation and verification guide
docs/REFERENCE.md Extras, compatibility matrix, environment variables, service ports
docs/DEVELOPER_CHEATSHEET_JUNIPER-ML.md Quick-reference card for development tasks
notes/README_NORMALIZATION_PLAN_2026-05-19.md Ecosystem-wide README normalization plan (this README is its reference implementation)
notes/RESEARCH_PHILOSOPHY_CANONICAL_DRAFT_2026-05-19.md Source-of-truth for the Research Philosophy text inlined above

License

MIT License — Copyright (c) 2024-2026 Paul Calnon

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

juniper_ml-0.5.0.tar.gz (39.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

juniper_ml-0.5.0-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file juniper_ml-0.5.0.tar.gz.

File metadata

  • Download URL: juniper_ml-0.5.0.tar.gz
  • Upload date:
  • Size: 39.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for juniper_ml-0.5.0.tar.gz
Algorithm Hash digest
SHA256 ef9c2256405728c22b2539c4a83614cce7d62b63cf974ba93a3f198d66bdf277
MD5 23afc6f83ca373f44911ee138d62ab3d
BLAKE2b-256 6b51da25a725f98be7fbf1f89ff74a651af6d437685ed575800e1a888810f006

See more details on using hashes here.

Provenance

The following attestation bundles were made for juniper_ml-0.5.0.tar.gz:

Publisher: publish.yml on pcalnon/juniper-ml

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file juniper_ml-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: juniper_ml-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 6.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for juniper_ml-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 20870cbeabd649191cbd1403c0d55c58f4394f7050b657c7bbb603a192e5e8fe
MD5 3f97fccbcba0569acf71037571882c26
BLAKE2b-256 b9cc641eed55db3ad2daf8985c434dcdcb96138aefa4b56ad3ed2fd25fde0a7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for juniper_ml-0.5.0-py3-none-any.whl:

Publisher: publish.yml on pcalnon/juniper-ml

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page