Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
peggy30
/
ExplainableAI
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1bd4e77
ExplainableAI
/
app.py
peggy30
add LIME
12ee8ba
6 months ago
raw
Copy download link
history
blame
Safe
197 Bytes
import
streamlit
as
st
import
src.prompt_config
as
prompt_params
def
main
():
st.title(
"Explainable AI"
)
st.markdown(prompt_params.APP_INTRODUCTION)
if
__name__ ==
'__main__'
:
main()