Skip to content
Snippets Groups Projects
Commit 1ebfb876 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[qa] Fix bad reuse setup

parent 52b76394
No related branches found
No related tags found
1 merge request!6Making use of LightningDataModule and simplification of data loading
Pipeline #76687 failed
......@@ -4,9 +4,21 @@ Upstream-Contact: Andre Anjos <andre.anjos@idiap.ch>
Source: https://gitlab.idiap.ch/biosignal/software/ptbench
Files:
* src/ptbench/data/*/*.json
* tests/data/*.csv
* tests/data/*.json
* tests/data/*.png
.gitmodules
doc/_static/style.css
doc/_templates/*
doc/nitpick-exceptions.txt
doc/extras.inv
doc/extras.txt
doc/catalog.json
doc/usage/img/*.png
doc/results/img/*.jpg
doc/results/img/*.png
doc/results/img/*/*.jpg
src/ptbench/data/*/*.json
src/ptbench/data/*/*.json.bz2
tests/data/*.csv
tests/data/*.json
tests/data/*.png
Copyright: Copyright © 2023 Idiap Research Institute <contact@idiap.ch>
License: GPL-3.0-or-later
#!/usr/bin/env python3
# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""Converts TBX11k JSON annotation files into simplified JSON datasets for
ptbench.
......
# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: GPL-3.0-or-later
import os
from typing import Any, Optional, Union
......
# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: GPL-3.0-or-later
import importlib.metadata
import logging
import os
......
# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: GPL-3.0-or-later
import logging
import os
import typing
......
# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: GPL-3.0-or-later
import glob
import os
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment