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
bce85aff
Commit
bce85aff
authored
4 years ago
by
Mathieu Beligon
Browse files
Options
Downloads
Patches
Plain Diff
[ROCO ZOO] Fix property typing
parent
ac2fcbce
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/research/common/datasets/roco/zoo/roco_dataset_zoo.py
+11
-10
11 additions, 10 deletions
src/research/common/datasets/roco/zoo/roco_dataset_zoo.py
with
11 additions
and
10 deletions
src/research/common/datasets/roco/zoo/roco_dataset_zoo.py
+
11
−
10
View file @
bce85aff
from
typing
import
Iterable
,
Iterator
,
Type
from
typing
import
Iterable
,
Iterator
,
List
,
Type
from
research.common.datasets.roco.roco_datasets
import
ROCODatasets
from
research.common.datasets.roco.zoo.dji
import
DJIROCODatasets
...
...
@@ -7,13 +7,14 @@ from research.common.datasets.roco.zoo.twitch import TwitchROCODatasets
# FIXME: find a better way to do that (builder need to be instantiated once per call)
class
ROCODatasetsZoo
(
Iterable
[
Type
[
ROCODatasets
]]):
# FIXME: improve the singleton pattern here
class
ROCODatasetsZooClass
(
Iterable
[
Type
[
ROCODatasets
]]):
DJI_ZOOMED
=
DJIROCOZoomedDatasets
DJI
=
DJIROCODatasets
TWITCH
=
TwitchROCODatasets
@property
def
TWITCH_TRAIN_DATASETS
(
self
):
def
TWITCH_TRAIN_DATASETS
(
self
)
->
List
[
ROCODatasets
]
:
return
[
self
.
TWITCH
.
T470149066
,
self
.
TWITCH
.
T470150052
,
...
...
@@ -23,19 +24,19 @@ class ROCODatasetsZoo(Iterable[Type[ROCODatasets]]):
]
@property
def
TWITCH_VALIDATION_DATASETS
(
self
):
def
TWITCH_VALIDATION_DATASETS
(
self
)
->
List
[
ROCODatasets
]
:
return
[
self
.
TWITCH
.
T470152932
,
self
.
TWITCH
.
T470149568
]
@property
def
TWITCH_TEST_DATASETS
(
self
):
def
TWITCH_TEST_DATASETS
(
self
)
->
List
[
ROCODatasets
]
:
return
[
self
.
TWITCH
.
T470152838
,
self
.
TWITCH
.
T470151286
]
@property
def
DJI_TRAIN_DATASETS
(
self
):
def
DJI_TRAIN_DATASETS
(
self
)
->
List
[
ROCODatasets
]
:
return
[
self
.
DJI
.
FINAL
,
self
.
DJI
.
CENTRAL_CHINA
,
self
.
DJI
.
NORTH_CHINA
,
self
.
DJI
.
SOUTH_CHINA
]
@property
def
DJI_ZOOMED_TRAIN_DATASETS
(
self
):
def
DJI_ZOOMED_TRAIN_DATASETS
(
self
)
->
List
[
ROCODatasets
]
:
return
[
self
.
DJI_ZOOMED
.
FINAL
,
self
.
DJI_ZOOMED
.
CENTRAL_CHINA
,
...
...
@@ -44,11 +45,11 @@ class ROCODatasetsZoo(Iterable[Type[ROCODatasets]]):
]
@property
def
TWITCH_DJI_TRAIN_DATASETS
(
self
):
def
TWITCH_DJI_TRAIN_DATASETS
(
self
)
->
List
[
ROCODatasets
]
:
return
self
.
TWITCH_TRAIN_DATASETS
+
self
.
DJI_TRAIN_DATASETS
@property
def
TWITCH_DJI_ZOOMED_TRAIN_DATASETS
(
self
):
def
TWITCH_DJI_ZOOMED_TRAIN_DATASETS
(
self
)
->
List
[
ROCODatasets
]
:
return
self
.
TWITCH_TRAIN_DATASETS
+
self
.
DJI_TRAIN_DATASETS
DEFAULT_TEST_DATASETS
=
TWITCH_TEST_DATASETS
...
...
@@ -59,7 +60,7 @@ class ROCODatasetsZoo(Iterable[Type[ROCODatasets]]):
return
iter
((
self
.
DJI
,
self
.
DJI_ZOOMED
,
self
.
TWITCH
))
ROCODatasetsZoo
=
ROCODatasetsZoo
()
ROCODatasetsZoo
=
ROCODatasetsZoo
Class
()
if
__name__
==
"
__main__
"
:
...
...
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