File size: 307 Bytes
fa0c70b 8dad52c fa0c70b |
1 2 3 4 5 6 7 |
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() |