Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dl_on_supercomputers
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HPC4NS
dl_on_supercomputers
Merge requests
!1
Add table of contents
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Add table of contents
issue_1
into
master
Overview
8
Commits
4
Pipelines
0
Changes
2
All threads resolved!
Hide all comments
Merged
Add table of contents
Ghost User
requested to merge
issue_1
into
master
Mar 7, 2019
Overview
8
Commits
4
Pipelines
0
Changes
2
All threads resolved!
Hide all comments
Added a table of contents
Updated the numbering of the headlines
Minor change in the script data_utils.py in directory utils to use the new style for string formatting
closes #1
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
79622fae
4 commits,
Mar 7, 2019
2 files
+
41
−
18
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
utils/data_utils.py
+
1
−
1
View file @ 79622fae
Edit in single-file editor
Open in Web IDE
Show full file
@@ -49,7 +49,7 @@ class DataValidator:
if
not
os
.
path
.
exists
(
data_dir
):
data_dir
=
os
.
path
.
join
(
os
.
path
.
abspath
(
'
../../datasets
'
))
print
(
'
Using
%s
as the data directory.
'
%
data_dir
)
print
(
'
Using
{}
as the data directory.
'
.
format
(
data_dir
)
)
# Check if the directory exists
assert
os
.
path
.
exists
(
data_dir
),
\
Loading