Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mednet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
medai
software
mednet
Merge requests
!11
updated TB-POC dataset and corresponding tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
updated TB-POC dataset and corresponding tests
update-tbpoc
into
add-datamodule
Overview
0
Commits
2
Pipelines
2
Changes
13
Merged
Maxime DELITROZ
requested to merge
update-tbpoc
into
add-datamodule
1 year ago
Overview
0
Commits
2
Pipelines
2
Changes
13
Expand
Updated TB-POC dataset and corresponding tests
0
0
Merge request reports
Compare
add-datamodule
version 1
bcc1e440
1 year ago
add-datamodule (base)
and
latest version
latest version
22caca5f
2 commits,
1 year ago
version 1
bcc1e440
1 commit,
1 year ago
13 files
+
285
−
550
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
src/ptbench/data/tbpoc/__init__.py
+
0
−
83
Options
# SPDX-FileCopyrightText: Copyright © 2023 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""
TB-POC dataset for computer-aided diagnosis.
* Reference: [TB-POC-2018]_
* Original resolution (height x width or width x height): 2048 x 2500
* Split reference: none
* Stratified kfold protocol:
* Training samples: 72% of TB and healthy CXR (including labels)
* Validation samples: 18% of TB and healthy CXR (including labels)
* Test samples: 10% of TB and healthy CXR (including labels)
"""
import
importlib.resources
import
os
from
...utils.rc
import
load_rc
from
..
import
make_dataset
from
..dataset
import
JSONDataset
from
..loader
import
load_pil_grayscale
,
make_delayed
_protocols
=
[
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_0.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_1.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_2.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_3.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_4.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_5.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_6.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_7.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_8.json.bz2
"
),
importlib
.
resources
.
files
(
__name__
).
joinpath
(
"
fold_9.json.bz2
"
),
]
_datadir
=
load_rc
().
get
(
"
datadir.tbpoc
"
,
os
.
path
.
realpath
(
os
.
curdir
))
def
_raw_data_loader
(
sample
):
return
dict
(
data
=
load_pil_grayscale
(
os
.
path
.
join
(
_datadir
,
sample
[
"
data
"
])),
label
=
sample
[
"
label
"
],
)
def
_loader
(
context
,
sample
):
# "context" is ignored in this case - database is homogeneous
# we returned delayed samples to avoid loading all images at once
return
make_delayed
(
sample
,
_raw_data_loader
)
json_dataset
=
JSONDataset
(
protocols
=
_protocols
,
fieldnames
=
(
"
data
"
,
"
label
"
),
loader
=
_loader
,
)
"""
TB-POC dataset object.
"""
def
_maker
(
protocol
,
resize_size
=
512
,
cc_size
=
512
,
RGB
=
False
):
from
torchvision
import
transforms
from
..augmentations
import
ElasticDeformation
from
..image_utils
import
RemoveBlackBorders
post_transforms
=
[]
if
RGB
:
post_transforms
=
[
transforms
.
Lambda
(
lambda
x
:
x
.
convert
(
"
RGB
"
)),
transforms
.
ToTensor
(),
]
return
make_dataset
(
[
json_dataset
.
subsets
(
protocol
)],
[
RemoveBlackBorders
(),
transforms
.
Resize
(
resize_size
),
transforms
.
CenterCrop
(
cc_size
),
],
[
ElasticDeformation
(
p
=
0.8
)],
post_transforms
,
)
Loading