Welcome / app.py
tclopess's picture
Update app.py
d6f1250 verified
raw
history blame
No virus
309 Bytes
import gradio as gr
def mensagem(nome):
return "Hello " + nome + "!\n" "My name is Anderson Lopes, I invite you to join me on this fascinating journey and explore the transformative potential of Deep Learning and NLP."
mostrar = gr.Interface(fn=mensagem, inputs="Text", outputs="Text")
mostrar.launch()