Open
Description
The Pipcook, a front-end oriented DL framework talk by @WenheLI makes the following point on model storage issues in the web context:
And finally, we are thinking about model storage.
As you know that, a deep learning model essentially is a graph with some weights.
And if we can come up with, it's kind of like, we call it neural network orientated database.
Basically, it's a graph orientated database that stores the information in a graph format.
And in this way, we can definitely reduce the serialization overhead.
We are just trying to put some, like deep learning models into the indexedDB or some other regular database.
Questions:
- Can we improve IndexedDB to make it more amenable to storing graphs such as ML/DL models? What are the specific requirements that should be satisfied?
- What can we learn from graph databases such as Neo4j that would be transferrable to the web?