├── .gitignore ├── LICENSE ├── README.md ├── TODO.txt ├── entropy_estimators ├── __init__.py └── continuous.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_continuous.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/entropy_estimators/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/entropy_estimators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/entropy_estimators/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/entropy_estimators/HEAD/TODO.txt -------------------------------------------------------------------------------- /entropy_estimators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropy_estimators/continuous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/entropy_estimators/HEAD/entropy_estimators/continuous.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/entropy_estimators/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_continuous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/entropy_estimators/HEAD/tests/test_continuous.py --------------------------------------------------------------------------------