This is an automated email from the ASF dual-hosted git repository.
Gerrrr pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/otava-playground.git
from 3dfa7e4 Use Otava 0.8.0 and lots of fixes
add cea07c3 Add Dataset mode for comparing algorithms on real series
new 65182fc Merge pull request #4 from apache/custom-datasets
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
README.md | 10 +
docs/index.md | 7 +
docs/visualizer.md | 69 ++++
pyproject.toml | 1 +
src/otava_test_data/datasets/__init__.py | 37 ++
src/otava_test_data/datasets/tigerbeetle.py | 75 ++++
src/otava_test_data/tests/test_compare_api.py | 161 +++++++++
src/otava_test_data/tests/test_datasets.py | 53 +++
src/otava_test_data/web/main.py | 201 +++++++++--
src/otava_test_data/web/static/css/style.css | 172 +++++++++
src/otava_test_data/web/static/js/app.js | 500 +++++++++++++++++++++++---
src/otava_test_data/web/templates/index.html | 90 ++++-
12 files changed, 1287 insertions(+), 89 deletions(-)
create mode 100644 src/otava_test_data/datasets/__init__.py
create mode 100644 src/otava_test_data/datasets/tigerbeetle.py
create mode 100644 src/otava_test_data/tests/test_compare_api.py
create mode 100644 src/otava_test_data/tests/test_datasets.py