Transform your most important data into action with our cutting-edge classifiers built for Business, Product, and Engineering teams.
Everything you need, without the hassle
Unruly unstructured text is both an Engineering and Business liability. Combine Business, Product, and Engineering together to accelerate your data enrichment.
Introducing Taylor Batch Jobs
Handle large-scale classifications seamlessly. Simply upload a file or use the Batch API. We'll handle the rest.
Integrate with just one simple API call
Sign up for our free Starter plan and integrate a classifier in minutes. Use the no-code interface or integrate with our API directly.
res = requests.post(
"https://api.trytaylor.ai/api/public_classifiers/predict",
headers={"Authorization": f"Bearer {api_key}"},
json={
"model": "naics",
"texts": [
"""
Pfizer Inc. is an American multinational pharmaceutical and biotechnology corporation headquartered at The Spiral in Manhattan, New York City. The company was established in 1849 in New York by two German entrepreneurs, Charles Pfizer (1824–1906) and his cousin Charles F. Erhart (1821–1891).
""",
],
"top_k": 1, # the max number of predictions to return
"threshold": 0.6, # the minimum confidence (0 to 1) required to return a label
}"
)