├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .gitlint ├── .pre-commit-config.yaml ├── .pylintrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── image │ ├── another_sample_DIETClassifier_confusion_matrix.png │ ├── another_sample_DIETClassifier_histogram.png │ ├── another_sample_TEDPolicy_confusion_matrix.png │ ├── another_sample_intent_confusion_matrix.png │ ├── another_sample_intent_histogram.png │ ├── another_sample_response_selection_confusion_matrix.png │ ├── another_sample_response_selection_histogram.png │ ├── another_sample_story_confusion_matrix.png │ ├── logo.png │ ├── logo_white_words.png │ ├── open_source_logo.png │ ├── sample_TEDPolicy_confusion_matrix.png │ ├── sample_intent_confusion_matrix.png │ ├── sample_intent_histogram.png │ ├── sample_story_confusion_matrix.png │ └── social_media_preview.png ├── markdown │ ├── another_sample_model_report.md │ └── sample_model_report.md └── video │ └── example.mp4 ├── makefile ├── rasa_model_report ├── __init__.py ├── controllers │ ├── __init__.py │ ├── controller.py │ ├── csv_controller.py │ ├── e2e_coverage_controller.py │ ├── json_controller.py │ ├── markdown_controller.py │ ├── model_report.py │ └── nlu_controller.py ├── helpers │ ├── __init__.py │ ├── constants.py │ ├── type_aliases.py │ └── utils.py └── main.py ├── requirements.dev.txt ├── scripts ├── change_coverage_badge.py └── release.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── mocks ├── mock_payloads.json ├── rasa.v2 │ ├── actions │ │ ├── __init__.py │ │ └── actions.py │ ├── config.yml │ ├── credentials.yml │ ├── data │ │ ├── nlu.yml │ │ ├── rules.yml │ │ └── stories.yml │ ├── domain.yml │ ├── endpoints.yml │ ├── results │ │ ├── DIETClassifier_confusion_matrix.png │ │ ├── DIETClassifier_errors.json │ │ ├── DIETClassifier_histogram.png │ │ ├── DIETClassifier_report.json │ │ ├── TEDPolicy_confusion_matrix.png │ │ ├── TEDPolicy_report.json │ │ ├── failed_test_stories.yml │ │ ├── intent_confusion_matrix.png │ │ ├── intent_errors.json │ │ ├── intent_histogram.png │ │ ├── intent_report.json │ │ ├── stories_with_warnings.yml │ │ ├── story_confusion_matrix.png │ │ └── story_report.json │ └── tests │ │ └── test_stories.yml └── rasa.v3 │ ├── actions │ ├── __init__.py │ └── actions.py │ ├── config.yml │ ├── credentials.yml │ ├── data │ ├── nlu.yml │ ├── rules.yml │ └── stories.yml │ ├── domain.yml │ ├── endpoints.yml │ ├── results │ ├── DIETClassifier_confusion_matrix.png │ ├── DIETClassifier_errors.json │ ├── DIETClassifier_histogram.png │ ├── DIETClassifier_report.json │ ├── TEDPolicy_confusion_matrix.png │ ├── TEDPolicy_report.json │ ├── failed_test_stories.yml │ ├── intent_confusion_matrix.png │ ├── intent_errors.json │ ├── intent_histogram.png │ ├── intent_report.json │ ├── stories_with_warnings.yml │ ├── story_confusion_matrix.png │ └── story_report.json │ └── tests │ └── test_stories.yml ├── test_controller.py ├── test_csv_controller.py ├── test_e2e_coverage_controller.py ├── test_json_controller.py ├── test_main.py ├── test_markdown_controller.py ├── test_model_report.py ├── test_nlu_controller.py ├── test_scripts.py ├── test_utils.py └── utils.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.gitlint -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/.pylintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/README.md -------------------------------------------------------------------------------- /docs/image/another_sample_DIETClassifier_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/another_sample_DIETClassifier_confusion_matrix.png -------------------------------------------------------------------------------- /docs/image/another_sample_DIETClassifier_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/another_sample_DIETClassifier_histogram.png -------------------------------------------------------------------------------- /docs/image/another_sample_TEDPolicy_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/another_sample_TEDPolicy_confusion_matrix.png -------------------------------------------------------------------------------- /docs/image/another_sample_intent_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/another_sample_intent_confusion_matrix.png -------------------------------------------------------------------------------- /docs/image/another_sample_intent_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/another_sample_intent_histogram.png -------------------------------------------------------------------------------- /docs/image/another_sample_response_selection_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/another_sample_response_selection_confusion_matrix.png -------------------------------------------------------------------------------- /docs/image/another_sample_response_selection_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/another_sample_response_selection_histogram.png -------------------------------------------------------------------------------- /docs/image/another_sample_story_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/another_sample_story_confusion_matrix.png -------------------------------------------------------------------------------- /docs/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/logo.png -------------------------------------------------------------------------------- /docs/image/logo_white_words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/logo_white_words.png -------------------------------------------------------------------------------- /docs/image/open_source_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/open_source_logo.png -------------------------------------------------------------------------------- /docs/image/sample_TEDPolicy_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/sample_TEDPolicy_confusion_matrix.png -------------------------------------------------------------------------------- /docs/image/sample_intent_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/sample_intent_confusion_matrix.png -------------------------------------------------------------------------------- /docs/image/sample_intent_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/sample_intent_histogram.png -------------------------------------------------------------------------------- /docs/image/sample_story_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/sample_story_confusion_matrix.png -------------------------------------------------------------------------------- /docs/image/social_media_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/image/social_media_preview.png -------------------------------------------------------------------------------- /docs/markdown/another_sample_model_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/markdown/another_sample_model_report.md -------------------------------------------------------------------------------- /docs/markdown/sample_model_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/markdown/sample_model_report.md -------------------------------------------------------------------------------- /docs/video/example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/docs/video/example.mp4 -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/makefile -------------------------------------------------------------------------------- /rasa_model_report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rasa_model_report/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rasa_model_report/controllers/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/controllers/controller.py -------------------------------------------------------------------------------- /rasa_model_report/controllers/csv_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/controllers/csv_controller.py -------------------------------------------------------------------------------- /rasa_model_report/controllers/e2e_coverage_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/controllers/e2e_coverage_controller.py -------------------------------------------------------------------------------- /rasa_model_report/controllers/json_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/controllers/json_controller.py -------------------------------------------------------------------------------- /rasa_model_report/controllers/markdown_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/controllers/markdown_controller.py -------------------------------------------------------------------------------- /rasa_model_report/controllers/model_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/controllers/model_report.py -------------------------------------------------------------------------------- /rasa_model_report/controllers/nlu_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/controllers/nlu_controller.py -------------------------------------------------------------------------------- /rasa_model_report/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rasa_model_report/helpers/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/helpers/constants.py -------------------------------------------------------------------------------- /rasa_model_report/helpers/type_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/helpers/type_aliases.py -------------------------------------------------------------------------------- /rasa_model_report/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/helpers/utils.py -------------------------------------------------------------------------------- /rasa_model_report/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/rasa_model_report/main.py -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /scripts/change_coverage_badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/scripts/change_coverage_badge.py -------------------------------------------------------------------------------- /scripts/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/scripts/release.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/mocks/mock_payloads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/mock_payloads.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/actions/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/actions/actions.py -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/config.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/credentials.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/data/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/data/nlu.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/data/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/data/rules.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/data/stories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/data/stories.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/domain.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/endpoints.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/DIETClassifier_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/DIETClassifier_confusion_matrix.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/DIETClassifier_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/DIETClassifier_errors.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/DIETClassifier_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/DIETClassifier_histogram.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/DIETClassifier_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/DIETClassifier_report.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/TEDPolicy_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/TEDPolicy_confusion_matrix.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/TEDPolicy_report.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/failed_test_stories.yml: -------------------------------------------------------------------------------- 1 | # None of the test stories failed - all good! 2 | -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/intent_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/intent_confusion_matrix.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/intent_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/intent_errors.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/intent_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/intent_histogram.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/intent_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/intent_report.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/stories_with_warnings.yml: -------------------------------------------------------------------------------- 1 | # No warnings for test stories 2 | -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/story_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/story_confusion_matrix.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/results/story_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/results/story_report.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v2/tests/test_stories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v2/tests/test_stories.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/actions/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/actions/actions.py -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/config.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/credentials.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/data/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/data/nlu.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/data/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/data/rules.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/data/stories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/data/stories.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/domain.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/endpoints.yml -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/DIETClassifier_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/DIETClassifier_confusion_matrix.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/DIETClassifier_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/DIETClassifier_errors.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/DIETClassifier_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/DIETClassifier_histogram.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/DIETClassifier_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/DIETClassifier_report.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/TEDPolicy_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/TEDPolicy_confusion_matrix.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/TEDPolicy_report.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/failed_test_stories.yml: -------------------------------------------------------------------------------- 1 | # None of the test stories failed - all good! 2 | -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/intent_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/intent_confusion_matrix.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/intent_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/intent_errors.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/intent_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/intent_histogram.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/intent_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/intent_report.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/stories_with_warnings.yml: -------------------------------------------------------------------------------- 1 | # No warnings for test stories 2 | -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/story_confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/story_confusion_matrix.png -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/results/story_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/results/story_report.json -------------------------------------------------------------------------------- /tests/mocks/rasa.v3/tests/test_stories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/mocks/rasa.v3/tests/test_stories.yml -------------------------------------------------------------------------------- /tests/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_controller.py -------------------------------------------------------------------------------- /tests/test_csv_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_csv_controller.py -------------------------------------------------------------------------------- /tests/test_e2e_coverage_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_e2e_coverage_controller.py -------------------------------------------------------------------------------- /tests/test_json_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_json_controller.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_markdown_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_markdown_controller.py -------------------------------------------------------------------------------- /tests/test_model_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_model_report.py -------------------------------------------------------------------------------- /tests/test_nlu_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_nlu_controller.py -------------------------------------------------------------------------------- /tests/test_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_scripts.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunohjs/rasa-model-report/HEAD/tests/utils.py --------------------------------------------------------------------------------