update info about the app
Browse files
app.py
CHANGED
@@ -37,7 +37,12 @@ def get_answer(user_input, decoding_methods, num_beams, top_k, top_p, temperatur
|
|
37 |
|
38 |
with gr.Blocks() as demo:
|
39 |
with gr.Row():
|
40 |
-
gr.Markdown("## IndoChat
|
|
|
|
|
|
|
|
|
|
|
41 |
with gr.Row():
|
42 |
with gr.Column():
|
43 |
user_input = gr.inputs.Textbox(placeholder="",
|
|
|
37 |
|
38 |
with gr.Blocks() as demo:
|
39 |
with gr.Row():
|
40 |
+
gr.Markdown("""## IndoChat
|
41 |
+
|
42 |
+
A Prove of Concept of a multilingual Chatbot (in this case a bilingual, English and Indonesian), fine-tuned with
|
43 |
+
multilingual instructions dataset. The base model is a GPT2-Medium (340M params) which was pretrained with 75GB
|
44 |
+
of Indonesian and English dataset, where English part is only less than 1% of the whole dataset.
|
45 |
+
""")
|
46 |
with gr.Row():
|
47 |
with gr.Column():
|
48 |
user_input = gr.inputs.Textbox(placeholder="",
|