Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: allow numpy to extend filesize for larger memmaps. #199

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openwakeword/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ def __init__(self,
self.label_transform_funcs = label_transform_funcs

# Get array mmaps and store their shapes (but load files < 1 GB total size into memory)
self.data = {label: np.load(fl, mmap_mode='r') for label, fl in data_files.items()}
self.data = {label: np.load(fl, mmap_mode='r+') for label, fl in data_files.items()}
self.labels = {label: np.load(fl) for label, fl in label_files.items()}
self.data_counter = {label: 0 for label in data_files.keys()}
self.original_shapes = {label: self.data[label].shape for label in self.data.keys()}
Expand Down