Fix eg bugs and opt#227
Merged
guillaume-byte merged 6 commits intoJun 25, 2026
Merged
Conversation
New special stat_name that discards all samples carrying a given tag across the whole dataset without requiring the frontend to enumerate sample IDs. Uses the existing upsert_df path — same as per-sample discard — grouped by origin for correctness. Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
…RPC thread
- build_metadata_copy_column_names: first clone of original field uses
{source}@{hash} (no _{n}); conflicts get _{n} suffix;
cloning an already-cloned field reuses the same @hash, only increments _{n}
- is_copy_metadata_column_name: updated regex to match new .+@.+ format
- __delete_metadata__ handler: replace blocking _slowUpdateInternals(force=True)
with non-blocking background kick — view is already up-to-date from manual
drop, no need to stall the gRPC response for 5-10s
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
Write path: serialize_value now handles numpy arrays of ALL ndim (not just <= 1). A 2D array was falling through to str() which produced numpy repr strings (space-separated, no commas) that aren't valid JSON. Read path: deserialize_value for MODEL_INOUT_LIST columns now: - maps "nan"/"none"/"" strings to np.nan instead of returning them as-is - removes the single-element unwrap (a [0.5] list stays [0.5], not 0.5) - adds a fallback regex pass to recover old data stored as numpy repr Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
9c8e3cc
into
v1.2.3---UI-Optimization-and-new-features
7 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Run and fix WL examples bugs and UI optimization