feat: NLP + vision modalities; harden agentic dependency#1
Merged
Conversation
- nlp/: TextClassifierPort + HFTextClassifier (HuggingFace DistilBERT, nlp extra), verified end-to-end on CPU (integration-gated download) - vision/: ImageClassifierPort + TorchCNNClassifier (PyTorch CNN, dl extra), verified on synthetic images in the default gate - both auto-wire via entry-points when their library is present - security: agentic dep -> PEP 508 direct git URL (allow-direct-references), closing a pip dependency-confusion fallback to PyPI - nlp extra adds sentencepiece Gate: ruff clean, pyright 0 errors, 92 tests pass (2 integration deselected).
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.
NLP & vision modalities (DL parity beyond tabular)
TextClassifierPort+HFTextClassifier(HuggingFace,nlpextra), fine-tunes a sequence-classification model (default DistilBERT). Verified end-to-end on CPU (integration-gated download).ImageClassifierPort+TorchCNNClassifier(dlextra), a small PyTorch CNN on(N,C,H,W)arrays. Verified on synthetic images in the default gate.firefly_datascience.auto_configurationentry-point group when their library is present.Supply-chain hardening
fireflyframework-agenticdependency is now a tool-agnostic PEP 508 direct git URL (allow-direct-references), closing a dependency-confusion vector where pip would fall back to PyPI for the unregistered name.Gate
ruff clean · pyright 0 errors · 92 tests pass (2 integration deselected). NLP verified via DistilBERT fine-tune; vision via synthetic CNN.