You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Tensorflow default save model API, it works. It can save and read model.
But simply for a two layer neural network with 8 hidden units costs me 68MB to save the model!
Just to report this issue. I don't get it why because the number of variable need to save is simply doubled for most cases in ADVI for mean-field approximation. My best guess is that the number of tensor operations by Edward are huge. So that since simple save saves everything.
In principle, if one save the model by manually collecting all the variable not operation, it should be fine.
update
When I use the manual save, I found the it is the .meta file that is to blame. So somehow, the graph created by Edward under the surface is becoming too much expensive for even saving a simple network.
The text was updated successfully, but these errors were encountered:
I use Tensorflow default save model API, it works. It can save and read model.
But simply for a two layer neural network with 8 hidden units costs me 68MB to save the model!
Just to report this issue. I don't get it why because the number of variable need to save is simply doubled for most cases in ADVI for mean-field approximation. My best guess is that the number of tensor operations by Edward are huge. So that since simple save saves everything.
In principle, if one save the model by manually collecting all the variable not operation, it should be fine.
update
When I use the manual save, I found the it is the .meta file that is to blame. So somehow, the graph created by Edward under the surface is becoming too much expensive for even saving a simple network.
The text was updated successfully, but these errors were encountered: