Spaces:
Sleeping
Sleeping
File size: 969 Bytes
7b98715 c85d87a 4e96901 c85d87a 4e96901 c85d87a 4e96901 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import streamlit as st
st.header('Web Access Equalizer)
st.text('The majority of the internet is written at a level that less than half of the population can comprehend. This app is a proof of concept to demonstrate the use of NLP to modify content to match a specific PIAAC Literacy Level, making the internet accessible to more people.')
st.subheader('Setup & Prerequisites')
st.text('Fixed width text')
st.subheader('How To: Use The Web Access Equalizer')
st.text('Simply enter a URL, Select Simplicity, and view your content!')
st.text('The simplicty value is directly related to the PIAAC Literacy Level.')
st.text('Note: The simplicty slider is directly related to the PIAAC Literacy Level')
default_url = "https://www.usatoday.com/"
url = st.text_input("URL:", default_url)
x = st.slider('Select a value')
lvl = st.select_slider('Select Simplicity. More complex to the right, less complex to the left ', options=['1','2','3','4'], value='2')
|