leadingbridge commited on
Commit
6de3b6b
1 Parent(s): 08f3fa6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -104,6 +104,11 @@ with gr.Blocks() as demo:
104
  outputs = gr.Textbox(label="Translation Result")
105
  proceed_button = gr.Button("Translate")
106
  proceed_button.click(fn=translate_to_english, inputs=inputs, outputs=outputs)
 
 
 
 
 
107
 
108
 
109
 
 
104
  outputs = gr.Textbox(label="Translation Result")
105
  proceed_button = gr.Button("Translate")
106
  proceed_button.click(fn=translate_to_english, inputs=inputs, outputs=outputs)
107
+ gr.Markdown('''
108
+ I'm excited to share with you the above Chinese NLP models that I've developed. After searching the internet, I realized that there aren't many Chinese NLP resources available, so I hope that these models can be useful to you.
109
+
110
+ I want to acknowledge that these models are not perfect and there is still room for improvement. Due to resource limitations, there may be some limitations or errors in the models. However, I hope that you will find them useful and that you will be able to contribute to their improvement.
111
+ ''')
112
 
113
 
114