Spaces:
Sleeping
Sleeping
File size: 16,211 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 | # reduction.py
import logging
import json
import warnings
import numpy as np
# Suppress UMAP's noisy n_jobs warning when random_state is set
warnings.filterwarnings("ignore", message="n_jobs value.*overridden to 1 by setting random_state")
import umap
from sklearn.manifold import TSNE
from sklearn.metrics import silhouette_score
from sklearn.decomposition import PCA
from tracescope.analysis.metric_adapter import learn_metric_dim_red, safe_transform
_MIN_SAMPLES_FOR_ADVANCED = 4
# Stores the last fitted reducer for use with .transform() on new points
_last_fitted_reducer = None
# ── Global logger setup ──
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)s:%(message)s",
datefmt="%Y-%m-%d %H:%M:%S"
)
logger = logging.getLogger(__name__)
def _fallback_from_data(matrix: np.ndarray, target_dim: int) -> np.ndarray:
"""
matrix : (n_samples, d) float64
target_dim : 2 or 3
Returns : (n_samples, target_dim) float64
Uses only the original data, never invents points.
"""
n_samples, d = matrix.shape
# Special‑case tiny n so the result is meaningful and deterministic
if n_samples == 1:
return np.zeros((1, target_dim), dtype=np.float64)
if n_samples == 2:
# Project onto the line connecting the two points,
# centred at 0 and unit‑length – avoids “fake” coords.
v = matrix[1] - matrix[0]
v /= np.linalg.norm(v) + 1e-12
coords = np.vstack([-0.5 * v, 0.5 * v]) # length = 1
return np.hstack([coords, np.zeros((2, 3 - target_dim))])[:, :target_dim]
# n_samples ≥ 3: use PCA on the *real* data
pca = PCA(n_components=min(target_dim, d), svd_solver="full")
pc = pca.fit_transform(matrix)
# If we asked for 3 D but got only 2 comps (d = 2, target_dim = 3) → pad zeros
if pc.shape[1] < target_dim:
pc = np.hstack([pc, np.zeros((n_samples, target_dim - pc.shape[1]))])
return pc[:, :target_dim].astype(np.float64)
def reduce_embeddings(embedding_list, target_dim=2, n_neighbors=None, method=None, random_state=42):
# matrix = np.array(embedding_list, dtype=float)
embedding_list = [
[float(v) for v in row]
for row in embedding_list
]
matrix = np.array(embedding_list, dtype=np.float64)
matrix = matrix / np.linalg.norm(matrix, axis=1, keepdims=True)
n_samples = matrix.shape[0]
if n_samples < 2:
raise ValueError("Need at least 2 samples for reduction.")
if n_samples < _MIN_SAMPLES_FOR_ADVANCED:
logger.warning("Only %d sample(s) – using trivial fallback", n_samples)
vis_dims = _fallback_from_data(matrix, target_dim)
return vis_dims.tolist()
# defaults
if n_neighbors is None:
n_neighbors = min(50 if target_dim==2 else 15, n_samples-1)
else:
n_neighbors = min(n_neighbors, n_samples-1)
logger.info(f"reduce_embeddings ▶ shape={matrix.shape}, dim={target_dim}, neighbors={n_neighbors}, method={method}")
# choose method
vis_dims = None
if method == "tsne":
perp = min(30, n_samples-1)
logger.info(f"TSNE ▶ n_components={target_dim}, perplexity={perp}, init='pca'")
clean_matrix = matrix.astype(np.float64)
tsne = TSNE(
n_components=target_dim,
perplexity=perp,
metric='cosine',
init='pca',
learning_rate='auto',
random_state=random_state
)
vis_dims = tsne.fit_transform(clean_matrix)
else: # UMAP first, TSNE fallback
try:
logger.info(f"UMAP ▶ n_components={target_dim}, n_neighbors={n_neighbors}, metric='cosine', random_state={random_state}")
reducer = umap.UMAP(
n_components=target_dim,
n_neighbors=n_neighbors,
metric='cosine',
random_state=random_state
)
vis_dims = reducer.fit_transform(matrix)
except Exception as e:
if target_dim == 3:
perp = min(30, n_samples-1)
logger.warning(f"UMAP failed ({e}), falling back to TSNE 3D")
logger.info(f"original matrix dtype={matrix.dtype}, shape={matrix.shape}")
clean_matrix = np.asarray(matrix, dtype=np.float64)
logger.info(f"TSNE ▶ about to run on dtype={clean_matrix.dtype}, shape={clean_matrix.shape}")
tsne = TSNE(
n_components=3,
perplexity=perp,
metric='cosine',
init='pca',
learning_rate='auto',
random_state=random_state
)
vis_dims = tsne.fit_transform(clean_matrix)
else:
raise
# pad to 3 dims if needed
if target_dim < 3:
pad = np.zeros((vis_dims.shape[0], 3-target_dim))
vis_dims = np.hstack([vis_dims, pad])
logger.info(f"reduce_embeddings ▶ output shape={vis_dims.shape}, var={np.var(vis_dims,axis=0).round(4)}")
return vis_dims.tolist()
# def optimize_reduction(embeddings_json, cluster_labels_json, mode="3D",user_clusters=None):
def optimize_reduction(embeddings_json,
cluster_labels_json,
mode="3D",
user_clusters=None,
init_coords_json=None,
n_epochs_local=200,
param_range=None,
random_state=42):
if user_clusters:
# 1) parse JSON if we were handed a string
if isinstance(user_clusters, str):
try:
user_clusters = json.loads(user_clusters)
except Exception as e:
raise ValueError(f"Could not parse user_clusters JSON: {e}")
# 2) coerce every element to int
try:
user_clusters = [
[int(idx) for idx in cluster]
for cluster in user_clusters
]
except Exception as e:
raise ValueError(
f"Invalid user_clusters format (must be List[List[int]]): {user_clusters}"
) from e
embedding_list = json.loads(embeddings_json)
cluster_labels = json.loads(cluster_labels_json)
# matrix = np.array(embedding_list, dtype=float)
# load and coerce to a true floating‑point array
embedding_list = [
[float(v) for v in row]
for row in embedding_list
]
matrix = np.array(embedding_list, dtype=np.float64)
if matrix.dtype.kind not in ('f', 'i'):
matrix = matrix.astype(np.float64)
n_samples = matrix.shape[0]
if n_samples < 2:
raise ValueError("Need at least 2 samples for reduction.")
if n_samples < _MIN_SAMPLES_FOR_ADVANCED:
logger.warning("Only %d sample(s) – using trivial fallback", n_samples)
vis_dims = _fallback_from_data(matrix, target_dim)
return vis_dims.tolist()
if param_range is not None:
candidate_params = [p for p in param_range if p < n_samples]
if not candidate_params:
candidate_params = [min(param_range)]
else:
candidate_params = list(range(5, min(200, max(n_samples//2,6)), 5))
target_dim = 2 if mode=="2D" else 3
best_score = -1
best_param = None
best_embedding = None
best_method = None
best_reducer_obj = None # track fitted reducer for .transform() on new points
logger.info(f"optimize_reduction ▶ n_samples={n_samples}, mode={mode}, params={candidate_params}")
if user_clusters is None:
for param in candidate_params:
logger.info(f"Param={param}")
# # UMAP
# try:
# um = umap.UMAP(
# n_components=target_dim,
# n_neighbors=min(param, n_samples-1),
# metric='cosine',
# random_state=42
# ).fit_transform(matrix)
# UMAP (anchored if init_coords_json supplied)
um_reducer = None
try:
kw_umap = dict(
n_components = target_dim,
n_neighbors = min(param, n_samples-1),
metric = 'cosine',
random_state = random_state
)
if init_coords_json is not None:
kw_umap.update(
init = np.array(json.loads(init_coords_json),
dtype=float),
n_epochs = n_epochs_local,
min_dist = 0.0 )
um_reducer = umap.UMAP(**kw_umap)
um = um_reducer.fit_transform(matrix)
score_umap = silhouette_score(um, cluster_labels)
except Exception as e:
logger.debug(f"UMAP failed for param={param}: {e}")
um, score_umap, um_reducer = None, -1, None
# TSNE
try:
clean_matrix = matrix.astype(np.float64)
ts = TSNE(
n_components=target_dim,
perplexity=min(param, n_samples-1),
metric='cosine',
init='pca',
learning_rate='auto',
random_state=random_state
).fit_transform(clean_matrix)
score_tsne = silhouette_score(ts, cluster_labels)
except Exception as e:
logger.debug(f"TSNE failed for param={param}: {e}")
ts, score_tsne = None, -1
logger.info(f" param={param} ▶ umap={score_umap:.4f} tsne={score_tsne:.4f}")
# pick better
if score_umap > best_score:
best_score, best_param, best_embedding, best_method = score_umap, param, um.tolist(), "umap"
best_reducer_obj = um_reducer
if score_tsne > best_score:
best_score, best_param, best_embedding, best_method = score_tsne, param, ts.tolist(), "tsne"
best_reducer_obj = None # tSNE has no .transform()
else:
matrix_orig = matrix.copy()
L = learn_metric_dim_red(matrix_orig, user_clusters)
for alpha in (0, 0.25, 0.5, 0.75, 1):
Xα = safe_transform(matrix_orig, L, alpha)
# 2) ensure they’re float64, not strings
Xα = np.array(Xα, dtype=np.float64)
for param in candidate_params:
logger.info(f"Param={param}")
# UMAP
um_reducer = None
try:
um_reducer = umap.UMAP(
n_components=target_dim,
n_neighbors=min(param, n_samples - 1),
metric='cosine',
random_state=random_state
)
um = um_reducer.fit_transform(Xα)
score_umap = silhouette_score(um, cluster_labels)
except Exception as e:
logger.debug(f"UMAP failed for param={param}, alpha={alpha}: {e}")
um, score_umap, um_reducer = None, -1, None
# TSNE
try:
ts = TSNE(
n_components=target_dim,
perplexity=min(param, n_samples - 1),
metric='cosine',
init='pca',
learning_rate='auto',
random_state=random_state
).fit_transform(Xα)
score_tsne = silhouette_score(ts, cluster_labels)
except Exception as e:
logger.debug(f"TSNE failed for param={param}, alpha={alpha}: {e}")
ts, score_tsne = None, -1
logger.info(f" param={param} ▶ umap={score_umap:.4f} tsne={score_tsne:.4f}")
# pick better
if score_umap > best_score:
best_score, best_param, best_embedding, best_method = score_umap, param, um.tolist(), "umap"
best_reducer_obj = um_reducer
if score_tsne > best_score:
best_score, best_param, best_embedding, best_method = score_tsne, param, ts.tolist(), "tsne"
best_reducer_obj = None # tSNE has no .transform()
logger.info(f"Best reduction ▶ param={best_param}, method={best_method}, score={best_score:.4f}")
# ensure all numpy types become native Python scalars
# if we never found a valid scoring embedding, just do a plain 3D reduction
if best_param is None or best_embedding is None:
logger.warning("No valid optimized embedding found — falling back to default 3D reduction")
# choose the same default n_neighbors UMAP would use
default_nbrs = min(15, n_samples - 1)
fallback = reduce_embeddings(embedding_list, target_dim=target_dim, random_state=random_state)
best_param = default_nbrs
best_method = "umap"
best_score = None
best_embedding = fallback
logger.info(f"Best reduction ▶ param={best_param}, method={best_method}, score={best_score}")
global _last_fitted_reducer
_last_fitted_reducer = best_reducer_obj
return json.dumps({
"best_param": int(best_param),
"best_score": float(best_score) if best_score is not None else None,
"embedding": best_embedding,
"embedding_method": best_method
}, default=lambda o: float(o) if isinstance(o, np.generic) else o)
def main(embeddings_json, n_neighbors=None, method=None):
embedding_list = json.loads(embeddings_json)
projected = reduce_embeddings(embedding_list, target_dim=2, n_neighbors=n_neighbors, method=method)
return json.dumps(projected, default=lambda o: float(o) if isinstance(o, np.generic) else o)
def main3D(embeddings_json, n_neighbors=None, method=None):
embedding_list = json.loads(embeddings_json)
projected = reduce_embeddings(embedding_list, target_dim=3, n_neighbors=n_neighbors, method=method)
return json.dumps(projected, default=lambda o: float(o) if isinstance(o, np.generic) else o)
def compute_axes_info(embeddings_json: str, cluster_labels_json: str) -> str:
"""
Now returns standard XYZ axes; computes lengths/extremes along first 3 dims.
"""
embs = np.array(json.loads(embeddings_json), dtype=float) # (N,D)
labels = np.array(json.loads(cluster_labels_json), dtype=int) # (N,)
# axes = identity
axes = [[1.0,0.0,0.0], [0.0,1.0,0.0], [0.0,0.0,1.0]]
# project onto first 3 coords
proj = embs[:, :3] # (N,3)
min_pt = proj.argmin(axis=0).tolist()
max_pt = proj.argmax(axis=0).tolist()
lengths = (proj.max(axis=0) - proj.min(axis=0)).tolist()
# cluster centroids in same space
unique = np.unique(labels)
centroids = np.vstack([embs[labels==l, :3].mean(axis=0) for l in unique]) # (C,3)
cproj = centroids # already in 3D
min_cl = cproj.argmin(axis=0).tolist()
max_cl = cproj.argmax(axis=0).tolist()
result = {
"axes": axes,
"lengths": lengths,
"min_point_idx": min_pt,
"max_point_idx": max_pt,
"min_cluster_idx": min_cl,
"max_cluster_idx": max_cl
}
return json.dumps(result)
def compute_axes(points):
"""
points: List of [x, y, z]
Returns:
R: 3×3 rotation matrix (list of lists)
lengths: list of 3 floats (axis extents)
"""
P = np.array(points, dtype=float)
centroid = P.mean(axis=0)
Pc = P - centroid
# scale if your coordinates are on different units:
scaler = StandardScaler()
Psc = scaler.fit_transform(Pc)
pca = PCA(n_components=3, svd_solver='full')
pca.fit(Psc)
# columns of R are the principal axes in world-space
R = pca.components_.T.tolist()
# axis lengths in original units (after centering):
mins = Pc.min(axis=0)
maxs = Pc.max(axis=0)
lengths = (maxs - mins).tolist()
return R, lengths
|