Spaces:
Running
Running
File size: 849 Bytes
ebb2014 b2eb1be ebb2014 11c4f8e b2eb1be 0fd5020 ebb2014 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import gradio as gr
from transformers import pipeline, AutoTokenizer, DistilBertForSequenceClassification
modelName = "colinryan/hf-deepmoji"
distilTokenizer = AutoTokenizer.from_pretrained(modelName)
distilTokenizer.save_pretrained("./model/")
distilModel = DistilBertForSequenceClassification.from_pretrained(modelName, problem_type="multi_label_classification", num_labels=64)
#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() |