Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
combo
Manage
Activity
Members
Labels
Plan
Issues
20
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Syntactic Tools
combo
Merge requests
!47
Fixed multiword prediction + bug that made the code write empty predictions
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fixed multiword prediction + bug that made the code write empty predictions
multiword_fix
into
main
Overview
0
Commits
14
Pipelines
0
Changes
13
Merged
Martyna Wiącek
requested to merge
multiword_fix
into
main
1 year ago
Overview
0
Commits
14
Pipelines
0
Changes
13
Expand
0
0
Merge request reports
Compare
main
version 8
fcb97076
1 year ago
version 7
11b2e8a3
1 year ago
version 6
6884e6eb
1 year ago
version 5
e007a791
1 year ago
version 4
54e37314
1 year ago
version 3
a978579d
1 year ago
version 2
5fae577a
1 year ago
version 1
25ccba60
1 year ago
main (base)
and
latest version
latest version
b670bba0
14 commits,
1 year ago
version 8
fcb97076
8 commits,
1 year ago
version 7
11b2e8a3
7 commits,
1 year ago
version 6
6884e6eb
6 commits,
1 year ago
version 5
e007a791
5 commits,
1 year ago
version 4
54e37314
4 commits,
1 year ago
version 3
a978579d
3 commits,
1 year ago
version 2
5fae577a
2 commits,
1 year ago
version 1
25ccba60
1 commit,
1 year ago
13 files
+
866
−
146
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
combo/config/from_parameters.py
+
2
−
0
Options
@@ -58,6 +58,8 @@ def serialize_single_value(value: Any, pass_down_parameter_names: List[str] = No
return
{
k
:
serialize_single_value
(
v
,
pass_down_parameter_names
)
for
k
,
v
in
value
.
items
()}
elif
isinstance
(
value
,
int
)
or
isinstance
(
value
,
float
)
or
isinstance
(
value
,
str
):
return
value
elif
value
is
None
:
return
None
else
:
return
str
(
value
)