SalesCue β subject
ContextualBradleyTerry module from the SalesCue sales intelligence library.
Status:
untrainedβ architecture only, random initialization. Use as a starting point for fine-tuning.
Research Contribution
Contextual Bradley-Terry Subject Line Ranking
Static pairwise comparison assumes fixed preferences, but subject line effectiveness depends on context: who you're sending to, what industry, what relationship stage. ContextualBradleyTerry extends the Bradley-Terry model with contextual modulation β P(A > B | context) = sigma(score(A, context) - score(B, context)). This means the model can learn that "Quick question" beats "Detailed analysis" for cold outreach but loses for existing customers.
Usage
from salescue import SalesCueModel
model = SalesCueModel.from_pretrained("v9ai/salescue-subject-v1")
result = model.predict('["Quick question about Q3", "URGENT: Limited time offer!!!"]')
print(result) # ranking, best, worst
Architecture
- Backbone:
microsoft/deberta-v3-base(shared encoder, 768-dim) - Head:
ContextualBradleyTerry - Parameters: head only (backbone loaded separately)
Intended Use
- Primary: B2B sales intelligence β lead scoring, email analysis, conversation insights
- Users: Sales teams, RevOps, GTM engineers building sales automation
- Input: English sales text (emails, call transcripts, prospect communications)
Limitations
- Untrained weights: This release contains the architecture only. Weights are randomly initialized and must be fine-tuned on domain-specific data before production use.
- English only: Designed for English sales text. Performance on other languages is untested.
- Domain-specific: Optimized for B2B sales communications. May not generalize to other text domains.
- Shared backbone: Requires
microsoft/deberta-v3-baseloaded via the SalesCue library.
About SalesCue
SalesCue is a sales intelligence library with 12 ML modules sharing a single DeBERTa-v3-base encoder backbone. Modules can be composed via Unix-style piping:
from salescue import Document
result = Document("interested in pricing") | ai.score | ai.intent | ai.sentiment
All modules: score intent reply triggers icp objection sentiment spam entities call subject emailgen
See the SalesCue documentation for details.
- Downloads last month
- 2
Model tree for v9ai/salescue-subject-v1
Base model
microsoft/deberta-v3-base