├── .gitignore ├── LICENSE ├── README.md ├── mad_metric ├── __init__.py ├── __main__.py ├── compute_mad.py └── embedding_models.py ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | dist 4 | mad_metric.egg-info 5 | 6 | debug.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-need-sleep/mad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-need-sleep/mad/HEAD/README.md -------------------------------------------------------------------------------- /mad_metric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-need-sleep/mad/HEAD/mad_metric/__init__.py -------------------------------------------------------------------------------- /mad_metric/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-need-sleep/mad/HEAD/mad_metric/__main__.py -------------------------------------------------------------------------------- /mad_metric/compute_mad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-need-sleep/mad/HEAD/mad_metric/compute_mad.py -------------------------------------------------------------------------------- /mad_metric/embedding_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-need-sleep/mad/HEAD/mad_metric/embedding_models.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-need-sleep/mad/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-need-sleep/mad/HEAD/requirements.txt --------------------------------------------------------------------------------