HINTON LAB/Verdant OS · Intelligence

One brain, every farm.

Verdant OS is the operating system running on every Hinton Lab system — from the countertop One to the 12,000 m² Rotterdam Tower. Federated, audited, and getting smarter every week. Same code path. Same recipes. Same guarantees.

API & SDK docs Read the white paper
One brain,
Version
3.2.1
Decisions / day
~1.3B
Uptime (12 mo)
99.97%
Farms federated
1,420
/ Components

Six modules, one decision loop.

01

Vision

A 14M-parameter ViT runs on every OPT-2 canopy camera. Predicts chlorophyll, growth rate, stress markers and disease at a 4-second cadence.

02

Forecast

A learned dynamics model projects per-slot yield 14 days ahead with ±4.6% median error. Feeds the dispatch scheduler.

03

Control

Off-policy actor-critic policy decides setpoints for light, water, dosing, climate. Trained against a 36-hour reward horizon.

04

Federation

Each farm contributes labelled samples and gradient updates to a shared crop model. No raw images leave the customer's site.

05

Dispatch

When a canopy is ready, the room schedules its own harvest, books the chilled-lorry route, and notifies your POS.

06

Audit & explain

Every action — every dose, every light change — is timestamped, reproducible, and queryable for 7 years.

/ Architecture

Federated, not centralized.

Customer images never cross sites.

The OS runs partly at the edge — on an ARM module shipped inside every Verdant unit — and partly in our cloud. Inference is on-device; only aggregated gradient updates and depersonalized telemetry are sent up. The shared model improves; the raw imagery stays at the customer. This is not a marketing choice. It's the only way SOC 2 Type II and GDPR sign off at scale.

  • Cloud
    Multi-region (us-east-2, eu-central-1, ap-southeast-1). Read replicas per continent. 99.97% measured uptime.
  • Edge
    ARM SoC on every site. 7-day offline operation; resynchronizes when network returns. OTA updates with rollback.
  • Data plane
    Telemetry: 4 s tick × 1,420 sites × ~80 channels. ~14 TB/day ingested. Hot retention 90 d, cold 7 yr.
  • ML platform
    Federated learning on customer-resident gradients. Public weights, public benchmarks. No customer images cross sites.
/ Developer

An API built for ops teams.

// realtime telemetry
const ws = vd.stream({
  site: "rotterdam-1",
  metrics: ["canopy_density", "ph", "ec"],
});

ws.on("tick", ({ slot, m }) => {
  if (m.canopy_density > 0.92) {
    schedule.harvest(slot.id, "+24h");
  }
});

Read, react, dispatch.

Every signal the OS uses internally is available on the API: 84 REST endpoints, a WebSocket telemetry stream, signed webhooks, and a read-only GraphQL gateway. First-party SDKs in Python, TypeScript and Go.

/ Security & compliance

What the auditors have actually checked.

SOC 2 Type II (renewed 2026)
ISO 27001 & 27018
GDPR & UK-GDPR data agreement
BYOK via AWS KMS / GCP CMEK
On-prem MQTT bridge for SCADA environments
Pen-test public summary, twice a year