├── .gitignore ├── LICENSE ├── README.md ├── config.yaml ├── main.py ├── requirements.txt ├── requirements_dev.txt ├── src ├── __init__.py ├── evaluate.py ├── sample_tracker.py └── utils.py └── tests ├── __init__.py └── test_evaluate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/config.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | pytest==6.2.5 -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/src/evaluate.py -------------------------------------------------------------------------------- /src/sample_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/src/sample_tracker.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/src/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cartucho/SurgT_benchmarking/HEAD/tests/test_evaluate.py --------------------------------------------------------------------------------