Spaces:
Runtime error
Runtime error
# -*- coding: utf-8 -*- | |
"""gradio_deploy.ipynb | |
Automatically generated by Colaboratory. | |
""" | |
import os | |
import gradio | |
from PIL import Image | |
from timeit import default_timer as timer | |
from tensorflow import keras | |
import torch | |
from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline | |
import numpy as np | |
loaded_model = AutoModelForSequenceClassification.from_pretrained("runaksh/Symptom-2-disease_distilBERT") | |
loaded_tokenizer = AutoTokenizer.from_pretrained("runaksh/Symptom-2-disease_distilBERT") | |
# Function for class prediction | |
def predict(sample, validate=True): | |
classifier = pipeline("text-classification", model=loaded_model, tokenizer=loaded_tokenizer) | |
pred = classifier(sample)[0]['label'] | |
return pred | |
title = "Symptoms and Disease" | |
description = "Enter the Symptoms to know the disease" | |
# Gradio elements | |
# Input from user | |
in_prompt = gradio.components.Textbox(lines=2, label='Enter the Symptoms') | |
# Output response | |
out_response = gradio.components.Textbox(label='Disease') | |
# Gradio interface to generate UI link | |
iface = gradio.Interface(fn=predict, | |
inputs = in_prompt, | |
outputs = out_response, | |
title=title, | |
description=description | |
) | |
iface.launch(debug = True) |