├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml └── src └── spark_calibration ├── __init__.py ├── betacal.py ├── metrics.py └── visualisation.py /.gitignore: -------------------------------------------------------------------------------- 1 | .pre-commit-config.yaml 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meesho/spark_calibration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meesho/spark_calibration/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meesho/spark_calibration/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/spark_calibration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meesho/spark_calibration/HEAD/src/spark_calibration/__init__.py -------------------------------------------------------------------------------- /src/spark_calibration/betacal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meesho/spark_calibration/HEAD/src/spark_calibration/betacal.py -------------------------------------------------------------------------------- /src/spark_calibration/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meesho/spark_calibration/HEAD/src/spark_calibration/metrics.py -------------------------------------------------------------------------------- /src/spark_calibration/visualisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meesho/spark_calibration/HEAD/src/spark_calibration/visualisation.py --------------------------------------------------------------------------------