Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OrcaSong
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Machine Learning
OrcaSong
Merge requests
!10
Resolve "Jumps in training performance due to file changes"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Jumps in training performance due to file changes"
14-jumps-in-training-performance-due-to-file-changes
into
master
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Daniel Guderian
requested to merge
14-jumps-in-training-performance-due-to-file-changes
into
master
4 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Closes
#14 (closed)
Edited
4 years ago
by
Daniel Guderian
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
05503d70
1 commit,
4 years ago
1 file
+
4
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
orcasong_contrib/data_tools/make_data_split/make_data_split.py
+
4
−
2
Options
@@ -22,7 +22,7 @@ import toml
import
docopt
import
natsort
as
ns
import
h5py
import
random
def
parse_input
():
"""
@@ -92,7 +92,9 @@ def get_h5_filepaths(dirpath):
if
f
.
endswith
(
'
.h5
'
):
filepaths
.
append
(
dirpath
+
'
/
'
+
f
)
filepaths
=
ns
.
natsorted
(
filepaths
)
# TODO should not be necessary actually!
#randomize order
random
.
Random
(
42
).
shuffle
(
filepaths
)
return
filepaths
Loading