Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Code Computer Vision
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
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
PolySTAR
RoboMaster
Computer Vision
Code Computer Vision
Commits
455ce80b
Commit
455ce80b
authored
5 years ago
by
Mathieu Beligon
Browse files
Options
Downloads
Patches
Plain Diff
[common] (split dset) Add classes to represent a split dset in train/val/test sets
parent
e8148400
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/research_common/dataset/split.py
+14
-0
14 additions, 0 deletions
common/research_common/dataset/split.py
common/research_common/dataset/split_dataset.py
+33
-0
33 additions, 0 deletions
common/research_common/dataset/split_dataset.py
with
47 additions
and
0 deletions
common/research_common/dataset/split.py
0 → 100644
+
14
−
0
View file @
455ce80b
from
enum
import
Enum
from
pathlib
import
Path
from
research_common.dataset.dataset
import
Dataset
class
Split
(
Enum
):
Val
=
"
val
"
Train
=
"
train
"
Test
=
"
test
"
TrainVal
=
"
trainval
"
def
get_split_file
(
self
,
dataset
:
Dataset
)
->
Path
:
return
(
dataset
.
dataset_path
/
self
.
value
).
with_suffix
(
"
.txt
"
)
This diff is collapsed.
Click to expand it.
common/research_common/dataset/split_dataset.py
0 → 100644
+
33
−
0
View file @
455ce80b
from
pathlib
import
Path
from
typing
import
Iterable
,
List
from
research_common.dataset.dataset
import
Dataset
from
research_common.dataset.roco.roco_datasets
import
ROCODataset
from
research_common.dataset.split
import
Split
class
SplitDataset
(
Dataset
):
def
__init__
(
self
,
root_dataset
:
Dataset
,
split
:
Split
):
super
().
__init__
(
root_dataset
.
dataset_path
,
f
"
{
root_dataset
.
dataset_name
}
_
{
split
.
name
}
"
)
self
.
_load_file_names
(
split
)
def
_load_file_names
(
self
,
split
:
Split
):
self
.
_file_names
=
split
.
get_split_file
(
self
).
read_text
().
strip
().
split
(
"
\n
"
)
@property
def
image_paths
(
self
)
->
Iterable
[
Path
]:
return
self
.
_generate_file_paths
(
self
.
images_dir_path
,
"
.jpg
"
)
@property
def
annotation_paths
(
self
)
->
Iterable
[
Path
]:
return
self
.
_generate_file_paths
(
self
.
annotations_dir_path
,
"
.xml
"
)
def
_generate_file_paths
(
self
,
dir_path
:
Path
,
suffix
:
str
)
->
List
[
Path
]:
return
[(
dir_path
/
file_name
).
with_suffix
(
suffix
)
for
file_name
in
self
.
_file_names
]
if
__name__
==
"
__main__
"
:
print
(
set
(
SplitDataset
(
ROCODataset
.
CentralChina
,
Split
.
Train
).
annotation_paths
)
&
set
(
SplitDataset
(
ROCODataset
.
CentralChina
,
Split
.
Val
).
annotation_paths
)
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment