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

[configs.datasets.hrf] Add full-resolution train/test sets as evaluation datasets

parent c8b53f23
No related branches found
No related tags found
No related merge requests found
Pipeline #39972 failed
...@@ -9,4 +9,10 @@ ...@@ -9,4 +9,10 @@
""" """
from bob.ip.binseg.configs.datasets.hrf import _maker_1168 from bob.ip.binseg.configs.datasets.hrf import _maker_1168
dataset = _maker_1168("default") dataset = _maker_1168("default")
from bob.ip.binseg.configs.datasets.hrf.default_fullres import dataset as _fr
dataset["train (full resolution)"] = _fr["train"]
dataset["test (full resolution)"] = _fr["test"]
...@@ -12,6 +12,8 @@ from bob.ip.binseg.configs.datasets.hrf.xtest import dataset as _xt ...@@ -12,6 +12,8 @@ from bob.ip.binseg.configs.datasets.hrf.xtest import dataset as _xt
dataset = { dataset = {
"train": _xt["train"], "train": _xt["train"],
"test": _xt["test"], "test": _xt["test"],
"train (full resolution)": _xt["train (full resolution)"],
"test (full resolution)": _xt["test (full resolution)"],
"drive (train)": _xt["drive (train)"].copy( "drive (train)": _xt["drive (train)"].copy(
[Crop(75, 10, 416, 544), Pad((21, 0, 22, 0)), Resize(1168)] [Crop(75, 10, 416, 544), Pad((21, 0, 22, 0)), Resize(1168)]
), ),
......
...@@ -13,14 +13,17 @@ from bob.ip.binseg.configs.datasets.hrf.default import dataset as _hrf ...@@ -13,14 +13,17 @@ from bob.ip.binseg.configs.datasets.hrf.default import dataset as _hrf
from bob.ip.binseg.configs.datasets.iostar.vessel import dataset as _iostar from bob.ip.binseg.configs.datasets.iostar.vessel import dataset as _iostar
dataset = { dataset = {
"train": _hrf["train"], "train": _hrf["train"],
"test": _hrf["test"], "test": _hrf["test"],
"drive (train)": _drive["train"], "train (full resolution)": _hrf["train (full resolution)"],
"drive (test)": _drive["test"], "test (full resolution)": _fr["test (full resolution)"],
"stare (train)": _stare["train"], "test": _hrf["test"],
"stare (test)": _stare["test"], "drive (train)": _drive["train"],
"chasedb1 (train)": _chase["train"], "drive (test)": _drive["test"],
"chasedb1 (test)": _chase["test"], "stare (train)": _stare["train"],
"iostar (train)": _iostar["train"], "stare (test)": _stare["test"],
"iostar (test)": _iostar["test"], "chasedb1 (train)": _chase["train"],
} "chasedb1 (test)": _chase["test"],
"iostar (train)": _iostar["train"],
"iostar (test)": _iostar["test"],
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment