├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── image_bars.png └── image_classification.png ├── examples ├── example_rurage_ensemble.ipynb └── example_rurage_evaluation.ipynb ├── pyproject.toml ├── rurage ├── __init__.py ├── config.py ├── ensemble.py ├── evaluator.py ├── metrics.py ├── report.py └── tokenizer.py └── tests ├── __init__.py ├── test_config.py ├── test_evaluator.py ├── test_metrics.py └── test_report.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/README.md -------------------------------------------------------------------------------- /docs/image_bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/docs/image_bars.png -------------------------------------------------------------------------------- /docs/image_classification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/docs/image_classification.png -------------------------------------------------------------------------------- /examples/example_rurage_ensemble.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/examples/example_rurage_ensemble.ipynb -------------------------------------------------------------------------------- /examples/example_rurage_evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/examples/example_rurage_evaluation.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rurage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/rurage/__init__.py -------------------------------------------------------------------------------- /rurage/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/rurage/config.py -------------------------------------------------------------------------------- /rurage/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/rurage/ensemble.py -------------------------------------------------------------------------------- /rurage/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/rurage/evaluator.py -------------------------------------------------------------------------------- /rurage/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/rurage/metrics.py -------------------------------------------------------------------------------- /rurage/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/rurage/report.py -------------------------------------------------------------------------------- /rurage/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/rurage/tokenizer.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/tests/test_evaluator.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mts-ai/rurage/HEAD/tests/test_report.py --------------------------------------------------------------------------------