-
Notifications
You must be signed in to change notification settings - Fork 0
Include dependencies needed for the new sequence embedding models #97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| --- | ||
| '@platforma-open/milaboratories.runenv-python-3.12.10-torch-cuda': minor | ||
| --- | ||
|
|
||
| Add antibody (AbLang2) and TCR (SCEPTR) specialist embedding libraries plus rdkit to the torch-cuda run environment. | ||
|
|
||
| - `ablang2==0.2.1` — AbLang2 antibody language model (pulls einops + rotary-embedding-torch) | ||
| - `sceptr==1.2.0` — SCEPTR paired-chain TCR model (pulls libtcrlm + tidytcells + pandas + blosum) | ||
| - `rdkit==2026.3.3` — cheminformatics toolkit for the PeptideCLM-2 amino-acid→SMILES conversion (pulls Pillow) | ||
|
|
||
| All install conflict-free on top of the existing pins (transformers 4.53.2, polars-lts-cpu 1.33.1, numpy 2.2.6, pyarrow 21.0.0, torch 2.7.0); `pip check` clean. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,10 @@ | |
| "transformers==4.53.2", | ||
| "polars-lts-cpu==1.33.1", | ||
| "numpy==2.2.6", | ||
| "pyarrow==21.0.0" | ||
| "pyarrow==21.0.0", | ||
| "ablang2==0.2.1", | ||
| "sceptr==1.2.0", | ||
| "rdkit==2026.3.3" | ||
|
julenmendieta marked this conversation as resolved.
Comment on lines
+13
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Prompt To Fix With AIThis is a comment left during a code review.
Path: python-3.12.10-torch-cuda/config.json
Line: 13-15
Comment:
**Transitive dependencies not pinned**
`ablang2`, `sceptr`, and `rdkit` each pull in several transitive packages (`einops`, `rotary-embedding-torch`, `libtcrlm`, `tidytcells`, `pandas`, `blosum`, `Pillow`) that are not pinned here. A future `pip` resolve could silently upgrade any of them and introduce an ABI or API mismatch with the pinned `numpy==2.2.6` or `torch==2.7.0` in this same environment. Consider adding explicit pins for the key transitives — especially `pandas` (which has historically broken APIs across minor versions) — either directly in this array or via a `constraints.txt` / lock file.
How can I resolve this? If you propose a fix, please make it concise.Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||
| ], | ||
| "platformSpecific": { | ||
| "linux-x64": { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.