Spaces:
Build error
Build error
Nazneen Rajani
commited on
Commit
·
6cc0961
1
Parent(s):
f880ec5
Add citation and paper link
Browse files
README.md
CHANGED
@@ -6,4 +6,33 @@ colorTo: orange
|
|
6 |
sdk: streamlit
|
7 |
app_file: app.py
|
8 |
pinned: false
|
9 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
sdk: streamlit
|
7 |
app_file: app.py
|
8 |
pinned: false
|
9 |
+
---
|
10 |
+
|
11 |
+
# Interactive Model Cards
|
12 |
+
|
13 |
+
[Paper](https://arxiv.org/abs/2205.02894) (**Accepted at ACM Facct'22**)
|
14 |
+
|
15 |
+
This is an experimental project that examines whether interactivity can augment people's understanding of machine learning models. We build upon the model card work initially introduced by [Mitchell et al. (2018)](https://arxiv.org/abs/1810.03993) and strategically add (and evaluated) interactivity through a human-centered design process.
|
16 |
+
|
17 |
+
If you would like to programmatically interact with the tool or contribute, please follow the instructions below.
|
18 |
+
|
19 |
+
## Getting started
|
20 |
+
|
21 |
+
``` console
|
22 |
+
cd interactive_model_cards
|
23 |
+
|
24 |
+
pipenv install
|
25 |
+
|
26 |
+
streamlit run app.py
|
27 |
+
|
28 |
+
```
|
29 |
+
## Citation
|
30 |
+
```
|
31 |
+
@article{2205.02894,
|
32 |
+
Author = {Anamaria Crisan and Margaret Drouhard and Jesse Vig and Nazneen Rajani},
|
33 |
+
Title = {Interactive Model Cards: A Human-Centered Approach to Model Documentation},
|
34 |
+
Year = {2022},
|
35 |
+
Eprint = {arXiv:2205.02894},
|
36 |
+
Doi = {10.1145/3531146.3533108},
|
37 |
+
}
|
38 |
+
```
|