Explorar el Código

Update src/client/remote_sequential.py

Co-authored-by: Alexander Borzunov <hxrussia@gmail.com>
justheuristic hace 3 años
padre
commit
ae971adf14
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      src/client/remote_sequential.py

+ 5 - 1
src/client/remote_sequential.py

@@ -89,7 +89,11 @@ class RemoteSequential(nn.Module):
 
 
 class RemoteTransformerBlock(RemoteSequential):
-    """Single transformer block hosted by swarm"""
+    """Single transformer block hosted by swarm
+    
+    This class is deprecated and kept for backward compatibility.
+    It will be removed soon in favor of using ``RemoteSequential`` directly.
+    """
 
     def __init__(self, *args, **kwargs):
         super().__init__(*args, **kwargs)