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
e111174b
Commit
e111174b
authored
5 years ago
by
Mathieu Beligon
Browse files
Options
Downloads
Patches
Plain Diff
[common] (roco dset) add enum for roco dsets
parent
b06bb3b3
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
common/research_common/dataset/roco/roco_datasets.py
+14
-0
14 additions, 0 deletions
common/research_common/dataset/roco/roco_datasets.py
with
14 additions
and
0 deletions
common/research_common/dataset/roco/roco_datasets.py
0 → 100644
+
14
−
0
View file @
e111174b
from
enum
import
Enum
from
research_common.constants
import
ROCO_DSET_DIR
from
research_common.dataset.dataset
import
Dataset
class
ROCODataset
(
Dataset
,
Enum
):
def
__init__
(
self
,
competition_name
:
str
):
super
().
__init__
(
ROCO_DSET_DIR
/
competition_name
,
self
.
name
)
CentralChina
=
"
robomaster_Central China Regional Competition
"
NorthChina
=
"
robomaster_North China Regional Competition
"
SouthChina
=
"
robomaster_South China Regional Competition
"
Final
=
"
robomaster_Final Tournament
"
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