Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
calng
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
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
calibration
calng
Commits
867150d8
Commit
867150d8
authored
1 year ago
by
David Hammer
Browse files
Options
Downloads
Patches
Plain Diff
Reformat
parent
95bbab69
No related branches found
No related tags found
2 merge requests
!74
Refactor DetectorAssembler
,
!73
Refactor stacking for reuse and overlappability
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/calng/stacking_utils.py
+7
-1
7 additions, 1 deletion
src/calng/stacking_utils.py
with
7 additions
and
1 deletion
src/calng/stacking_utils.py
+
7
−
1
View file @
867150d8
import
collections
import
concurrent.futures
import
enum
import
functools
import
re
from
karabo.bound
import
(
...
...
@@ -38,6 +37,7 @@ def merge_schema():
.
defaultValue
(
False
)
.
reconfigurable
()
.
commit
(),
STRING_ELEMENT
(
schema
)
.
key
(
"
sourcePattern
"
)
.
displayedName
(
"
Source pattern
"
)
...
...
@@ -45,6 +45,7 @@ def merge_schema():
.
defaultValue
(
""
)
.
reconfigurable
()
.
commit
(),
STRING_ELEMENT
(
schema
)
.
key
(
"
keyPattern
"
)
.
displayedName
(
"
Key pattern
"
)
...
...
@@ -52,6 +53,7 @@ def merge_schema():
.
defaultValue
(
""
)
.
reconfigurable
()
.
commit
(),
STRING_ELEMENT
(
schema
)
.
key
(
"
replacement
"
)
.
displayedName
(
"
Replacement
"
)
...
...
@@ -59,6 +61,7 @@ def merge_schema():
.
defaultValue
(
""
)
.
reconfigurable
()
.
commit
(),
STRING_ELEMENT
(
schema
)
.
key
(
"
groupType
"
)
.
displayedName
(
"
Group type
"
)
...
...
@@ -67,6 +70,7 @@ def merge_schema():
.
defaultValue
(
GroupType
.
MULTISOURCE
.
value
)
.
reconfigurable
()
.
commit
(),
STRING_ELEMENT
(
schema
)
.
key
(
"
mergeMethod
"
)
.
displayedName
(
"
Merge method
"
)
...
...
@@ -75,6 +79,7 @@ def merge_schema():
.
defaultValue
(
MergeMethod
.
STACK
.
value
)
.
reconfigurable
()
.
commit
(),
INT32_ELEMENT
(
schema
)
.
key
(
"
axis
"
)
.
displayedName
(
"
Axis
"
)
...
...
@@ -82,6 +87,7 @@ def merge_schema():
.
defaultValue
(
0
)
.
reconfigurable
()
.
commit
(),
STRING_ELEMENT
(
schema
)
.
key
(
"
missingValue
"
)
.
displayedName
(
"
Missing value default
"
)
...
...
This diff is collapsed.
Click to expand it.
David Hammer
@hammerd
mentioned in commit
209bb3f8
·
1 year ago
mentioned in commit
209bb3f8
mentioned in commit 209bb3f8766132fa7ceb70e0db9fa573e7b1a56b
Toggle commit list
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