Spaces:
Running
Running
import gradio as gr | |
from transformers import pipeline, AutoTokenizer, DistilBertForMultilabelSequenceClassification | |
distilTokenizer = AutoTokenizer.from_pretrained("colinryan/hf-deepmoji") | |
distilModel = DistilBertForMultilabelSequenceClassification.from_pretrained("colinryan/hf-deepmoji") | |
pipeline = pipeline(task="text-classification", model=distilModel, tokenizer=tokenizer) | |
def predict(deepmoji_analysis): | |
predictions = pipeline(deepmoji_analysis) | |
return deepmoji_analysis, {p["label"]: p["score"] for p in predictions} | |
gradio_app = gr.Interface(fn=predict, inputs="text", outputs="text") | |
if __name__ == "__main__": | |
gradio_app.launch() |