Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DeepGrail Tagger-Linker
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
PNRIA
Global Helper
DeepGrail Tagger-Linker
Merge requests
!1
Add neural proof net class
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add neural proof net class
add-neural-proof-net-class
into
main
Overview
0
Commits
4
Pipelines
0
Changes
38
Merged
Caroline de Pourtalès
requested to merge
add-neural-proof-net-class
into
main
2 years ago
Overview
0
Commits
4
Pipelines
0
Changes
38
Expand
0
0
Merge request reports
Compare
main
version 1
ebcd90cd
2 years ago
main (base)
and
latest version
latest version
05a378e8
4 commits,
2 years ago
version 1
ebcd90cd
3 commits,
2 years ago
38 files
+
62445
−
73
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
38
Search (e.g. *.vue) (Ctrl+P)
Configuration/Configuration.py
0 → 100644
+
14
−
0
Options
import
os
from
configparser
import
ConfigParser
def
read_config
():
# Read configuration file
path_current_directory
=
os
.
path
.
dirname
(
__file__
)
path_config_file
=
os
.
path
.
join
(
path_current_directory
,
'
config.ini
'
)
config
=
ConfigParser
()
config
.
read
(
path_config_file
)
return
config
Loading