-
Notifications
You must be signed in to change notification settings - Fork 8
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
Larger file storage #35
Conversation
Done. |
If @thempel has more problems with file sizes we can use the same for storing file contents in general... |
In general: Yes, it would be good to not be limited in the system size. The system I am working with right now is not very big (25,000 atoms) and the files that need to be moved around are about 11.5 MB, so already pretty close to the 16 MB. In the case mentioned in #28, I suspect another problem since it used to work before. |
# Conflicts: # examples/tutorial/1_example_setup_project.ipynb
Done. This is implemented. This means (when it works) we have now all major features we talked about. The featurizer stuff would be icing on the cake. Who would have thought. I approach the pure 6000 lines of code... (not considering all that I added and deleted) :) |
merging |
resolves #26.
Add the possibility to store arbitrary large objects. So far this is only used by PyEMMAModel to save the returned results. This is handled by gridFS and it automatically divides large files into blocks.
I also store the result model.json in a folder in
projects/proj-name/models
for later processing.