Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor 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
calibration
pycalibration
Merge requests
!116
Feat: Optimace CalDB requests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feat: Optimace CalDB requests
feat/update_plotCalDB
into
master
Overview
26
Commits
7
Pipelines
0
Changes
1
1 unresolved thread
Hide all comments
Merged
Mikhail Karnevskiy
requested to merge
feat/update_plotCalDB
into
master
5 years ago
Overview
26
Commits
7
Pipelines
0
Changes
1
1 unresolved thread
Hide all comments
Expand
@ahmedk
@haufs
Number of requests to the calibration DB is significantly reduced.
0
0
Merge request reports
Viewing commit
47791596
Prev
Next
Show latest version
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
47791596
Check number of names
· 47791596
Mikhail Karnevskiy
authored
5 years ago
cal_tools/cal_tools/ana_tools.py
+
2
−
1
Options
@@ -170,7 +170,8 @@ def combine_lists(*args, names=None):
for
param
in
params
:
possible_params
=
[
x
+
[
y
]
for
x
in
possible_params
for
y
in
param
]
if
isinstance
(
names
,
list
)
and
len
(
names
)
==
len
(
args
):
if
isinstance
(
names
,
(
list
,
tuple
)):
assert
len
(
names
)
==
len
(
args
)
d_possible_params
=
[]
for
par
in
possible_params
:
d_possible_params
.
append
(
dict
(
zip
(
names
,
par
)))
Loading