Spaces:
Sleeping
Sleeping
File size: 41,395 Bytes
ce11d27 | 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 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 | # #!/usr/bin/env python3
# """
# qualia_segmenter_highdim.py β adaptiveβCROPS (no duplicates!)
# -------------------------------------------------------------
#
# Detect the start of the *current* qualia episode in raw 3072βD embeddings.
#
# Fixes compared with the previous build
# ======================================
# * **Adaptive penalty path**: starts at 0.5 and multiplies by (1+step)
# until >Β pen_max (default 20). The step is 2Β % by default, but the code
# skips any penalty that yields the *same* breakpoint list as the
# previous βΒ so you get **one line per distinct segmentation**.
# * **Elbow selection**: pick the index with the *largest* cohesion jump
# (relative dropΒ β₯Β tol, default 5Β %). Falls back to the finest level
# with >β―1 segment if no clear elbow.
# """
# from __future__ import annotations
#
# import json
# from typing import List, Tuple
#
# import numpy as np
#
# try:
# import ruptures as rpt
# except ModuleNotFoundError as e:
# raise ModuleNotFoundError(
# "qualia_segmenter_highdim requires the 'ruptures' package.\n"
# "Install it with: pip install ruptures"
# ) from e
#
#
#
#
# from typing import List, Optional
#
#
#
# from sklearn.metrics import calinski_harabasz_score
#
#
# # --------------------------------------------------------------------------- #
# # Cosineβvelocity #
# # --------------------------------------------------------------------------- #
# def _cosine_velocity(x: np.ndarray) -> np.ndarray:
# """Angular βspeedβ between consecutive embeddings (verbose)."""
# print(f"[cos-vel] embeddings.shape = {x.shape}")
# eps = 1e-12
# norms = np.linalg.norm(x, axis=1, keepdims=True) + eps
# u = x / norms
# cos_sim = np.sum(u[:-1] * u[1:], axis=1)
# v = 1.0 - np.clip(cos_sim, -1.0, 1.0)
# print(f"[cos-vel] velocity length={len(v)}, first 5: {v[:5]}")
# return v
#
#
# # --------------------------------------------------------------------------- #
# # Adaptive CROPS: *only* distinct breakpoint sets #
# # --------------------------------------------------------------------------- #
# def crops_distinct(
# velocity: np.ndarray,
# *,
# pen_min: float = 0.5,
# pen_max: float = 20.0,
# rel_step: float = 0.02,
# min_size: int = 5,
# model: str = "rbf",
# max_levels: int = 200,
# ) -> List[Tuple[float, List[int]]]:
# """
# March through penalty space multiplicatively:
# pen *= (1 + rel_step)
# but **emit a row only when the breakpoint list changes**.
# """
# algo = rpt.Pelt(model=model, min_size=min_size).fit(velocity.reshape(-1, 1))
#
# path: List[Tuple[float, List[int]]] = []
# p = pen_min
# last_bkps: List[int] | None = None
# levels = 0
#
# while p <= pen_max and levels < max_levels:
# bkps = algo.predict(pen=p)
# if last_bkps is None or bkps != last_bkps:
# path.append((p, bkps))
# last_bkps = bkps
# levels += 1
# p *= 1.0 + rel_step
#
# # stop early once only one segment is left
# if last_bkps == [len(velocity)]:
# break
#
# # βββ Debug dump ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# print("\n[CROPSβdistinct] Hierarchy (unique levels):")
# for p, b in path:
# print(f" pen={p:8.3f} β {b}")
# print("[CROPSβdistinct] ββββββββββββββββ\n")
# # ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# return path
#
#
# # --------------------------------------------------------------------------- #
# # Cohesion score #
# # --------------------------------------------------------------------------- #
# def _cohesion(emb: np.ndarray, bkps: List[int]) -> float:
# """DaviesβBouldinβstyle cohesion (β if only one segment)."""
# if len(bkps) <= 1: # one segment
# return float("inf")
#
# start, W, M = 0, [], []
# for b in bkps:
# seg = emb[start:b]
# W.append(seg.var(axis=0).mean())
# M.append(seg.mean(axis=0))
# start = b
#
# intra = float(np.mean(W))
# inter = float(
# np.mean([np.linalg.norm(a - b)
# for i, a in enumerate(M) for j, b in enumerate(M) if j > i])
# )
# return intra / (inter + 1e-9)
#
#
# # --------------------------------------------------------------------------- #
# # Choose elbow by largest cohesion drop #
# # --------------------------------------------------------------------------- #
# def pick_elbow(
# levels: List[Tuple[float, List[int]]],
# emb: np.ndarray,
# tol: float = 0.05,
# ) -> Tuple[float, List[int]]:
# """
# Return the (penalty, bkps) pair with the biggest *relative* cohesion drop
# (score[i]Β /Β score[i+1]Β β₯Β 1Β +Β tol). If none qualify, pick the finest
# level that has more than one segment, otherwise the coarsest.
# """
# scores = [(_cohesion(emb, b)) for _, b in levels]
#
# print("[cohesion] level β score:")
# for (p, _), s in zip(levels, scores):
# print(f" {p:8.3f} β {s if np.isfinite(s) else 'β'}")
#
# best_idx = None
# best_ratio = 1.0
# for i in range(len(scores) - 1):
# if not (np.isfinite(scores[i]) and np.isfinite(scores[i + 1])):
# continue
# ratio = scores[i] / scores[i + 1]
# if ratio >= 1.0 + tol and ratio > best_ratio:
# best_ratio = ratio
# best_idx = i + 1 # keep the *lower* score side (i+1)
#
# if best_idx is None:
# # fallβback: finest >1βsegment level, else last
# for i in reversed(range(len(levels))):
# if len(levels[i][1]) > 1:
# best_idx = i
# break
# if best_idx is None:
# best_idx = len(levels) - 1
#
# print(f"[cohesion] picked elbow @ pen={levels[best_idx][0]:.3f}, "
# f"ratio={best_ratio:.3f}\n")
# return levels[best_idx]
#
# # βββ Vendored sliding_window_view ββββββββββββββββββββββββββββββββββββββββ
# try:
# # Use NumPyβs built-in if available
# from numpy.lib.stride_tricks import sliding_window_view
# except ImportError:
# # Otherwise, fall back to as_strided for 2-D arrays + full-width windows
# from numpy.lib.stride_tricks import as_strided
#
# def sliding_window_view(x: np.ndarray, window_shape):
# """
# Vendored replacement for numpy>=1.20:
# x: array of shape (T, D)
# window_shape: tuple (w, D)
# returns view of shape (T-w+1, w, D)
# """
# w, D = window_shape
# T, D0 = x.shape
# if D0 != D:
# raise ValueError(f"sliding_window_view: expected second dim={D}, got {D0}")
# # If window longer than axis, return empty as numpy would
# if T < w:
# return np.empty((0, w, D), dtype=x.dtype)
# shape = (T - w + 1, w, D)
# strides = (x.strides[0], x.strides[0], x.strides[1])
# return as_strided(x, shape=shape, strides=strides)
# # --------------------------------------------------------------------------- #
# # Recentβsegment extractor #
# # --------------------------------------------------------------------------- #
# def _recent_slice(
# embeddings: np.ndarray,
# *,
# pen_min: float = 0.5,
# pen_max: float = 20.0,
# rel_step: float = 0.02,
# min_size: int = 5,
# model: str = "rbf",
# tol: float = 0.05,
# ) -> Tuple[np.ndarray, int, List[int]]:
# """
# Returns (recent_slice, start_idx, chosen_breakpoints).
# """
# if embeddings.shape[0] < 2:
# return np.empty((0, embeddings.shape[1])), 0, [0]
#
# # βββ SMOOTH A 7-DAY WINDOW βββββββββββββββββββββββββββββββββββββββββ
# ###
# win = 57
# pad = win // 2
# emb_pad = np.pad(embeddings, [(pad, pad), (0, 0)], mode="edge")
# # exactly the same call signature as before:
# embeddings_smooth = sliding_window_view(
# emb_pad,
# (win, embeddings.shape[1])
# ).mean(axis=2)
#
# velocity = _cosine_velocity(embeddings_smooth)
# levels = crops_distinct(
# velocity,
# pen_min=pen_min,
# pen_max=pen_max,
# rel_step=rel_step,
# min_size=min_size,
# model=model,
# )
# pen_sel, bkps_sel = pick_elbow(levels, embeddings, tol=tol)
#
# # --- Pretty print ------------------------------------------------------
# print("[hierarchy] Nested (unique) tree; picked level marked:")
# for p, b in levels:
# prefix = "ββ" if p == pen_sel else "ββ"
# seg_lens = list(np.diff([0] + b))
# mark = " β picked" if p == pen_sel else ""
# print(f"{prefix} pen={p:8.3f} β {b}\n segβlens: {seg_lens}{mark}")
# print("[hierarchy] βββββββββββββββββββββββββββ\n")
# # ----------------------------------------------------------------------
#
# start_idx = bkps_sel[-2] + 1 if len(bkps_sel) >= 2 else 0
# return embeddings[start_idx:].copy(), start_idx, bkps_sel
#
#
# # --------------------------------------------------------------------------- #
# # Public API #
# # --------------------------------------------------------------------------- #
# def recent_qualia_from_json(
# embeddings_json: str,
# *,
# pen_min: float = 0.5,
# pen_max: float = 20.0,
# rel_step: float = 0.02,
# min_size: int = 5,
# model: str = "rbf",
# tol: float = 0.05,
# ) -> str:
# """
# Parse a JSON listβofβlists, extract the *current* qualia episode,
# and return compact JSON with keys:
# recent_embeddings, start_idx, breakpoints
# """
# print("[API] Parsing embeddings JSON β¦")
# try:
# arr = np.asarray(json.loads(embeddings_json), dtype=float)
# except Exception as exc:
# raise ValueError(
# "Failed to parse embeddings_json β must be a JSON list of lists."
# ) from exc
# if arr.ndim != 2:
# raise ValueError("Input embeddings must be 2βD.")
#
# recent, start_idx, bkps = _recent_slice(
# arr,
# pen_min=pen_min,
# pen_max=pen_max,
# rel_step=rel_step,
# min_size=min_size,
# model=model,
# tol=tol,
# )
# print(f"[API] start_idx={start_idx}, bkps={bkps}, recent_len={len(recent)}")
#
# result = {
# "recent_embeddings": recent.tolist(),
# "start_idx": int(start_idx),
# "breakpoints": [int(i) for i in bkps],
# }
# print("[API] Done.\n")
# return json.dumps(result, separators=(",", ":"))
#
#
#
# def compute_distances_from_centroids(
# embeddings: np.ndarray, labels: np.ndarray
# ) -> Tuple[np.ndarray, np.ndarray]:
# """
# Given embeddings of shape (N, D) and integer cluster labels of length N,
# compute for each point the Euclidean distance to each cluster centroid.
# Returns (distances of shape (N, C), unique_labels).
# """
# unique_labels = np.unique(labels)
# centroids = np.vstack([
# embeddings[labels == c].mean(axis=0)
# for c in unique_labels
# ]) # shape (C, D)
# dists = np.linalg.norm(
# embeddings[:, None, :] - centroids[None, :, :], axis=2
# )
# return dists, unique_labels
#
#
# def find_optimal_breakpoints(
# features: np.ndarray,
# target_segments: int,
# min_size: int = 15
# ) -> List[int]:
# """
# Search breakpoints for K in {target-1, target, target+1} via Dynp,
# enforcing minimum segment length and selecting by Calinski-Harabasz.
# Returns list of end indices.
# """
# n, _ = features.shape
# candidate_K = [k for k in (target_segments - 1, target_segments, target_segments + 1)
# if k >= 2 and k <= n // min_size]
# best_score = -np.inf
# best_bkps: List[int] = []
#
# for K in candidate_K:
# algo = rpt.Dynp(model="l2").fit(features)
# bkps = algo.predict(n_bkps=K - 1)
# seg_lens = np.diff([0] + bkps)
# if seg_lens.min() < min_size:
# continue
# # assign segment ids
# seg_labels = np.zeros(n, dtype=int)
# start = 0
# for idx, bp in enumerate(bkps):
# seg_labels[start:bp] = idx
# start = bp
# score = calinski_harabasz_score(features, seg_labels)
# if score > best_score:
# best_score = score
# best_bkps = bkps
#
# if not best_bkps:
# # fallback: target without size constraint
# algo = rpt.Dynp(model="l2").fit(features)
# best_bkps = algo.predict(n_bkps=target_segments - 1)
#
# return best_bkps
#
#
# def all_segments_from_json(
# embeddings_json: str,
# labels_json: Optional[str] = None,
# min_size: int = 15
# ) -> str:
# """
# If labels_json provided, reduce embeddings to centroid-distances,
# segment via Dynp and select best K. Otherwise legacy CROPS pipeline.
# Returns JSON list of {level, start, end}.
# """
# # Parse embeddings into array
# data = np.asarray(json.loads(embeddings_json), dtype=float)
# N = data.shape[0]
# print(f"[DEBUG] Total points (N): {N}")
#
# # Determine segmentation levels
# if labels_json:
# print("[DEBUG] Using label-based segmentation")
# labels = np.asarray(json.loads(labels_json), dtype=int)
# print(f"[DEBUG] Labels unique: {np.unique(labels)}")
# features, unique_labels = compute_distances_from_centroids(data, labels)
# print(f"[DEBUG] Distance features shape: {features.shape}")
# target = len(unique_labels)
# print(f"[DEBUG] Target segments (cluster count): {target}")
# bkps = find_optimal_breakpoints(features, target, min_size=min_size)
# print(f"[DEBUG] Raw breakpoints: {bkps}")
# levels: List[Tuple[int, List[int]]] = [(target, bkps)]
# else:
# print("[DEBUG] Using legacy velocity-based CROPS segmentation")
# from .qualia_segmenter_highdim import _cosine_velocity, crops_distinct
# vel = _cosine_velocity(data)
# print(f"[DEBUG] Velocity vector length: {len(vel)}")
# levels = crops_distinct(vel, min_size=min_size)
# print(f"[DEBUG] CROPS levels (penalty, breakpoints): {levels}")
#
# # Clip breakpoints to valid range [1, N-1]
# max_idx = N - 1
# clipped_levels: List[Tuple[int, List[int]]] = []
# for lvl, bps in levels:
# clipped = []
# for bp in bps:
# bp_int = int(bp)
# bp_clamped = max(1, min(bp_int, max_idx))
# clipped.append(bp_clamped)
# clipped_levels.append((lvl, clipped))
# print(f"[DEBUG] Clipped levels: {clipped_levels}")
# levels = clipped_levels
#
# # Build segment dicts
# segs: List[dict[str, int]] = []
# for level_idx, (_, bkps) in enumerate(levels):
# prev = 0
# for bp in sorted(bkps):
# seg = {"level": level_idx, "start": prev, "end": bp}
# segs.append(seg)
# print(f"[DEBUG] Added segment: {seg}")
# prev = bp
#
# result_json = json.dumps(segs, separators=(',', ':'))
# print(f"[DEBUG] Final segments JSON: {result_json}")
# return result_json
#
#!/usr/bin/env python3
"""
qualia_segmenter_highdim_hybrid.py β adaptiveβCROPS + hybrid centroid/velocity
==============================================================================
This file **extends** the original *qualia_segmenter_highdim.py* while **keeping
all earlier public APIs and helpers intact**. Nothing was removed; new logic is
only *added* or *augments* existing functions.
New in this build
-----------------
1. **Hybrid representation & feature stream**
β’ PCA (98Β % variance) β optional LDA "emotion tilt" if cluster labels given.
β’ Concatenate centroidβdistance matrix **and** SavitzkyβGolayβsmoothed
cosineβvelocity into one feature matrix.
2. **Windowed smoothing without phaseβlag**
β’ Replaces the asymmetric 57βpoint trailing mean by a **symmetric
SavitzkyβGolay filter** (windowΒ =Β 9Β days, polyΒ =Β 3).
3. **Postβmerge tiny fragments** (<Β `min_size`Β days) after the first cut to kill
spurious microβsegments.
Public API functions *recent_qualia_from_json* and *all_segments_from_json*
still take **exactly** the same arguments and return the same JSON payloads.
"""
from __future__ import annotations
# --------------------------------------------------------------------------- #
# Standard & thirdβparty imports (original + new) #
# --------------------------------------------------------------------------- #
import json
from typing import List, Tuple, Optional
import numpy as np
try:
import ruptures as rpt
except ModuleNotFoundError as e:
raise ModuleNotFoundError(
"qualia_segmenter_highdim_hybrid requires the 'ruptures' package.\n"
"Install it with: pip install ruptures"
) from e
from sklearn.metrics import calinski_harabasz_score
# Added for hybrid representation
from sklearn.decomposition import PCA
from sklearn.discriminant_analysis import LinearDiscriminantAnalysis as LDA
from scipy.signal import savgol_filter
# --------------------------------------------------------------------------- #
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β ORIGINAL HELPERS (UNMODIFIED) β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# --------------------------------------------------------------------------- #
# Cosineβvelocity #
# --------------------------------------------------------------------------- #
def _semantic_cuts_within(
emb_raw: np.ndarray,
labels_arr: Optional[np.ndarray],
start: int,
end: int,
*,
min_size: int,
tol: float = 0.05,
) -> list[int]:
"""
Propose internal breakpoint indices (GLOBAL) inside [start, end]
using the SAME semantics you use globally:
β’ hybrid Dynp when labels are present (distance + vel features)
β’ CROPS+elbow on velocity otherwise.
Returns a (possibly empty) list of GLOBAL bp indices.
"""
seg_len = end - start + 1
if seg_len < 2 * min_size:
return []
emb_seg = emb_raw[start:end + 1]
labels_seg = None if labels_arr is None else labels_arr[start:end + 1]
# Representation + features
emb_h, _pca, _lda = _pca_lda_transform(emb_seg, labels_seg)
feats, uniq = _build_hybrid_features(emb_h, labels_seg)
# Candidate breakpoints (LOCAL indices that are *ends* of segments)
if uniq is not None and len(uniq) > 1:
target = len(uniq)
bkps_local = find_optimal_breakpoints(feats, target, min_size=min_size)
else:
vel = feats[:, -1]
levels = crops_distinct(vel, min_size=min_size)
_, bkps_local = pick_elbow(levels, emb_seg, tol=tol)
# Map to GLOBAL indices and keep only internal breakpoints
bkps_global = [start + int(b) for b in bkps_local if start < start + int(b) < end]
# Enforce min_size within this segment
if not bkps_global:
return []
# Drop any bkps that would create < min_size pieces
candidate = sorted(bkps_global)
pieces = [start] + candidate + [end + 1]
if any((pieces[i+1] - pieces[i]) < min_size for i in range(len(pieces)-1)):
# If proposed cut violates min_size, reject
return []
return candidate
def _refine_long_segments_semantic(
emb_raw: np.ndarray,
labels_arr: Optional[np.ndarray],
segs: list[dict[str, int]],
*,
min_size: int,
max_size: int,
tol: float = 0.05,
) -> list[dict[str, int]]:
"""
For each segment exceeding max_size, try semantic splits.
If no elbow-based split is found, fall back to a single
peak-velocity cut (semantic) provided it respects min_size.
"""
changed = True
while changed:
changed = False
next_segs: list[dict[str, int]] = []
for seg in segs:
s, e = seg["start"], seg["end"]
length = e - s + 1
if length <= max_size:
next_segs.append(seg)
continue
# 1) Try semantic cuts (may return multiple splits)
cuts = _semantic_cuts_within(emb_raw, labels_arr, s, e, min_size=min_size, tol=tol)
# 2) If no semantic elbow, cut at peak velocity once (still semantic)
if not cuts:
emb_seg = emb_raw[s:e+1]
emb_h, _pca, _lda = _pca_lda_transform(emb_seg, None if labels_arr is None else labels_arr[s:e+1])
feats, _ = _build_hybrid_features(emb_h, None if labels_arr is None else labels_arr[s:e+1])
vel = feats[:, -1].ravel()
# avoid borders by min_size
lo, hi = min_size, len(vel) - min_size
if hi > lo:
cut_local = int(np.argmax(vel[lo:hi]) + lo)
cut_global = s + cut_local
# only accept if it helps satisfy the cap
if (cut_global - s + 1) >= min_size and (e - cut_global) + 1 >= min_size:
cuts = [cut_global]
if not cuts:
# nothing we can do; keep as-is
next_segs.append(seg)
continue
# Split along accepted cuts
parts = [s] + sorted(cuts) + [e]
for i in range(len(parts) - 1):
a, b = parts[i], parts[i + 1]
next_segs.append({"level": seg["level"], "start": a, "end": b})
changed = True
segs = next_segs
# If any piece STILL exceeds max_size, iterate (recursive refinement)
if any(seg["end"] - seg["start"] + 1 > max_size for seg in segs):
continue
return segs
def _cosine_velocity(x: np.ndarray) -> np.ndarray:
"""Angular βspeedβ between consecutive embeddings (verbose)."""
print(f"[cosβvel] embeddings.shape = {x.shape}")
eps = 1e-12
norms = np.linalg.norm(x, axis=1, keepdims=True) + eps
u = x / norms
cos_sim = np.sum(u[:-1] * u[1:], axis=1)
v = 1.0 - np.clip(cos_sim, -1.0, 1.0)
print(f"[cosβvel] velocity length={len(v)}, first 5: {v[:5]}")
return v
# --------------------------------------------------------------------------- #
# Adaptive CROPS: *only* distinct breakpoint sets #
# --------------------------------------------------------------------------- #
def crops_distinct(
velocity: np.ndarray,
*,
pen_min: float = 0.5,
pen_max: float = 20.0,
rel_step: float = 0.02,
min_size: int = 15,
model: str = "rbf",
max_levels: int = 200,
) -> List[Tuple[float, List[int]]]:
"""Multiplicative grid search through penalty space yielding *distinct* cuts."""
algo = rpt.Pelt(model=model, min_size=min_size).fit(velocity.reshape(-1, 1))
path: List[Tuple[float, List[int]]] = []
p = pen_min
last_bkps: List[int] | None = None
levels = 0
while p <= pen_max and levels < max_levels:
bkps = algo.predict(pen=p)
if last_bkps is None or bkps != last_bkps:
path.append((p, bkps))
last_bkps = bkps
levels += 1
p *= 1.0 + rel_step
if last_bkps == [len(velocity)]: # single segment left
break
# Debug
print("\n[CROPSβdistinct] Hierarchy (unique levels):")
for p, b in path:
print(f" pen={p:8.3f} β {b}")
print("[CROPSβdistinct] ββββββββββββββββ\n")
return path
# --------------------------------------------------------------------------- #
# Cohesion score #
# --------------------------------------------------------------------------- #
def _cohesion(emb: np.ndarray, bkps: List[int]) -> float:
"""DaviesβBouldinβstyle cohesion (β if only one segment)."""
if len(bkps) <= 1:
return float("inf")
start, W, M = 0, [], []
for b in bkps:
seg = emb[start:b]
W.append(seg.var(axis=0).mean())
M.append(seg.mean(axis=0))
start = b
intra = float(np.mean(W))
inter = float(np.mean([
np.linalg.norm(a - b)
for i, a in enumerate(M) for j, b in enumerate(M) if j > i]))
return intra / (inter + 1e-9)
def _candidate_ks(n: int, min_size: int, target: int | None = None) -> list[int]:
"""
Return a smart range of K to test.
β’ always β₯ 2 slices
β’ never smaller than min_size
β’ capped at 10 to keep Dynp fast
β’ if target is given (labels), bias towards Β±3 around it
"""
k_max = max(2, min(10, n // min_size))
if target is None or target < 2:
return list(range(2, k_max + 1))
window = range(max(2, target - 3), min(k_max, target + 3) + 1)
# add the extremes 2 and k_max so we donβt miss very coarse/fine cuts
return sorted(set(window).union({2, k_max}))
# --------------------------------------------------------------------------- #
# Choose elbow by largest cohesion drop #
# --------------------------------------------------------------------------- #
def pick_elbow(
levels: List[Tuple[float, List[int]]],
emb: np.ndarray,
tol: float = 0.05,
) -> Tuple[float, List[int]]:
scores = [(_cohesion(emb, b)) for _, b in levels]
print("[cohesion] level β score:")
for (p, _), s in zip(levels, scores):
print(f" {p:8.3f} β {s if np.isfinite(s) else 'β'}")
best_idx, best_ratio = None, 1.0
for i in range(len(scores) - 1):
if not (np.isfinite(scores[i]) and np.isfinite(scores[i + 1])):
continue
ratio = scores[i] / scores[i + 1]
if ratio >= 1.0 + tol and ratio > best_ratio:
best_ratio, best_idx = ratio, i + 1 # keep lowerβscore side
if best_idx is None:
for i in reversed(range(len(levels))): # finest level with >1 segment
if len(levels[i][1]) > 1:
best_idx = i
break
if best_idx is None:
best_idx = len(levels) - 1
print(f"[cohesion] picked elbow @ pen={levels[best_idx][0]:.3f}, "
f"ratio={best_ratio:.3f}\n")
return levels[best_idx]
# --------------------------------------------------------------------------- #
# Vendored sliding_window_view (NumPy β₯1.20 ships it natively) #
# --------------------------------------------------------------------------- #
try:
from numpy.lib.stride_tricks import sliding_window_view # type: ignore
except ImportError: # <1.20 β vendored replacement for 2βD arrays
from numpy.lib.stride_tricks import as_strided # type: ignore
def sliding_window_view(x: np.ndarray, window_shape):
"""Simple 2βD sliding window replacement."""
w, D = window_shape
T, D0 = x.shape
if D0 != D:
raise ValueError("sliding_window_view: dimension mismatch")
if T < w:
return np.empty((0, w, D), dtype=x.dtype)
shape = (T - w + 1, w, D)
strides = (x.strides[0], x.strides[0], x.strides[1])
return as_strided(x, shape=shape, strides=strides)
# --------------------------------------------------------------------------- #
# Recentβsegment extractor #
# --------------------------------------------------------------------------- #
def _recent_slice(
embeddings: np.ndarray,
*,
pen_min: float = 0.5,
pen_max: float = 20.0,
rel_step: float = 0.02,
min_size: int = 5,
model: str = "rbf",
tol: float = 0.05,
) -> Tuple[np.ndarray, int, List[int]]:
"""Returns (recent_slice, start_idx, chosen_breakpoints) for *legacy* path."""
if embeddings.shape[0] < 2:
return np.empty((0, embeddings.shape[1])), 0, [0]
# Symmetric 57βday smoothing (unchanged)
win = 57
pad = win // 2
emb_pad = np.pad(embeddings, [(pad, pad), (0, 0)], mode="edge")
embeddings_smooth = sliding_window_view(emb_pad, (win, embeddings.shape[1])).mean(axis=2)
velocity = _cosine_velocity(embeddings_smooth)
levels = crops_distinct(
velocity,
pen_min=pen_min,
pen_max=pen_max,
rel_step=rel_step,
min_size=min_size,
model=model,
)
_pen_sel, bkps_sel = pick_elbow(levels, embeddings, tol=tol)
start_idx = bkps_sel[-2] + 1 if len(bkps_sel) >= 2 else 0
return embeddings[start_idx:].copy(), start_idx, bkps_sel
# --------------------------------------------------------------------------- #
# Public legacy API #
# --------------------------------------------------------------------------- #
def recent_qualia_from_json(
embeddings_json: str,
*,
pen_min: float = 0.5,
pen_max: float = 20.0,
rel_step: float = 0.02,
min_size: int = 5,
model: str = "rbf",
tol: float = 0.05,
) -> str:
"""Legacy API β unchanged."""
print("[API] Parsing embeddings JSON β¦")
try:
arr = np.asarray(json.loads(embeddings_json), dtype=float)
except Exception as exc:
raise ValueError("Failed to parse embeddings_json β must be JSON list of lists.") from exc
if arr.ndim != 2:
raise ValueError("Input embeddings must be 2βD.")
recent, start_idx, bkps = _recent_slice(
arr,
pen_min=pen_min,
pen_max=pen_max,
rel_step=rel_step,
min_size=min_size,
model=model,
tol=tol,
)
result = {
"recent_embeddings": recent.tolist(),
"start_idx": int(start_idx),
"breakpoints": [int(i) for i in bkps],
}
return json.dumps(result, separators=(",", ":"))
# --------------------------------------------------------------------------- #
# Centroid distance helper #
# --------------------------------------------------------------------------- #
def compute_distances_from_centroids(
embeddings: np.ndarray, labels: np.ndarray
) -> Tuple[np.ndarray, np.ndarray]:
unique_labels = np.unique(labels)
centroids = np.vstack([
embeddings[labels == c].mean(axis=0) for c in unique_labels
])
dists = np.linalg.norm(embeddings[:, None, :] - centroids[None, :, :], axis=2)
return dists, unique_labels
# --------------------------------------------------------------------------- #
# Dynp breakpoint search (original) #
# --------------------------------------------------------------------------- #
def find_optimal_breakpoints(
features: np.ndarray,
target_segments: int,
*,
min_size: int = 15,
) -> List[int]:
n, _ = features.shape
candidate_K = [k for k in (target_segments - 1, target_segments, target_segments + 1)
if k >= 2 and k <= n // min_size]
best_score, best_bkps = -np.inf, []
for K in candidate_K:
algo = rpt.Dynp(model="l2").fit(features)
bkps = algo.predict(n_bkps=K - 1)
if np.min(np.diff([0] + bkps)) < min_size:
continue
seg_labels = np.zeros(n, dtype=int)
start = 0
for idx, bp in enumerate(bkps):
seg_labels[start:bp] = idx
start = bp
score = calinski_harabasz_score(features, seg_labels)
if score > best_score:
best_score, best_bkps = score, bkps
if not best_bkps: # fallback no size constraint
algo = rpt.Dynp(model="l2").fit(features)
best_bkps = algo.predict(n_bkps=target_segments - 1)
return best_bkps
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β βββ H Y B R I D E X T E N S I O N βββ β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# --------------------------------------------------------------------------- #
# Hybrid representation (PCA β optional LDA) #
# --------------------------------------------------------------------------- #
def _pca_lda_transform(
emb: np.ndarray,
labels: Optional[np.ndarray] = None,
*,
var_keep: float = 0.98,
) -> Tuple[np.ndarray, PCA, Optional[LDA]]:
print(f"[hyb] PCAβLDA transform: input shape {emb.shape}")
pca = PCA(n_components=var_keep, whiten=True, svd_solver="full")
emb_pca = pca.fit_transform(emb)
print(f"[hyb] PCA kept {emb_pca.shape[1]} dims (β{var_keep:.0%} var)")
lda_model: Optional[LDA] = None
if labels is not None and len(np.unique(labels)) > 1:
lda_model = LDA()
emb_final = lda_model.fit_transform(emb_pca, labels).astype(float)
print(f"[hyb] LDA projected to {emb_final.shape[1]} dims")
else:
emb_final = emb_pca.astype(float)
print("[hyb] LDA skipped")
return emb_final, pca, lda_model
# --------------------------------------------------------------------------- #
# Build hybrid feature matrix #
# --------------------------------------------------------------------------- #
def _build_hybrid_features(
emb_h: np.ndarray,
labels: Optional[np.ndarray] = None,
) -> Tuple[np.ndarray, Optional[np.ndarray]]:
# centroid distances (cluster aware)
if labels is not None and len(np.unique(labels)) >= 2:
dists, uniq = compute_distances_from_centroids(emb_h, labels)
print(f"[hyb] dists shape {dists.shape}")
else:
dists = np.zeros((emb_h.shape[0], 1))
uniq = None
print("[hyb] centroid distances skipped")
# cosine velocity with SavitzkyβGolay smoothing
raw_vel = _cosine_velocity(emb_h)
raw_vel = np.r_[raw_vel[0], raw_vel] # pad front
vel = savgol_filter(raw_vel, window_length=9, polyorder=3, mode="interp").reshape(-1, 1)
features = np.hstack([dists, vel])
print(f"[hyb] features matrix {features.shape}")
return features, uniq
# --------------------------------------------------------------------------- #
# Postβmerge tiny segments #
# --------------------------------------------------------------------------- #
def _merge_small_segments(bkps: List[int], n_points: int, *, min_size: int) -> List[int]:
if not bkps:
return bkps
seg_starts = [0] + bkps[:-1]
seg_ends = bkps.copy()
seg_sizes = [e - s for s, e in zip(seg_starts, seg_ends)]
changed = True
while changed and len(seg_sizes) > 1:
changed = False
for idx, size in enumerate(seg_sizes):
# skip merging tail segment to preserve last small slice
if idx == len(seg_sizes) - 1:
continue
if size >= min_size:
continue
# pick neighbour with larger size
if idx == 0:
merge_with = 1
else:
left = seg_sizes[idx - 1]
right = seg_sizes[idx + 1]
merge_with = idx - 1 if left >= right else idx + 1
# avoid merging into tail
if merge_with == len(seg_sizes) - 1:
merge_with = idx - 1
# drop the breakpoint that separates the two
del seg_ends[max(idx, merge_with)]
seg_starts = [0] + seg_ends[:-1]
seg_sizes = [e - s for s, e in zip(seg_starts, seg_ends)]
changed = True
print(f"[hyb-merge] merged seg {idx} into {merge_with}, new seg_sizes {seg_sizes}")
break
return seg_ends
# --------------------------------------------------------------------------- #
# β
β
β
HYBRID VERSION OF all_segments_from_json β
β
β
#
# --------------------------------------------------------------------------- #
def all_segments_from_json(
embeddings_json: str,
labels_json: Optional[str] = None,
*,
min_size: int = 15,
max_size: int = 42
) -> str:
"""Dropβin replacement that prefers the hybrid path when labels provided."""
emb_raw = np.asarray(json.loads(embeddings_json), dtype=float)
N = emb_raw.shape[0]
if emb_raw.ndim != 2:
raise ValueError("Input embeddings must be 2βD.")
labels_arr: Optional[np.ndarray] = None
if labels_json is not None:
labels_arr = np.asarray(json.loads(labels_json), dtype=int)
if len(labels_arr) != N:
raise ValueError("labels_json length does not match embeddings")
# representation
emb_h, _pca, _lda = _pca_lda_transform(emb_raw, labels_arr)
# feature matrix
features_h, uniq = _build_hybrid_features(emb_h, labels_arr)
# segmentation
if uniq is not None and len(uniq) > 1:
target = len(uniq)
print(f"[API] Dynp target={target}")
bkps = find_optimal_breakpoints(features_h, target, min_size=min_size)
else:
print("[API] Legacy CROPS path")
vel = features_h[:, -1]
levels = crops_distinct(vel, min_size=min_size)
_, bkps = pick_elbow(levels, emb_raw)
bkps = sorted(int(b) for b in bkps if 0 < b < N)
print(f"[API] initial bkps {bkps}")
bkps = _merge_small_segments(bkps, N, min_size=min_size)
print(f"[API] bkps after merge {bkps}")
# build seg dict list
segs: List[dict[str, int]] = []
prev = 0
for bp in bkps:
segs.append({"level": 0, "start": prev, "end": bp})
prev = bp
# (tail segment omitted to match legacy behavior) or, if desired, include capped tail:
if prev < N:
segs.append({"level": 0, "start": prev, "end": N-1})
segs = _refine_long_segments_semantic(
emb_raw, labels_arr, segs, min_size=min_size, max_size=max_size, tol=0.05
)
return json.dumps(segs, separators=(",", ":"))
def all_segments_from_java(
embeddings: list[list[float]],
labels: list[int] | None = None,
*,
min_size: int = 14,
max_size: int = 42
) -> str:
"""
Like all_segments_from_json, but accepts native Python lists
(passed by Chaquopy from Java) to avoid any JSON buffering
on the Java heap.
"""
# 1) convert to numpy arrays
emb_raw = np.asarray(embeddings, dtype=float)
N = emb_raw.shape[0]
if emb_raw.ndim != 2:
raise ValueError("Input embeddings must be 2βD.")
labels_arr = None
if labels is not None:
labels_arr = np.asarray(labels, dtype=int)
if labels_arr.shape[0] != N:
raise ValueError("labels length does not match embeddings")
# 2) exactly the same hybrid logic you already have:
emb_h, _pca, _lda = _pca_lda_transform(emb_raw, labels_arr)
features_h, uniq = _build_hybrid_features(emb_h, labels_arr)
if uniq is not None and len(uniq) > 1:
target = len(uniq)
bkps = find_optimal_breakpoints(features_h, target, min_size=min_size)
else:
vel = features_h[:, -1]
levels = crops_distinct(vel, min_size=min_size)
_, bkps = pick_elbow(levels, emb_raw)
# 3) finalize & merge small segments
bkps = sorted(int(b) for b in bkps if 0 < b < N)
bkps = _merge_small_segments(bkps, N, min_size=min_size)
# 4) build the JSON response
segs: list[dict[str,int]] = []
prev = 0
for bp in bkps:
segs.append({"level": 0, "start": prev, "end": bp})
prev = bp
if prev < N:
segs.append({"level": 0, "start": prev, "end": N - 1})
segs = _refine_long_segments_semantic(
emb_raw, labels_arr, segs, min_size=min_size, max_size=max_size, tol=0.05
)
# return exactly the same JSON as before
return json.dumps(segs, separators=(",", ":")) |