Release 2.11.0: fast bulk doc-training#78
Merged
Merged
Conversation
added 2 commits
July 17, 2026 10:52
Version bump + CHANGELOG + README for the 2.11.0 release: batched doc-trainer DB writes (add_synapses_batch, increment_keyword_df UPSERT, _persist_synapses), inline brain_id in find_neurons (IndexScan vs TableScan), find_neurons_exact_batch override, tqdm progress. ~10x fewer DB ops/chunk and sub-second-per-chunk on big brains. See CHANGELOG [2.11.0].
Test was hardcoded to 2.10.5; CI failed on the version bump.
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.
Version bump + CHANGELOG + README for the 2.11.0 release (carries #76 + #77).
What's in 2.11.0
add_synapses_batch,increment_keyword_dfUPSERT,_persist_synapseshelper (~10× fewer DB ops/chunk).find_neuronsuses the brain_id index —brain_idinlined as a literal (IndexScan vs TableScan); root cause of per-chunk cost scaling with brain size. Plusfind_neurons_exact_batchoverride.smem_train.See
CHANGELOG.md[2.11.0] for full details.Changes in this PR
pyproject.toml/__init__.py:2.10.5→2.11.0CHANGELOG.md: new [2.11.0] sectionREADME.md: Knowledge Ingestion bullet on fast bulk trainingTest plan
v2.11.0+gh release create(main is protected)Verified by
@acidkill