diff --git a/docs/user/howto/compiling_torch_model.md b/docs/user/howto/compiling_torch_model.md index 55c3690f7..52d06692d 100644 --- a/docs/user/howto/compiling_torch_model.md +++ b/docs/user/howto/compiling_torch_model.md @@ -9,6 +9,7 @@ A simple command can compile a torch model to its FHE counterpart. This process ```python from torch import nn import torch +torch.manual_seed(0) class LogisticRegression(nn.Module): """LogisticRegression with Torch"""