subject / app.py
pleonova's picture
Change to FastAPI
b52e509 verified
raw
history blame contribute delete
380 Bytes
from fastapi import FastAPI
from transformers import pipeline
app = FastAPI()
classifier = pipeline("zero-shot-classification", model="facebook/bart-large-mnli")
@app.post("/predict")
async def predict(data: dict):
labels = ["Mathematics", "Language Arts", "Social Studies", "Science"]
result = classifier(data["text"], labels)
return {"label": result["labels"][0]}