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
d9abf6ea
Commit
d9abf6ea
authored
1 year ago
by
Maja Jablonska
Browse files
Options
Downloads
Patches
Plain Diff
Correct config.json naming bug
parent
e5bd4a29
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
combo/modules/archival.py
+3
-3
3 additions, 3 deletions
combo/modules/archival.py
combo/modules/model.py
+1
-1
1 addition, 1 deletion
combo/modules/model.py
setup.py
+2
-2
2 additions, 2 deletions
setup.py
with
6 additions
and
6 deletions
combo/modules/archival.py
+
3
−
3
View file @
d9abf6ea
...
...
@@ -81,7 +81,7 @@ def archive(model: Model,
with
(
TemporaryDirectory
(
os
.
path
.
join
(
'
tmp
'
))
as
t
,
BytesIO
()
as
out_stream
,
tarfile
.
open
(
os
.
path
.
join
(
serialization_dir
,
'
model.tar.gz
'
),
'
w|gz
'
)
as
tar_file
):
add_to_tar
(
tar_file
,
out_stream
,
json
.
dumps
(
parameters
).
encode
(),
'
config.
template.
json
'
)
add_to_tar
(
tar_file
,
out_stream
,
json
.
dumps
(
parameters
).
encode
(),
'
config.json
'
)
weights_path
=
os
.
path
.
join
(
t
,
'
weights.th
'
)
torch
.
save
(
model
.
state_dict
(),
weights_path
)
tar_file
.
add
(
weights_path
,
'
weights.th
'
)
...
...
@@ -100,7 +100,7 @@ def extracted_archive(resolved_archive_file, cleanup=True):
with
tarfile
.
open
(
resolved_archive_file
)
as
archive
:
subdir_and_files
=
[
tarinfo
for
tarinfo
in
archive
.
getmembers
()
if
(
any
([
tarinfo
.
name
.
endswith
(
f
)
for
f
in
[
'
config.
template.
json
'
,
'
weights.th
'
]])
if
(
any
([
tarinfo
.
name
.
endswith
(
f
)
for
f
in
[
'
config.json
'
,
'
weights.th
'
]])
or
'
vocabulary
'
in
tarinfo
.
name
)
]
for
f
in
subdir_and_files
:
...
...
@@ -127,7 +127,7 @@ def load_archive(url_or_filename: Union[PathLike, str],
with
extracted_archive
(
rarchive_file
)
as
archive_file
:
model
=
Model
.
load
(
archive_file
,
cuda_device
=
cuda_device
)
config_path
=
os
.
path
.
join
(
archive_file
,
'
config.
template.
json
'
)
config_path
=
os
.
path
.
join
(
archive_file
,
'
config.json
'
)
with
open
(
config_path
,
'
r
'
)
as
f
:
config
=
json
.
load
(
f
)
...
...
This diff is collapsed.
Click to expand it.
combo/modules/model.py
+
1
−
1
View file @
d9abf6ea
...
...
@@ -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.
template.
json
'
),
'
r
'
)
as
f
:
with
open
(
os
.
path
.
join
(
serialization_dir
,
'
config.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
−
2
View file @
d9abf6ea
...
...
@@ -27,8 +27,8 @@ REQUIREMENTS = [
]
setup
(
name
=
"
combo
"
,
version
=
"
3.0.
0
"
,
name
=
"
combo
-nlp
"
,
version
=
"
3.0.
1
"
,
author
=
"
Maja Jablonska
"
,
author_email
=
"
maja.jablonska@ipipan.waw.pl
"
,
install_requires
=
REQUIREMENTS
,
...
...
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