fix: set torch seed in doc

This commit is contained in:
jfrery
2021-12-20 09:42:51 +01:00
committed by Jordan Fréry
parent 31a3bdcf2e
commit 75d231fada

View File

@@ -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"""