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
Commits
0319c75c
Commit
0319c75c
authored
1 year ago
by
Maja Jablonska
Browse files
Options
Downloads
Patches
Plain Diff
Fixed some parameter overriding bugs
parent
16af3640
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!46
Merge COMBO 3.0 into master
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
combo/modules/model.py
+1
-1
1 addition, 1 deletion
combo/modules/model.py
setup.py
+2
-0
2 additions, 0 deletions
setup.py
with
3 additions
and
1 deletion
combo/modules/model.py
+
1
−
1
View file @
0319c75c
...
...
@@ -447,7 +447,7 @@ class Model(Module, pl.LightningModule, FromParameters):
vocabulary and the trained weights.
"""
if
config
is
None
:
with
open
(
os
.
path
.
join
(
serialization_dir
,
'
config.json
'
),
'
r
'
)
as
f
:
with
open
(
os
.
path
.
join
(
serialization_dir
,
'
config.
template.
json
'
),
'
r
'
)
as
f
:
config
=
json
.
load
(
f
)
elif
isinstance
(
config
,
str
)
or
isinstance
(
config
,
PathLike
):
with
open
(
config
,
'
r
'
)
as
f
:
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
0
View file @
0319c75c
...
...
@@ -35,9 +35,11 @@ setup(
install_requires
=
REQUIREMENTS
,
packages
=
find_packages
(
exclude
=
[
'
tests
'
]),
license
=
"
GPL-3.0
"
,
url
=
'
https://gitlab.clarin-pl.eu/syntactic-tools/combo
'
,
keywords
=
"
nlp natural-language-processing dependency-parsing
"
,
tests_require
=
[
'
pytest
'
,
'
pylint
'
],
python_requires
=
'
>=3.6
'
,
package_data
=
{
'
combo
'
:
[
'
config.template.json
'
]},
entrypoints
=
{
'
console_scripts
'
:
[
'
combo = combo.main:main
'
]},
classifiers
=
[
'
Development Status :: 4 - Beta
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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