Quellcode durchsuchen

Update src/client/remote_sequential.py

Co-authored-by: Alexander Borzunov <hxrussia@gmail.com>
justheuristic vor 3 Jahren
Ursprung
Commit
ae971adf14
1 geänderte Dateien mit 5 neuen und 1 gelöschten Zeilen
  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)