Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
AMBS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
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
Show more breadcrumbs
esde
machine-learning
AMBS
Commits
8a8b51b4
Commit
8a8b51b4
authored
4 years ago
by
Michael Langguth
Browse files
Options
Downloads
Patches
Plain Diff
Added template for datasplit config file.
parent
f54b06f7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
video_prediction_tools/data_split/datasplit_template.json
+21
-0
21 additions, 0 deletions
video_prediction_tools/data_split/datasplit_template.json
with
21 additions
and
0 deletions
video_prediction_tools/data_split/datasplit_template.json
0 → 100644
+
21
−
0
View file @
8a8b51b4
#
NOTE:
This
json-file
should
not
be
processed
and
simply
serves
as
an
exemplary
file
for
configuringing
the
datasplit.
#
If
you
would
like
to
generate
your
own
datasplit
config
file,
you
may
copy
this
template
and
modify
it
to
your
personal
needs.
#
However,
remember
to
remove
any
comment
lines
(starting
with
#)
from
your
config-file
then!!!
#
#
Explanation:
In
the
following,
the
data
of
the
whole
year
2015
and
the
first
half
of
2016
is
used
for
training,
#
while
the
data
of
2017
and
2018
are
used
for
validation
and
testing,
respectively.
#
Be
aware
that
this
is
a
prue
data
file,
i.e.
do
not
make
use
of
any
Python-functions
such
as
np.range
or
similar
here!
{
"train"
:{
"2015"
:[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
],
"2016"
:[
1
,
2
,
3
,
4
,
5
,
6
]
},
"val"
:
{
"2017"
:[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
]
},
"test"
:
{
"2018"
:[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
]
}
}
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