Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
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
MLAir
Commits
23ce7ee0
Commit
23ce7ee0
authored
4 years ago
by
leufen1
Browse files
Options
Downloads
Patches
Plain Diff
degraded some info loggings to debug messages
parent
5cefd433
No related branches found
No related tags found
3 merge requests
!192
include Develop
,
!191
Resolve "release v1.1.0"
,
!177
Resolve "KZ Filter creating additional dimension"
Pipeline
#50985
passed
4 years ago
Stage: test
Stage: docs
Stage: pages
Stage: deploy
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
mlair/__init__.py
+3
-3
3 additions, 3 deletions
mlair/__init__.py
mlair/helpers/join.py
+2
-2
2 additions, 2 deletions
mlair/helpers/join.py
with
5 additions
and
5 deletions
mlair/__init__.py
+
3
−
3
View file @
23ce7ee0
__version_info__
=
{
__version_info__
=
{
'
major
'
:
0
,
'
major
'
:
1
,
'
minor
'
:
12
,
'
minor
'
:
0
,
'
micro
'
:
2
,
'
micro
'
:
0
,
}
}
from
mlair.run_modules
import
RunEnvironment
,
ExperimentSetup
,
PreProcessing
,
ModelSetup
,
Training
,
PostProcessing
from
mlair.run_modules
import
RunEnvironment
,
ExperimentSetup
,
PreProcessing
,
ModelSetup
,
Training
,
PostProcessing
...
...
This diff is collapsed.
Click to expand it.
mlair/helpers/join.py
+
2
−
2
View file @
23ce7ee0
...
@@ -55,7 +55,7 @@ def download_join(station_name: Union[str, List[str]], stat_var: dict, station_t
...
@@ -55,7 +55,7 @@ def download_join(station_name: Union[str, List[str]], stat_var: dict, station_t
for
var
in
_lower_list
(
sorted
(
vars_dict
.
keys
())):
for
var
in
_lower_list
(
sorted
(
vars_dict
.
keys
())):
if
var
in
stat_var
.
keys
():
if
var
in
stat_var
.
keys
():
logging
.
debug
(
'
load: {}
'
.
format
(
var
))
logging
.
debug
(
'
load: {}
'
.
format
(
var
))
# ToDo start here for #206
# create data link
# create data link
opts
=
{
'
base
'
:
join_url_base
,
'
service
'
:
'
stats
'
,
'
id
'
:
vars_dict
[
var
],
'
statistics
'
:
stat_var
[
var
],
opts
=
{
'
base
'
:
join_url_base
,
'
service
'
:
'
stats
'
,
'
id
'
:
vars_dict
[
var
],
'
statistics
'
:
stat_var
[
var
],
...
@@ -138,7 +138,7 @@ def load_series_information(station_name: List[str], station_type: str_or_none,
...
@@ -138,7 +138,7 @@ def load_series_information(station_name: List[str], station_type: str_or_none,
opts
=
{
"
base
"
:
join_url_base
,
"
service
"
:
"
series
"
,
"
station_id
"
:
station_name
[
0
],
"
station_type
"
:
station_type
,
opts
=
{
"
base
"
:
join_url_base
,
"
service
"
:
"
series
"
,
"
station_id
"
:
station_name
[
0
],
"
station_type
"
:
station_type
,
"
network_name
"
:
network_name
}
"
network_name
"
:
network_name
}
station_vars
=
get_data
(
opts
,
headers
)
station_vars
=
get_data
(
opts
,
headers
)
logging
.
info
(
f
"
{
station_name
}
:
{
station_vars
}
"
)
logging
.
debug
(
f
"
{
station_name
}
:
{
station_vars
}
"
)
# ToDo start here for #206
vars_dict
=
{
item
[
3
].
lower
():
item
[
0
]
for
item
in
station_vars
}
vars_dict
=
{
item
[
3
].
lower
():
item
[
0
]
for
item
in
station_vars
}
return
vars_dict
return
vars_dict
...
...
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