import streamlit as st import pandas as pd from api.ModelMethods import generate st.set_page_config(page_title="DEMO", page_icon="ЁЯСЛ", layout="wide") # Make basic configuration for the app appTitle = "Nepali Spell Correction" # Some test examples here example = ( "рдЕрдмрдХреЛ рд╕реНрдерд╛рдпреА рдХрдорд┐рдЯреА рдУрд▓реА рд╕рд░рдХрд╛рд░рд▓рд╛рдИ рджреАрдПрдХреЛ рд╕рдорд░реНрдерди рдлрд┐рд░реНрддрд╛рдХреЛ рддрдпрд╛рд░рд┐ рд░рд╣реЗрдХреЛ рд╕рд╛рд╣рд▓реЗ рдЬрд╛рдирдХрд╛рд░реА рджрд┐рдПред" ) examples = { "Examples": "", "рдЕрдЦрд┐рд▓реЗрд╕ рдЭрд╛ рдзреЗрд░реИ рджрд┐рдирджреЗрдЦрд┐ рдЕрдиреБрдкрд╕реНрдереАрдд рдерд┐рдП ред": "рдЕрдЦрд┐рд▓реЗрд╕ рдЭрд╛ рдзреЗрд░реИ рджрд┐рдирджреЗрдЦрд┐ рдЕрдиреБрдкрд╕реНрдереАрдд рдерд┐рдП ред", "рдЖрдареМрдБ рддрд╣ рдЙрдкрдирд┐рд░реНрджреЗрд╖рдХ рдкрджрдорд╛ рджреБрдИ рдЬрдирд╛ рдЙрддреНрддреАрд░реНрдг рднрдПрдХрд╛ рдЫрдиреНред": "рдЖрдареМрдБ рддрд╣ рдЙрдкрдирд┐рд░реНрджреЗрд╖рдХ рдкрджрдорд╛ рджреБрдИ рдЬрдирд╛ рдЙрддреНрддреАрд░реНрдг рднрдПрдХрд╛ рдЫрдиреНред", "рдЙрдиреАрд╣рд░реВрдорд╛ рд░реЛрдЧрд╕рдБрдЧ рд▓рдбреНрдиреЗ рдХреНрд╖рдорддрд╛ рдордЬреНрдЬрд╛рд▓реЗ рдмрд┐рдХрд╕рд┐рдд рднрдЗрд╕рдХреЗрдХреЛ рд╣реБрдБрджреИрдиред": "рдЙрдиреАрд╣рд░реВрдорд╛ рд░реЛрдЧрд╕рдБрдЧ рд▓рдбреНрдиреЗ рдХреНрд╖рдорддрд╛ рдордЬреНрдЬрд╛рд▓реЗ рдмрд┐рдХрд╕рд┐рдд рднрдЗрд╕рдХреЗрдХреЛ рд╣реБрдБрджреИрдиред", } def main(): st.header(appTitle) left_column, right_column = st.columns(2) correctedText = None with left_column: model_options = {"mT5", "mBART", "VartaT5"} # Display the radio options in a single line selected_model = st.radio("Select the model", model_options, index=0) # Create a dropdown menu selected_example_key = st.selectbox("Select an example", list(examples.keys())) # Display the selected example text in a text area selected_example_text = examples[selected_example_key] # Paragraph selection # Get user input user_input = st.text_area("Enter a Nepali Sentence: ", selected_example_text) if st.button("Check Spelling"): if user_input: # user_input = check_and_insert_space(user_input) correctedText = generate(selected_model, user_input) # correctedText = {0: "рдореЗрд░реЛ рджреЗрд╕ рдиреЗрдкрд╛рд▓ рд╣реЛред", 1: "рдореЗрд░реЛ рджреЗрд╢ рдиреЗрдкрд╛рд▓ рд╣реЛред"} # correctedText = correctedText[0]["sequence"] # # Perfrom grammer correction # st.subheader("Corrected Text:") # st.write([f"{line['score']:.2f}: {line['sequence']}"for line in correctedText]) else: st.warning("Please enter some text to check.") with right_column: if correctedText is not None: # st.write([f"{line['score']:.2f}: {line['sequence']}" for line in correctedText]) # df = pd.DataFrame(correctedText, columns=["score", "sequence"]) # Analyze the input and output if "span" in correctedText: st.write("Corrected Text:") else: st.write("No errors found:") st.write( correctedText, unsafe_allow_html=True, ) # st.table(df) if __name__ == "__main__": main()