Spaces:
Running
Running
File size: 20,682 Bytes
f6f7b53 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 | """Combining the detectors into a confidence and a verdict.
TWO-STAGE BY DESIGN.
Stage 1 β GATES. Disqualifying on their own, regardless of anything else.
A duplicate photo is a duplicate photo; no amount of scene
similarity should rescue it. Gates run BEFORE scoring so a
failure is cheap and unambiguous.
Stage 2 β SCORES. Continuous 0..1 signals, combined by weights, producing a
confidence out of 100.
This ordering is the reason the system's overall accuracy is far better than the
54% rank-1 of image matching alone: five of the six fraud types in the attack set
never reach stage 2.
THRESHOLDS AND WEIGHTS BELOW ARE PROVISIONAL. They are informed guesses that let
the pipeline run end-to-end from day one. They are replaced by weights fitted
with logistic regression under leave-one-tree-out cross-validation once real
check-in rounds exist β see calibrate.py. Reporting a number produced by
hand-tuned weights on the same data would be exactly the mistake CLAUDE.md
forbids.
"""
from __future__ import annotations
from dataclasses import dataclass, field
from datetime import datetime
from .signals import DUPLICATE_MAX_HAMMING, haversine_m, hamming
# --- gate parameters -------------------------------------------------------
# How far from the registered point a check-in may be.
# Built from the GPS accuracy of BOTH readings plus a slack term, rather than a
# flat radius: a Β±3 m fix and a Β±18 m fix genuinely deserve different tolerances,
# and a flat number would either reject good check-ins under canopy or wave
# through bad ones in the open.
GPS_SLACK_M = 15.0
GPS_MAX_RADIUS_M = 60.0
# Nobody walks a plantation at 120 km/h. Catches one account submitting
# check-ins from two places faster than a human could travel between them.
MAX_TRAVEL_KMH = 120.0
# Two TREES registered closer together than this are possibly one tree entered
# twice β the double-payment case.
#
# NOT A GATE, DELIBERATELY. A failed gate means confidence 0 and 'flagged', and
# trees genuinely do grow 3 m apart: flagging a dense grove as fraud would be
# both wrong and ruinous to the pilot numbers. Phone GPS at 5-10 m simply cannot
# tell "one tree measured twice" from "two neighbouring trees", so the honest
# response is a human look, not an accusation. It routes to REVIEW instead.
#
# PROVISIONAL. Calibrate against the pilot's nearest-neighbour distance
# distribution and set it below the 5th percentile β see tools/proximity_audit.py.
# Must stay in step with PROXIMITY_WARN_M in app/src/lib/trees.ts, which is the
# client-side warning for the same condition.
PROXIMITY_REVIEW_M = 8.0
# Cosine similarity to the nearest known plant, below which a photo does not
# look like a plant at all.
#
# THE FIRST TWO NUMBERS HERE WERE WRONG AND THE STORY IS THE POINT.
#
# Held-out spike photos against 300 COCO photographs scored AUC 1.000 with a
# threshold of 0.519 and an 8.1% false-reject rate. Applied to the 9 REAL pilot
# check-ins - different plants, different site - that same threshold flagged
# FIVE OF NINE. The holdout was other angles of the SAME 15 plants at the SAME
# shoot, so it had been measuring "was this taken at that shoot", not "is this
# a plant". An AUC of 1.000 is a warning, not a result.
#
# Re-measured against genuinely unseen trees:
#
# AUC (real pilot photos vs 300 COCO) 0.966
#
# threshold check-ins flagged non-plants accepted
# 0.250 1/9 (11%) 1.3%
# 0.300 1/9 (11%) 1.0% <- chosen
# 0.350 2/9 (22%) 0.3%
# 0.519 5/9 (56%) 0.0%
#
# 0.30 buys 99% of non-plants for one check-in in nine going to a human. Pushing
# higher trades real planters' time for a rounding error of extra safety, and a
# non-plant that slips still faces GPS, duplicate and scene-match.
#
# STILL PROVISIONAL: measured on 18 photos from 6 trees at one site. The honest
# fix is not a better threshold, it is a bigger reference set - every verified
# check-in is a known-good plant photo, so this improves as the system runs.
PLANT_SIMILARITY_MIN = 0.30
# --- score shaping ---------------------------------------------------------
LOCATION_FULL_M = 10.0 # at or under this, full marks
LOCATION_ZERO_M = 60.0 # at or over this, nothing
SCENE_COSINE_FLOOR = 0.35 # below this, no evidence of the same scene
SCENE_COSINE_CEIL = 0.75 # at or above, as good as same-scene gets
ORB_INLIER_STRONG = 25 # inliers that would count as strong agreement
# ORB/RANSAC IS MEASURED AND DISABLED. Do not switch this on without re-running
# the measurement.
#
# Tested on the 59 spike photos, 287 pairs (87 same-tree, 200 different-tree):
#
# same tree 63.2% zero inliers, mean 1.7, max 8
# different tree 75.0% zero inliers, mean 1.1, max 6
#
# The distributions overlap almost entirely. ORB finds no consistent geometry
# between two genuine photos of the same tree taken minutes apart from slightly
# different positions β foliage moves, and bark at two scales shares almost no
# repeatable keypoints. Leaving it in the score would have added up to +0.08 of
# essentially random confidence, which helps an impostor as readily as a genuine
# visit.
#
# It stays COMPUTED and recorded in `signals` so the decision can be revisited
# with real data, because the spike had no framing control. The ghost overlay
# and compass heading exist precisely to reproduce framing, and ORB may become
# viable once check-in round 1 produces aligned pairs. Re-measure then; turn it
# on only if the same/different distributions actually separate.
ORB_CONTRIBUTES_TO_SCORE = False
# --- combination -----------------------------------------------------------
# Deliberately NOT equal. Image matching is the weakest signal we measured
# (rank-1 54%, AUC 0.77, and bimodal), so it must not dominate. Location and
# liveness are cheap, deterministic and reliable β they carry more.
DEFAULT_WEIGHTS: dict[str, float] = {
"location": 0.35,
"liveness": 0.30,
"scene_match": 0.25,
"growth": 0.10,
}
VERIFY_AT = 70
REVIEW_AT = 45
# ---------------------------------------------------------------------------
# CRITICAL FLOORS β the fix for a false accept found in testing
# ---------------------------------------------------------------------------
#
# A plain weighted sum lets strong signals COMPENSATE for a failed one. Tested
# against "a different tree photographed at the correct GPS" β attack #4, the
# one case that genuinely needs the AI β the result was:
#
# scene_match 0.00, location 1.00, liveness 1.00, growth 1.00
# -> 75/100 -> VERIFIED
#
# The system auto-approved the exact fraud it exists to catch, because
# scene_match carries only 0.25 of the weight and the other three were perfect.
# Compensation is correct for a quality score and wrong for a fraud decision.
#
# So a signal that is present and near-zero VETOES auto-approval. It does not
# flag the visit β it routes it to a human, which is the honest response to
# "this looks wrong but we are not certain". Confidence is still reported
# unchanged so the disagreement stays visible in the data.
#
# Floors are set BELOW the genuine weak case and ABOVE the fraud case, measured:
# dense same-species stand, genuine -> scene_match ~0.19 (must still pass)
# different tree entirely -> scene_match 0.00 (must be capped)
CRITICAL_FLOORS: dict[str, float] = {
# RAISED FROM 0.20 AFTER MEASUREMENT. A photograph of a brown wooden chair
# scored 0.218 and cleared the old floor by 0.018.
#
# On the 9 real pilot WIDE shots the distribution is bimodal - either 0.000
# or >= 0.557, with nothing in between - so 0.35 sits in an empty gap and
# rejects no real photo we have, while putting clear daylight above the
# chair.
#
# THIS DOES NOT SOLVE THE CHAIR PROBLEM and must not be described as if it
# does. It only catches BROWN fakes. A green wall still scores 1.00, which
# is what check_plant_plausibility exists for. Sample is 9 wide shots, so
# the "rejects nothing real" claim is thin - revisit with more rounds.
"liveness": 0.35,
"scene_match": 0.12,
}
# Auto-approval also requires enough of the signal set to have been available.
# One signal out of four is not a verification, however good that signal is.
MIN_COVERAGE_TO_VERIFY = 0.50
MODEL_NAME = "dinov2-small-onnx"
MODEL_VERSION = "2026.08.1"
@dataclass
class GateResult:
passed: bool
detail: dict
@dataclass
class Assessment:
confidence: int
verdict: str
signals: dict = field(default_factory=dict)
def _ramp(value: float, full: float, zero: float) -> float:
"""1.0 at `full`, 0.0 at `zero`, linear between. Handles either direction."""
if full == zero:
return 1.0 if value <= full else 0.0
t = (value - zero) / (full - zero)
return float(min(1.0, max(0.0, t)))
# ---------------------------------------------------------------------------
# Gates
# ---------------------------------------------------------------------------
def gate_duplicate(this_phash: str, others: list[tuple[str, str]]) -> GateResult:
"""others: (checkin_id, phash) for every OTHER check-in in the system."""
nearest_id, nearest = None, 64
for cid, ph in others:
if not ph:
continue
d = hamming(this_phash, ph)
if d < nearest:
nearest, nearest_id = d, cid
passed = nearest > DUPLICATE_MAX_HAMMING
return GateResult(
passed,
{
"passed": passed,
"nearest_phash_distance": nearest,
**({"matched_checkin": nearest_id} if not passed and nearest_id else {}),
},
)
def check_plant_plausibility(
wide_emb,
close_emb,
reference,
) -> GateResult:
"""Does either photo fail to look like a plant?
Stops a chair, a wall or a green bedsheet being registered as a tree -
which the liveness signal does not, because a green bedsheet is
vegetation-coloured and scores a perfect 1.00.
BOTH photos are checked and the WORSE one decides, so swapping a real
tree's wide shot in front of a close-up of something else does not pass.
Reference vectors are unit-normalised, so a dot product IS the cosine.
A missing reference set passes: degrade, don't break.
"""
if reference is None or wide_emb is None or close_emb is None:
return GateResult(True, {"passed": True, "available": False})
sw = float(reference.dot(wide_emb).max())
sc = float(reference.dot(close_emb).max())
worst = min(sw, sc)
passed = worst >= PLANT_SIMILARITY_MIN
return GateResult(
passed,
{
"passed": passed,
"available": True,
"wide_similarity": round(sw, 3),
"close_similarity": round(sc, 3),
"threshold": PLANT_SIMILARITY_MIN,
},
)
def check_proximity(
lat: float,
lng: float,
earlier: list[tuple[str, float, float]],
) -> GateResult:
"""Is there already a tree registered at this spot?
`earlier` is (tree_id, lat, lng) for trees registered STRICTLY BEFORE this
one. The ordering matters: when one trunk becomes two rows, only the second
row is the problem. Comparing against all trees would retroactively taint
the original β and the original is the one with the honest photo history.
Returns a GateResult for shape consistency with the real gates, but it is
passed to assess() as a REVIEW FLAG, not a gate. `passed=False` here means
"a person should look", never "this is fraud".
"""
nearest_id, nearest = None, float("inf")
for tid, tlat, tlng in earlier:
d = haversine_m(lat, lng, tlat, tlng)
if d < nearest:
nearest, nearest_id = d, tid
passed = nearest > PROXIMITY_REVIEW_M
detail: dict = {"passed": passed, "radius_m": PROXIMITY_REVIEW_M}
if nearest_id is not None:
detail["nearest_tree"] = nearest_id
detail["nearest_distance_m"] = round(nearest, 1)
return GateResult(passed, detail)
def gate_gps(
tree_lat: float,
tree_lng: float,
lat: float,
lng: float,
accuracy_m: float | None,
registration_accuracy_m: float | None = None,
) -> GateResult:
dist = haversine_m(tree_lat, tree_lng, lat, lng)
allowed = min(
GPS_MAX_RADIUS_M,
GPS_SLACK_M + (accuracy_m or 0.0) + (registration_accuracy_m or 0.0),
)
passed = dist <= allowed
return GateResult(
passed,
{"passed": passed, "distance_m": round(dist, 1), "allowed_m": round(allowed, 1)},
)
def gate_travel(
lat: float,
lng: float,
captured_at: datetime,
previous: tuple[str, float, float, datetime] | None,
) -> GateResult:
"""previous: the same submitter's most recent check-in elsewhere."""
if previous is None:
return GateResult(True, {"passed": True})
pid, plat, plng, pat = previous
seconds = abs((captured_at - pat).total_seconds())
if seconds < 1:
# Two check-ins at the same instant from different places is itself
# impossible; treat as a failure rather than dividing by ~zero.
metres = haversine_m(plat, plng, lat, lng)
passed = metres < 50
return GateResult(passed, {"passed": passed, "kmh": None, "from_checkin": pid})
kmh = (haversine_m(plat, plng, lat, lng) / seconds) * 3.6
passed = kmh <= MAX_TRAVEL_KMH
return GateResult(
passed, {"passed": passed, "kmh": round(kmh, 1), "from_checkin": pid}
)
# ---------------------------------------------------------------------------
# Scores
# ---------------------------------------------------------------------------
def score_location(distance_m: float) -> dict:
return {
"score": _ramp(distance_m, LOCATION_FULL_M, LOCATION_ZERO_M),
"distance_m": round(distance_m, 1),
}
def score_liveness(green_fraction: float, mapped: float) -> dict:
return {"score": mapped, "excess_green": round(green_fraction, 4)}
def score_scene(
cosine_wide: float | None,
cosine_close: float | None,
inliers: int | None,
) -> dict:
"""Corroboration, never identity.
The wide shot is weighted above the close-up because the spike showed
matching works substantially off the surrounding scene, and young bark is
smooth and far less distinctive than mature bark β BarkNet's ~94% figures
are on MATURE bark and do not transfer to a two-year-old sapling.
ORB inliers are RECORDED BUT DO NOT AFFECT THE SCORE β see
ORB_CONTRIBUTES_TO_SCORE above for the measurement that produced that
decision. Reporting a signal we have shown to be non-discriminating would be
exactly the unfounded assertion this project exists to avoid.
"""
parts: list[tuple[float, float]] = []
if cosine_wide is not None:
parts.append((_ramp(-cosine_wide, -SCENE_COSINE_CEIL, -SCENE_COSINE_FLOOR), 0.6))
if cosine_close is not None:
parts.append((_ramp(-cosine_close, -SCENE_COSINE_CEIL, -SCENE_COSINE_FLOOR), 0.4))
base = (
sum(v * w for v, w in parts) / sum(w for _, w in parts) if parts else 0.0
)
if inliers and ORB_CONTRIBUTES_TO_SCORE:
base = min(1.0, base + 0.25 * min(1.0, inliers / ORB_INLIER_STRONG))
out: dict = {"score": round(base, 4)}
if cosine_wide is not None:
out["cosine_wide"] = round(cosine_wide, 4)
if cosine_close is not None:
out["cosine_close"] = round(cosine_close, 4)
if inliers is not None:
out["orb_inliers"] = int(inliers)
return out
def score_growth(
canopy_now: float | None,
canopy_prev: float | None,
trunk_mm: float | None = None,
trunk_prev_mm: float | None = None,
) -> dict:
"""Plausibility, not measurement.
Trunk diameter barely moves in four weeks on a young tree, so this signal
cannot demonstrate growth and we do not claim it does. Its job is catching
the IMPOSSIBLE: a trunk that shrank, a seedling that became a mature tree
overnight, a canopy that vanished.
With no prior visit there is nothing to compare, so it returns a neutral 0.5
rather than 0 β a first check-in must not be penalised for being first.
"""
out: dict = {}
if canopy_now is not None:
out["canopy_frac"] = round(canopy_now, 4)
if trunk_mm is not None:
out["trunk_mm"] = round(trunk_mm, 1)
if canopy_prev is None and trunk_prev_mm is None:
out["score"] = 0.5
return out
score = 1.0
if canopy_now is not None and canopy_prev is not None:
delta = canopy_now - canopy_prev
# Losing more than half the canopy in one interval is the dying-tree
# signal. Real, and exactly what we want surfaced for review.
if canopy_prev > 0.02 and delta / canopy_prev < -0.5:
score = min(score, 0.15)
# Tripling canopy in days means the framing changed or it is a
# different plant.
elif canopy_prev > 0.02 and delta / canopy_prev > 2.0:
score = min(score, 0.3)
if trunk_mm is not None and trunk_prev_mm is not None:
out["delta_mm"] = round(trunk_mm - trunk_prev_mm, 1)
# A trunk cannot shrink. Allow 3mm for measurement error.
if trunk_mm < trunk_prev_mm - 3:
score = min(score, 0.1)
# No young tree gains 30mm of diameter in a check-in interval.
elif trunk_mm > trunk_prev_mm + 30:
score = min(score, 0.2)
out["score"] = score
return out
# ---------------------------------------------------------------------------
# Combination
# ---------------------------------------------------------------------------
def assess(
gates: dict[str, GateResult],
scores: dict[str, dict],
weights: dict[str, float] | None = None,
review_flags: dict[str, GateResult] | None = None,
) -> Assessment:
"""`review_flags` are conditions that must not AUTO-APPROVE but are not
disqualifying β they demote 'verified' to 'review' and are recorded with a
reason. Separate from gates on purpose: a gate says "this is fraud", a review
flag says "a person should look at this", and collapsing the two would either
accuse honest planters or wave through the thing we wanted a human to see."""
w = dict(weights or DEFAULT_WEIGHTS)
review_flags = review_flags or {}
signals: dict = {
"gates": {k: v.detail for k, v in gates.items()},
"scores": scores,
"weights": w,
"model": {"name": MODEL_NAME, "version": MODEL_VERSION},
}
if review_flags:
signals["review_flags"] = {k: v.detail for k, v in review_flags.items()}
failed = [k for k, v in gates.items() if not v.passed]
if failed:
# Fail closed. A gate failure is not a low score, it is a
# disqualification, and reporting a partial confidence next to it would
# invite someone to override it.
signals["failed_gates"] = failed
return Assessment(0, "flagged", signals)
# Renormalise over the signals we actually have. A missing signal must lower
# confidence, never silently count as zero β "designed to degrade, not
# break" means an absent compass or a first visit routes to a human rather
# than being scored as fraud.
present = {k: v for k, v in w.items() if k in scores and "score" in scores[k]}
if not present:
return Assessment(0, "review", signals)
total_w = sum(present.values())
raw = sum(scores[k]["score"] * wt for k, wt in present.items()) / total_w
# Coverage penalty: if only half the weight was available, cap confidence
# accordingly instead of pretending a partial assessment is a full one.
coverage = total_w / sum(w.values())
confidence = int(round(100 * raw * (0.6 + 0.4 * coverage)))
signals["coverage"] = round(coverage, 3)
if confidence >= VERIFY_AT:
verdict = "verified"
elif confidence >= REVIEW_AT:
verdict = "review"
else:
verdict = "flagged"
# --- veto: no compensating away a failed critical signal ---------------
vetoes = [
name
for name, floor in CRITICAL_FLOORS.items()
if name in scores and scores[name].get("score", 1.0) < floor
]
if coverage < MIN_COVERAGE_TO_VERIFY:
vetoes.append("coverage")
vetoes.extend(name for name, r in review_flags.items() if not r.passed)
if vetoes and verdict == "verified":
verdict = "review"
signals["auto_approval_vetoed_by"] = vetoes
return Assessment(confidence, verdict, signals)
|