Closed mustansarsaeed closed 3 years ago
You can easily save it. When you take the activations as output, you can create a syft state object and then can serialize it into protobuf file for sending it over to PyGrid
Thanks @vkkhare for the reply . Let me implement the guide your provided and will get back in case of any missing element.
Thanks @vkkhare . It worked as you suggested.
Hi, Thank you for the great library. I want to save the activations as we are doing for the weights parameters. My current model is:
I want to save
relu_activations
for processing purpose. Is there any way we can do as we are doing for weights. I have seen the code forweights
that are being loaded from the file as:This
modelSyftState
includes the model parameters. I want something like this tosave and load activations.
Any help will be appreciated.