justheuristic 3 년 전
부모
커밋
3513d9ad23
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/client/remote_sequential.py

+ 2 - 2
src/client/remote_sequential.py

@@ -90,7 +90,7 @@ class RemoteSequential(nn.Module):
 
 
 class RemoteTransformerBlock(RemoteSequential):
 class RemoteTransformerBlock(RemoteSequential):
     """Single transformer block hosted by swarm
     """Single transformer block hosted by swarm
-    
+
     This class is deprecated and kept for backward compatibility.
     This class is deprecated and kept for backward compatibility.
     It will be removed soon in favor of using ``RemoteSequential`` directly.
     It will be removed soon in favor of using ``RemoteSequential`` directly.
     """
     """
@@ -98,6 +98,6 @@ class RemoteTransformerBlock(RemoteSequential):
     def __init__(self, *args, **kwargs):
     def __init__(self, *args, **kwargs):
         super().__init__(*args, **kwargs)
         super().__init__(*args, **kwargs)
         assert len(self) == 1, "Remote Block is a sequence size 1"
         assert len(self) == 1, "Remote Block is a sequence size 1"
-        
+
     def extra_repr(self):
     def extra_repr(self):
         return f"{self.sequence_manager.block_uids[0]}"
         return f"{self.sequence_manager.block_uids[0]}"