Views
No views yet
| Category | Description | Example |
|---|---|---|
hiring_surge | Aggressive hiring in specific area | "TechCorp hiring 50 ML engineers" |
funding_round | Investment received | "DataCo closes $50M Series C" |
product_launch | New product/feature release | "CloudInc launches AI platform" |
leadership_change | Executive hired/departed | "New CTO joins from Google" |
expansion | Geographic/market expansion | "Opens Singapore office" |
cost_cutting | Layoffs, budget cuts | "Reduces workforce by 20%" |
1from transformers import pipeline
2
3classifier = pipeline("text-classification", model="SrihariV/b2b-intent-signal-classifier")
4result = classifier("Stripe raises $200M Series D led by Sequoia")
5# Output: [{'label': 'funding_round', 'score': 0.98}]