Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
deepdraw
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
Model registry
Operate
Environments
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
medai
software
deepdraw
Merge requests
!40
CXR_Lung_Segmentation_baseline_results
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CXR_Lung_Segmentation_baseline_results
CXR_Lung_Segmentation_baseline_results
into
master
Overview
1
Commits
5
Pipelines
4
Changes
79
Merged
Matheus Armani Renzo
requested to merge
CXR_Lung_Segmentation_baseline_results
into
master
3 years ago
Overview
1
Commits
5
Pipelines
4
Changes
79
Expand
Adding results documentation for CXR Lung Segmentation datasets. (Branch was rebased)
0
0
Merge request reports
Compare
master
version 3
549dcba0
3 years ago
version 2
c6ef7221
3 years ago
version 1
6729a4f1
3 years ago
master (base)
and
latest version
latest version
ddd93aad
5 commits,
3 years ago
version 3
549dcba0
5 commits,
3 years ago
version 2
c6ef7221
2 commits,
3 years ago
version 1
6729a4f1
1 commit,
3 years ago
79 files
+
673
−
738
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
79
Search (e.g. *.vue) (Ctrl+P)
bob/ip/binseg/configs/datasets/JSRT/xtest.py deleted
100644 → 0
+
0
−
21
Options
#!/usr/bin/env python
# coding=utf-8
"""
JSRT cross-evaluation dataset
"""
from
bob.ip.binseg.configs.datasets.JSRT.default
import
dataset
as
_jsrt
from
bob.ip.binseg.configs.datasets.MC.default
import
dataset
as
_mc
from
bob.ip.binseg.configs.datasets.Shenzhen.default
import
dataset
as
_shenzhen
dataset
=
{
"
train
"
:
_jsrt
[
"
train
"
],
"
validation
"
:
_jsrt
[
"
validation
"
],
"
test
"
:
_jsrt
[
"
test
"
],
"
MC (train)
"
:
_mc
[
"
train
"
],
"
MC (validation)
"
:
_mc
[
"
validation
"
],
"
MC (test)
"
:
_mc
[
"
test
"
],
"
Shenzhen (train)
"
:
_shenzhen
[
"
train
"
],
"
Shenzhen (validation)
"
:
_shenzhen
[
"
validation
"
],
"
Shenzhen (test)
"
:
_shenzhen
[
"
test
"
],
}
Loading