소스 검색

fix: test

shellmiao 11 달 전
부모
커밋
8b8e5c5a59
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      applications/fedssl/client_with_pgfed.py

+ 2 - 0
applications/fedssl/client_with_pgfed.py

@@ -24,6 +24,8 @@ L2 = "l2"
 
 def model_dot_product(w1, w2, requires_grad=True):
     """ Return the sum of squared difference between two models. """
+    print(w1)
+    print(w2)
     dot_product = 0.0
     for p1, p2 in zip(w1.parameters(), w2.parameters()):
         if requires_grad: