From c944ed51011ce5a2d62ef7432f93b1d3bcaf9733 Mon Sep 17 00:00:00 2001
From: Jeffrey Wigger <jeffrey.wigger@epfl.ch>
Date: Tue, 8 Mar 2022 19:41:49 +0100
Subject: [PATCH] not sharing the starting weights

---
 src/decentralizepy/node/Node.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/decentralizepy/node/Node.py b/src/decentralizepy/node/Node.py
index 0893919..41c3f1f 100644
--- a/src/decentralizepy/node/Node.py
+++ b/src/decentralizepy/node/Node.py
@@ -431,7 +431,7 @@ class Node:
         threads_per_proc = max(math.floor(total_threads / mapping.procs_per_machine), 1)
         torch.set_num_threads(threads_per_proc)
         torch.set_num_interop_threads(1)
-        torch.manual_seed(97)
+        # torch.manual_seed(97)
         self.instantiate(
             rank,
             machine_id,
-- 
GitLab