Tenseal encrypted state-dict size huge #334
Unanswered
umermjd11
asked this question in
Course: Foundations of Private Computation
Replies: 2 comments 4 replies
-
Hello! |
Beta Was this translation helpful? Give feedback.
4 replies
-
hi, BR |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a pytorch model
Sequential(
(0): Linear(in_features=784, out_features=200, bias=True)
(1): ReLU()
(2): Dropout(p=0.2, inplace=False)
(3): Linear(in_features=200, out_features=200, bias=True)
(4): ReLU()
(5): Dropout(p=0.2, inplace=False)
(6): Linear(in_features=200, out_features=10, bias=True)
(7): LogSoftmax(dim=1)
)
I am trying to do federated learning
for this I am homomorphically encrypting the state_dict using tenseal.
The problem is that a encrypted tensor of 784 floats takes 201.76 MB storage
if we consider like this the total size of encrypted state-dict will exceed 120 GB.
How can we do federated learning using tenseal considering the storage issue.
Beta Was this translation helpful? Give feedback.
All reactions