import streamlit as st import pandas as pd # from txtai.embeddings import Embeddings # import gdown import os from PIL import Image search_image = Image.open('images/Search.png') browse_image = Image.open('images/Browse.png') st.set_page_config(layout="wide", page_title="ACl23 Secret Language") # with open('style.css') as f: # st.markdown(f'', unsafe_allow_html=True) st.title("ACl23 Submission: Finding Secret Language") st.markdown('This webpage serves as an illustration of an anonymous submission to ACL 23.') st.markdown('### How to play with this page?') st.markdown('We present two methods for searching secret language: a direct search using the Dictionary (Search) option, and browsing words that have already been found for secret languages.') st.markdown("By entering a word you want to find its secret languages, you can view the word's meaning in English, all the secret languages we have discovered for it, and examples.") st.image(search_image, caption='A search example.') st.markdown('By clicking on the initial letters (A to Z, numbers, and other characters), you can view all the words whose secret languages have been discovered and that begin with the selected initial. By clicking on a word, you will be redirected to the search page, where you can view information about the selected word.') st.image(browse_image, caption='A browse example.') st.markdown('### Ethics statements for this webpage') st.markdown('We present secret languages discovered using our proposed algorithms. ' 'Our experiments utilize publicly available NLP and cross-modal datasets and leverage pre-trained language models. ' 'We do not believe that our code or methods raise concerns regarding discrimination, bias, fairness, inappropriate potential applications, impact, privacy and security issues, legal compliance, research integrity, or research practice. ' 'However, the datasets and models used may contain biases that may be inherited by the models we use.')