network_utils
Adapted from https://github.com/Physical-Intelligence/openpi
WebsocketClientPolicy
Implements the Policy interface by communicating with a server over websocket.
See WebsocketPolicyServer for a corresponding server implementation.
Source code in OmniGibson/omnigibson/learning/utils/network_utils.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | |
__init__(host='0.0.0.0', port=8000, scheme='ws', api_key=None, allow_reconnect=False)
Initializes the websocket client policy.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
host
|
str
|
Hostname of the websocket server to connect to. |
'0.0.0.0'
|
port
|
int
|
Port of the websocket server to connect to. Defaults to 8000. |
8000
|
scheme
|
str
|
WebSocket scheme to use. Either "wss" (secure) or "ws" (insecure). Defaults to "ws". |
'ws'
|
api_key
|
str
|
API key to include in the Authorization header when connecting to the websocket server, if required. |
None
|
allow_reconnect
|
bool
|
Whether to allow automatic reconnection if the websocket connection is lost. If False, the client will raise an error if the connection is lost. If True, the client will attempt to reconnect indefinitely with a delay between attempts. |
False
|
Source code in OmniGibson/omnigibson/learning/utils/network_utils.py
WebsocketPolicyServer
Serves a policy using the websocket protocol. See websocket_client_policy.py for a client implementation.
Currently only implements the load and infer methods.
Source code in OmniGibson/omnigibson/learning/utils/network_utils.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 | |