Text Classification
Transformers
PyTorch
Arabic
English
distilbert
chemistry
biology
finance
legal
music
code
art
climate
medical
emotion
endpoints-template
Inference Endpoints
Zalmati / app.py
PetraAI's picture
app.py
f5677ee verified
import streamlit as st
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)