Suvh commited on
Commit
9311ae8
·
1 Parent(s): d2a0b9c

Update to v1.1-chatty-luna (2025-12-08)

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. src/streamlit_app.py +3 -3
README.md CHANGED
@@ -11,7 +11,7 @@ app_port: 7860
11
 
12
  # AI Loan Assistant - Research Study
13
 
14
- **Condition 6**: DiCE Explanation, High Anthropomorphism
15
 
16
  This is an interactive AI loan assistant for research purposes studying the effects of explainable AI (XAI) methods and conversational anthropomorphism in credit decision systems.
17
 
 
11
 
12
  # AI Loan Assistant - Research Study
13
 
14
+ **Condition 6**: SHAP Explanation, High Anthropomorphism
15
 
16
  This is an interactive AI loan assistant for research purposes studying the effects of explainable AI (XAI) methods and conversational anthropomorphism in credit decision systems.
17
 
src/streamlit_app.py CHANGED
@@ -1,7 +1,7 @@
1
- """Entry point for Condition 5: E_shap_A_low
2
- Explanation: feature_importance | Anthropomorphism: low"""
3
  import os, sys, streamlit as st
4
  os.environ['HICXAI_EXPLANATION'] = 'feature_importance'
5
- os.environ['HICXAI_ANTHRO'] = 'low'
6
  sys.path.append('src')
7
  exec(open('src/app.py').read())
 
1
+ """Entry point for Condition 6: E_shap_A_high
2
+ Explanation: feature_importance | Anthropomorphism: high"""
3
  import os, sys, streamlit as st
4
  os.environ['HICXAI_EXPLANATION'] = 'feature_importance'
5
+ os.environ['HICXAI_ANTHRO'] = 'high'
6
  sys.path.append('src')
7
  exec(open('src/app.py').read())