├── .python-version ├── LICENSE ├── README.md ├── greater_than.ipynb ├── greater_than_data.csv ├── ioi.ipynb ├── ioi_llama.csv ├── pyproject.toml └── src └── eap ├── __init__.py ├── attribute.py ├── attribute_node.py ├── evaluate.py ├── graph.py ├── py.typed ├── utils.py └── visualization.py /.python-version: -------------------------------------------------------------------------------- 1 | 3.11 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/README.md -------------------------------------------------------------------------------- /greater_than.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/greater_than.ipynb -------------------------------------------------------------------------------- /greater_than_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/greater_than_data.csv -------------------------------------------------------------------------------- /ioi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/ioi.ipynb -------------------------------------------------------------------------------- /ioi_llama.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/ioi_llama.csv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/eap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/src/eap/__init__.py -------------------------------------------------------------------------------- /src/eap/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/src/eap/attribute.py -------------------------------------------------------------------------------- /src/eap/attribute_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/src/eap/attribute_node.py -------------------------------------------------------------------------------- /src/eap/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/src/eap/evaluate.py -------------------------------------------------------------------------------- /src/eap/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/src/eap/graph.py -------------------------------------------------------------------------------- /src/eap/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/eap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/src/eap/utils.py -------------------------------------------------------------------------------- /src/eap/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hannamw/EAP-IG/HEAD/src/eap/visualization.py --------------------------------------------------------------------------------