Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alibylite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Swain Lab
aliby
alibylite
Commits
b0b6d869
Commit
b0b6d869
authored
2 years ago
by
Alán Muñoz
Browse files
Options
Downloads
Patches
Plain Diff
feat(DynamicWriter): Only load meta if file exists
parent
8eeb2bf8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/agora/io/writer.py
+4
-1
4 additions, 1 deletion
src/agora/io/writer.py
with
4 additions
and
1 deletion
src/agora/io/writer.py
+
4
−
1
View file @
b0b6d869
import
itertools
import
logging
from
collections.abc
import
Iterable
from
pathlib
import
Path
from
time
import
perf_counter
from
typing
import
Dict
...
...
@@ -29,10 +30,12 @@ class DynamicWriter:
group
=
""
compression
=
"
gzip
"
compression_opts
=
9
metadata
=
None
def
__init__
(
self
,
file
:
str
):
self
.
file
=
file
self
.
metadata
=
load_attributes
(
file
)
if
Path
(
file
).
exists
():
self
.
metadata
=
load_attributes
(
file
)
def
_append
(
self
,
data
,
key
,
hgroup
):
"""
Append data to existing dataset.
"""
...
...
This diff is collapsed.
Click to expand it.
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