wandb 0.15.9__py3-none-any.whl → 0.15.11__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- wandb/__init__.py +5 -1
- wandb/apis/public.py +137 -17
- wandb/apis/reports/_panels.py +1 -1
- wandb/apis/reports/blocks.py +1 -0
- wandb/apis/reports/report.py +27 -5
- wandb/cli/cli.py +52 -41
- wandb/docker/__init__.py +17 -0
- wandb/docker/auth.py +1 -1
- wandb/env.py +24 -4
- wandb/filesync/step_checksum.py +3 -3
- wandb/integration/openai/openai.py +3 -0
- wandb/integration/ultralytics/__init__.py +9 -0
- wandb/integration/ultralytics/bbox_utils.py +196 -0
- wandb/integration/ultralytics/callback.py +458 -0
- wandb/integration/ultralytics/classification_utils.py +66 -0
- wandb/integration/ultralytics/mask_utils.py +141 -0
- wandb/integration/ultralytics/pose_utils.py +92 -0
- wandb/integration/xgboost/xgboost.py +3 -3
- wandb/integration/yolov8/__init__.py +0 -7
- wandb/integration/yolov8/yolov8.py +22 -3
- wandb/old/settings.py +7 -0
- wandb/plot/line_series.py +0 -1
- wandb/proto/v3/wandb_internal_pb2.py +353 -300
- wandb/proto/v3/wandb_server_pb2.py +37 -41
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v3/wandb_telemetry_pb2.py +16 -16
- wandb/proto/v4/wandb_internal_pb2.py +272 -260
- wandb/proto/v4/wandb_server_pb2.py +37 -40
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_telemetry_pb2.py +16 -16
- wandb/proto/wandb_internal_codegen.py +7 -31
- wandb/sdk/artifacts/artifact.py +321 -189
- wandb/sdk/artifacts/artifact_cache.py +14 -0
- wandb/sdk/artifacts/artifact_manifest.py +5 -4
- wandb/sdk/artifacts/artifact_manifest_entry.py +37 -9
- wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +1 -9
- wandb/sdk/artifacts/artifact_saver.py +13 -50
- wandb/sdk/artifacts/artifact_ttl.py +6 -0
- wandb/sdk/artifacts/artifacts_cache.py +119 -93
- wandb/sdk/artifacts/staging.py +25 -0
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +12 -7
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +2 -3
- wandb/sdk/artifacts/storage_policies/__init__.py +4 -0
- wandb/sdk/artifacts/storage_policies/register.py +1 -0
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +4 -3
- wandb/sdk/artifacts/storage_policy.py +4 -2
- wandb/sdk/backend/backend.py +0 -16
- wandb/sdk/data_types/image.py +3 -1
- wandb/sdk/integration_utils/auto_logging.py +38 -13
- wandb/sdk/interface/interface.py +16 -135
- wandb/sdk/interface/interface_shared.py +9 -147
- wandb/sdk/interface/interface_sock.py +0 -26
- wandb/sdk/internal/file_pusher.py +20 -3
- wandb/sdk/internal/file_stream.py +3 -1
- wandb/sdk/internal/handler.py +53 -70
- wandb/sdk/internal/internal_api.py +220 -130
- wandb/sdk/internal/job_builder.py +41 -37
- wandb/sdk/internal/sender.py +7 -25
- wandb/sdk/internal/system/assets/disk.py +144 -11
- wandb/sdk/internal/system/system_info.py +6 -2
- wandb/sdk/launch/__init__.py +5 -0
- wandb/sdk/launch/{launch.py → _launch.py} +53 -54
- wandb/sdk/launch/{launch_add.py → _launch_add.py} +34 -31
- wandb/sdk/launch/_project_spec.py +13 -2
- wandb/sdk/launch/agent/agent.py +103 -59
- wandb/sdk/launch/agent/run_queue_item_file_saver.py +6 -4
- wandb/sdk/launch/builder/build.py +19 -1
- wandb/sdk/launch/builder/docker_builder.py +5 -1
- wandb/sdk/launch/builder/kaniko_builder.py +5 -1
- wandb/sdk/launch/create_job.py +20 -5
- wandb/sdk/launch/loader.py +14 -5
- wandb/sdk/launch/runner/abstract.py +0 -2
- wandb/sdk/launch/runner/kubernetes_monitor.py +329 -0
- wandb/sdk/launch/runner/kubernetes_runner.py +66 -209
- wandb/sdk/launch/runner/local_container.py +5 -2
- wandb/sdk/launch/runner/local_process.py +4 -1
- wandb/sdk/launch/sweeps/scheduler.py +43 -25
- wandb/sdk/launch/sweeps/utils.py +5 -3
- wandb/sdk/launch/utils.py +3 -1
- wandb/sdk/lib/_settings_toposort_generate.py +3 -9
- wandb/sdk/lib/_settings_toposort_generated.py +27 -3
- wandb/sdk/lib/_wburls_generated.py +1 -0
- wandb/sdk/lib/filenames.py +27 -6
- wandb/sdk/lib/filesystem.py +181 -7
- wandb/sdk/lib/fsm.py +5 -3
- wandb/sdk/lib/gql_request.py +3 -0
- wandb/sdk/lib/ipython.py +7 -0
- wandb/sdk/lib/wburls.py +1 -0
- wandb/sdk/service/port_file.py +2 -15
- wandb/sdk/service/server.py +7 -55
- wandb/sdk/service/service.py +56 -26
- wandb/sdk/service/service_base.py +1 -1
- wandb/sdk/service/streams.py +11 -5
- wandb/sdk/verify/verify.py +2 -2
- wandb/sdk/wandb_init.py +8 -2
- wandb/sdk/wandb_manager.py +4 -14
- wandb/sdk/wandb_run.py +143 -53
- wandb/sdk/wandb_settings.py +148 -35
- wandb/testing/relay.py +85 -38
- wandb/util.py +87 -4
- wandb/wandb_torch.py +24 -38
- {wandb-0.15.9.dist-info → wandb-0.15.11.dist-info}/METADATA +48 -23
- {wandb-0.15.9.dist-info → wandb-0.15.11.dist-info}/RECORD +107 -103
- {wandb-0.15.9.dist-info → wandb-0.15.11.dist-info}/WHEEL +1 -1
- wandb/proto/v3/wandb_server_pb2_grpc.py +0 -1422
- wandb/proto/v4/wandb_server_pb2_grpc.py +0 -1422
- wandb/proto/wandb_server_pb2_grpc.py +0 -8
- wandb/sdk/artifacts/storage_policies/s3_bucket_policy.py +0 -61
- wandb/sdk/interface/interface_grpc.py +0 -460
- wandb/sdk/service/server_grpc.py +0 -444
- wandb/sdk/service/service_grpc.py +0 -73
- {wandb-0.15.9.dist-info → wandb-0.15.11.dist-info}/LICENSE +0 -0
- {wandb-0.15.9.dist-info → wandb-0.15.11.dist-info}/entry_points.txt +0 -0
- {wandb-0.15.9.dist-info → wandb-0.15.11.dist-info}/top_level.txt +0 -0
@@ -1,1422 +0,0 @@
|
|
1
|
-
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
2
|
-
"""Client and server classes corresponding to protobuf-defined services."""
|
3
|
-
import grpc
|
4
|
-
|
5
|
-
from wandb.proto import wandb_internal_pb2 as wandb_dot_proto_dot_wandb__internal__pb2
|
6
|
-
from wandb.proto import wandb_server_pb2 as wandb_dot_proto_dot_wandb__server__pb2
|
7
|
-
from wandb.proto import wandb_telemetry_pb2 as wandb_dot_proto_dot_wandb__telemetry__pb2
|
8
|
-
|
9
|
-
|
10
|
-
class InternalServiceStub(object):
|
11
|
-
"""Missing associated documentation comment in .proto file."""
|
12
|
-
|
13
|
-
def __init__(self, channel):
|
14
|
-
"""Constructor.
|
15
|
-
|
16
|
-
Args:
|
17
|
-
channel: A grpc.Channel.
|
18
|
-
"""
|
19
|
-
self.RunUpdate = channel.unary_unary(
|
20
|
-
'/wandb_internal.InternalService/RunUpdate',
|
21
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunRecord.SerializeToString,
|
22
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunUpdateResult.FromString,
|
23
|
-
)
|
24
|
-
self.Attach = channel.unary_unary(
|
25
|
-
'/wandb_internal.InternalService/Attach',
|
26
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.AttachRequest.SerializeToString,
|
27
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.AttachResponse.FromString,
|
28
|
-
)
|
29
|
-
self.TBSend = channel.unary_unary(
|
30
|
-
'/wandb_internal.InternalService/TBSend',
|
31
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.TBRecord.SerializeToString,
|
32
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.TBResult.FromString,
|
33
|
-
)
|
34
|
-
self.RunStart = channel.unary_unary(
|
35
|
-
'/wandb_internal.InternalService/RunStart',
|
36
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunStartRequest.SerializeToString,
|
37
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunStartResponse.FromString,
|
38
|
-
)
|
39
|
-
self.GetSummary = channel.unary_unary(
|
40
|
-
'/wandb_internal.InternalService/GetSummary',
|
41
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.GetSummaryRequest.SerializeToString,
|
42
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.GetSummaryResponse.FromString,
|
43
|
-
)
|
44
|
-
self.SampledHistory = channel.unary_unary(
|
45
|
-
'/wandb_internal.InternalService/SampledHistory',
|
46
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.SampledHistoryRequest.SerializeToString,
|
47
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.SampledHistoryResponse.FromString,
|
48
|
-
)
|
49
|
-
self.PollExit = channel.unary_unary(
|
50
|
-
'/wandb_internal.InternalService/PollExit',
|
51
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.PollExitRequest.SerializeToString,
|
52
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.PollExitResponse.FromString,
|
53
|
-
)
|
54
|
-
self.ServerInfo = channel.unary_unary(
|
55
|
-
'/wandb_internal.InternalService/ServerInfo',
|
56
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ServerInfoRequest.SerializeToString,
|
57
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ServerInfoResponse.FromString,
|
58
|
-
)
|
59
|
-
self.Shutdown = channel.unary_unary(
|
60
|
-
'/wandb_internal.InternalService/Shutdown',
|
61
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ShutdownRequest.SerializeToString,
|
62
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ShutdownResponse.FromString,
|
63
|
-
)
|
64
|
-
self.RunStatus = channel.unary_unary(
|
65
|
-
'/wandb_internal.InternalService/RunStatus',
|
66
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunStatusRequest.SerializeToString,
|
67
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunStatusResponse.FromString,
|
68
|
-
)
|
69
|
-
self.RunExit = channel.unary_unary(
|
70
|
-
'/wandb_internal.InternalService/RunExit',
|
71
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunExitRecord.SerializeToString,
|
72
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunExitResult.FromString,
|
73
|
-
)
|
74
|
-
self.RunPreempting = channel.unary_unary(
|
75
|
-
'/wandb_internal.InternalService/RunPreempting',
|
76
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunPreemptingRecord.SerializeToString,
|
77
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunPreemptingResult.FromString,
|
78
|
-
)
|
79
|
-
self.Metric = channel.unary_unary(
|
80
|
-
'/wandb_internal.InternalService/Metric',
|
81
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.MetricRecord.SerializeToString,
|
82
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.MetricResult.FromString,
|
83
|
-
)
|
84
|
-
self.PartialLog = channel.unary_unary(
|
85
|
-
'/wandb_internal.InternalService/PartialLog',
|
86
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.PartialHistoryRequest.SerializeToString,
|
87
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.PartialHistoryResponse.FromString,
|
88
|
-
)
|
89
|
-
self.Log = channel.unary_unary(
|
90
|
-
'/wandb_internal.InternalService/Log',
|
91
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.HistoryRecord.SerializeToString,
|
92
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.HistoryResult.FromString,
|
93
|
-
)
|
94
|
-
self.Summary = channel.unary_unary(
|
95
|
-
'/wandb_internal.InternalService/Summary',
|
96
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.SummaryRecord.SerializeToString,
|
97
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.SummaryResult.FromString,
|
98
|
-
)
|
99
|
-
self.Config = channel.unary_unary(
|
100
|
-
'/wandb_internal.InternalService/Config',
|
101
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ConfigRecord.SerializeToString,
|
102
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ConfigResult.FromString,
|
103
|
-
)
|
104
|
-
self.Files = channel.unary_unary(
|
105
|
-
'/wandb_internal.InternalService/Files',
|
106
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.FilesRecord.SerializeToString,
|
107
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.FilesResult.FromString,
|
108
|
-
)
|
109
|
-
self.Output = channel.unary_unary(
|
110
|
-
'/wandb_internal.InternalService/Output',
|
111
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.OutputRecord.SerializeToString,
|
112
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.OutputResult.FromString,
|
113
|
-
)
|
114
|
-
self.OutputRaw = channel.unary_unary(
|
115
|
-
'/wandb_internal.InternalService/OutputRaw',
|
116
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.OutputRawRecord.SerializeToString,
|
117
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.OutputRawResult.FromString,
|
118
|
-
)
|
119
|
-
self.Telemetry = channel.unary_unary(
|
120
|
-
'/wandb_internal.InternalService/Telemetry',
|
121
|
-
request_serializer=wandb_dot_proto_dot_wandb__telemetry__pb2.TelemetryRecord.SerializeToString,
|
122
|
-
response_deserializer=wandb_dot_proto_dot_wandb__telemetry__pb2.TelemetryResult.FromString,
|
123
|
-
)
|
124
|
-
self.Alert = channel.unary_unary(
|
125
|
-
'/wandb_internal.InternalService/Alert',
|
126
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.AlertRecord.SerializeToString,
|
127
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.AlertResult.FromString,
|
128
|
-
)
|
129
|
-
self.Artifact = channel.unary_unary(
|
130
|
-
'/wandb_internal.InternalService/Artifact',
|
131
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactRecord.SerializeToString,
|
132
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactResult.FromString,
|
133
|
-
)
|
134
|
-
self.LinkArtifact = channel.unary_unary(
|
135
|
-
'/wandb_internal.InternalService/LinkArtifact',
|
136
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.LinkArtifactRecord.SerializeToString,
|
137
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.LinkArtifactResult.FromString,
|
138
|
-
)
|
139
|
-
self.UseArtifact = channel.unary_unary(
|
140
|
-
'/wandb_internal.InternalService/UseArtifact',
|
141
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.UseArtifactRecord.SerializeToString,
|
142
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.UseArtifactResult.FromString,
|
143
|
-
)
|
144
|
-
self.JobInfo = channel.unary_unary(
|
145
|
-
'/wandb_internal.InternalService/JobInfo',
|
146
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.JobInfoRequest.SerializeToString,
|
147
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.JobInfoResponse.FromString,
|
148
|
-
)
|
149
|
-
self.ArtifactSend = channel.unary_unary(
|
150
|
-
'/wandb_internal.InternalService/ArtifactSend',
|
151
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactSendRequest.SerializeToString,
|
152
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactSendResponse.FromString,
|
153
|
-
)
|
154
|
-
self.ArtifactPoll = channel.unary_unary(
|
155
|
-
'/wandb_internal.InternalService/ArtifactPoll',
|
156
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactPollRequest.SerializeToString,
|
157
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactPollResponse.FromString,
|
158
|
-
)
|
159
|
-
self.Cancel = channel.unary_unary(
|
160
|
-
'/wandb_internal.InternalService/Cancel',
|
161
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.CancelRequest.SerializeToString,
|
162
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.CancelResponse.FromString,
|
163
|
-
)
|
164
|
-
self.Keepalive = channel.unary_unary(
|
165
|
-
'/wandb_internal.InternalService/Keepalive',
|
166
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.KeepaliveRequest.SerializeToString,
|
167
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.KeepaliveResponse.FromString,
|
168
|
-
)
|
169
|
-
self.CheckVersion = channel.unary_unary(
|
170
|
-
'/wandb_internal.InternalService/CheckVersion',
|
171
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.CheckVersionRequest.SerializeToString,
|
172
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.CheckVersionResponse.FromString,
|
173
|
-
)
|
174
|
-
self.Pause = channel.unary_unary(
|
175
|
-
'/wandb_internal.InternalService/Pause',
|
176
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.PauseRequest.SerializeToString,
|
177
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.PauseResponse.FromString,
|
178
|
-
)
|
179
|
-
self.Resume = channel.unary_unary(
|
180
|
-
'/wandb_internal.InternalService/Resume',
|
181
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ResumeRequest.SerializeToString,
|
182
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ResumeResponse.FromString,
|
183
|
-
)
|
184
|
-
self.Status = channel.unary_unary(
|
185
|
-
'/wandb_internal.InternalService/Status',
|
186
|
-
request_serializer=wandb_dot_proto_dot_wandb__internal__pb2.StatusRequest.SerializeToString,
|
187
|
-
response_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.StatusResponse.FromString,
|
188
|
-
)
|
189
|
-
self.ServerShutdown = channel.unary_unary(
|
190
|
-
'/wandb_internal.InternalService/ServerShutdown',
|
191
|
-
request_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerShutdownRequest.SerializeToString,
|
192
|
-
response_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerShutdownResponse.FromString,
|
193
|
-
)
|
194
|
-
self.ServerStatus = channel.unary_unary(
|
195
|
-
'/wandb_internal.InternalService/ServerStatus',
|
196
|
-
request_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerStatusRequest.SerializeToString,
|
197
|
-
response_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerStatusResponse.FromString,
|
198
|
-
)
|
199
|
-
self.ServerInformInit = channel.unary_unary(
|
200
|
-
'/wandb_internal.InternalService/ServerInformInit',
|
201
|
-
request_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformInitRequest.SerializeToString,
|
202
|
-
response_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformInitResponse.FromString,
|
203
|
-
)
|
204
|
-
self.ServerInformStart = channel.unary_unary(
|
205
|
-
'/wandb_internal.InternalService/ServerInformStart',
|
206
|
-
request_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformStartRequest.SerializeToString,
|
207
|
-
response_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformStartResponse.FromString,
|
208
|
-
)
|
209
|
-
self.ServerInformFinish = channel.unary_unary(
|
210
|
-
'/wandb_internal.InternalService/ServerInformFinish',
|
211
|
-
request_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformFinishRequest.SerializeToString,
|
212
|
-
response_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformFinishResponse.FromString,
|
213
|
-
)
|
214
|
-
self.ServerInformAttach = channel.unary_unary(
|
215
|
-
'/wandb_internal.InternalService/ServerInformAttach',
|
216
|
-
request_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformAttachRequest.SerializeToString,
|
217
|
-
response_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformAttachResponse.FromString,
|
218
|
-
)
|
219
|
-
self.ServerInformDetach = channel.unary_unary(
|
220
|
-
'/wandb_internal.InternalService/ServerInformDetach',
|
221
|
-
request_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformDetachRequest.SerializeToString,
|
222
|
-
response_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformDetachResponse.FromString,
|
223
|
-
)
|
224
|
-
self.ServerInformTeardown = channel.unary_unary(
|
225
|
-
'/wandb_internal.InternalService/ServerInformTeardown',
|
226
|
-
request_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformTeardownRequest.SerializeToString,
|
227
|
-
response_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformTeardownResponse.FromString,
|
228
|
-
)
|
229
|
-
|
230
|
-
|
231
|
-
class InternalServiceServicer(object):
|
232
|
-
"""Missing associated documentation comment in .proto file."""
|
233
|
-
|
234
|
-
def RunUpdate(self, request, context):
|
235
|
-
"""Missing associated documentation comment in .proto file."""
|
236
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
237
|
-
context.set_details('Method not implemented!')
|
238
|
-
raise NotImplementedError('Method not implemented!')
|
239
|
-
|
240
|
-
def Attach(self, request, context):
|
241
|
-
"""Missing associated documentation comment in .proto file."""
|
242
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
243
|
-
context.set_details('Method not implemented!')
|
244
|
-
raise NotImplementedError('Method not implemented!')
|
245
|
-
|
246
|
-
def TBSend(self, request, context):
|
247
|
-
"""Missing associated documentation comment in .proto file."""
|
248
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
249
|
-
context.set_details('Method not implemented!')
|
250
|
-
raise NotImplementedError('Method not implemented!')
|
251
|
-
|
252
|
-
def RunStart(self, request, context):
|
253
|
-
"""Missing associated documentation comment in .proto file."""
|
254
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
255
|
-
context.set_details('Method not implemented!')
|
256
|
-
raise NotImplementedError('Method not implemented!')
|
257
|
-
|
258
|
-
def GetSummary(self, request, context):
|
259
|
-
"""Missing associated documentation comment in .proto file."""
|
260
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
261
|
-
context.set_details('Method not implemented!')
|
262
|
-
raise NotImplementedError('Method not implemented!')
|
263
|
-
|
264
|
-
def SampledHistory(self, request, context):
|
265
|
-
"""Missing associated documentation comment in .proto file."""
|
266
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
267
|
-
context.set_details('Method not implemented!')
|
268
|
-
raise NotImplementedError('Method not implemented!')
|
269
|
-
|
270
|
-
def PollExit(self, request, context):
|
271
|
-
"""Missing associated documentation comment in .proto file."""
|
272
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
273
|
-
context.set_details('Method not implemented!')
|
274
|
-
raise NotImplementedError('Method not implemented!')
|
275
|
-
|
276
|
-
def ServerInfo(self, request, context):
|
277
|
-
"""Missing associated documentation comment in .proto file."""
|
278
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
279
|
-
context.set_details('Method not implemented!')
|
280
|
-
raise NotImplementedError('Method not implemented!')
|
281
|
-
|
282
|
-
def Shutdown(self, request, context):
|
283
|
-
"""Missing associated documentation comment in .proto file."""
|
284
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
285
|
-
context.set_details('Method not implemented!')
|
286
|
-
raise NotImplementedError('Method not implemented!')
|
287
|
-
|
288
|
-
def RunStatus(self, request, context):
|
289
|
-
"""Missing associated documentation comment in .proto file."""
|
290
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
291
|
-
context.set_details('Method not implemented!')
|
292
|
-
raise NotImplementedError('Method not implemented!')
|
293
|
-
|
294
|
-
def RunExit(self, request, context):
|
295
|
-
"""Missing associated documentation comment in .proto file."""
|
296
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
297
|
-
context.set_details('Method not implemented!')
|
298
|
-
raise NotImplementedError('Method not implemented!')
|
299
|
-
|
300
|
-
def RunPreempting(self, request, context):
|
301
|
-
"""Missing associated documentation comment in .proto file."""
|
302
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
303
|
-
context.set_details('Method not implemented!')
|
304
|
-
raise NotImplementedError('Method not implemented!')
|
305
|
-
|
306
|
-
def Metric(self, request, context):
|
307
|
-
"""Missing associated documentation comment in .proto file."""
|
308
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
309
|
-
context.set_details('Method not implemented!')
|
310
|
-
raise NotImplementedError('Method not implemented!')
|
311
|
-
|
312
|
-
def PartialLog(self, request, context):
|
313
|
-
"""Missing associated documentation comment in .proto file."""
|
314
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
315
|
-
context.set_details('Method not implemented!')
|
316
|
-
raise NotImplementedError('Method not implemented!')
|
317
|
-
|
318
|
-
def Log(self, request, context):
|
319
|
-
"""Missing associated documentation comment in .proto file."""
|
320
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
321
|
-
context.set_details('Method not implemented!')
|
322
|
-
raise NotImplementedError('Method not implemented!')
|
323
|
-
|
324
|
-
def Summary(self, request, context):
|
325
|
-
"""Missing associated documentation comment in .proto file."""
|
326
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
327
|
-
context.set_details('Method not implemented!')
|
328
|
-
raise NotImplementedError('Method not implemented!')
|
329
|
-
|
330
|
-
def Config(self, request, context):
|
331
|
-
"""Missing associated documentation comment in .proto file."""
|
332
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
333
|
-
context.set_details('Method not implemented!')
|
334
|
-
raise NotImplementedError('Method not implemented!')
|
335
|
-
|
336
|
-
def Files(self, request, context):
|
337
|
-
"""Missing associated documentation comment in .proto file."""
|
338
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
339
|
-
context.set_details('Method not implemented!')
|
340
|
-
raise NotImplementedError('Method not implemented!')
|
341
|
-
|
342
|
-
def Output(self, request, context):
|
343
|
-
"""Missing associated documentation comment in .proto file."""
|
344
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
345
|
-
context.set_details('Method not implemented!')
|
346
|
-
raise NotImplementedError('Method not implemented!')
|
347
|
-
|
348
|
-
def OutputRaw(self, request, context):
|
349
|
-
"""Missing associated documentation comment in .proto file."""
|
350
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
351
|
-
context.set_details('Method not implemented!')
|
352
|
-
raise NotImplementedError('Method not implemented!')
|
353
|
-
|
354
|
-
def Telemetry(self, request, context):
|
355
|
-
"""Missing associated documentation comment in .proto file."""
|
356
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
357
|
-
context.set_details('Method not implemented!')
|
358
|
-
raise NotImplementedError('Method not implemented!')
|
359
|
-
|
360
|
-
def Alert(self, request, context):
|
361
|
-
"""Missing associated documentation comment in .proto file."""
|
362
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
363
|
-
context.set_details('Method not implemented!')
|
364
|
-
raise NotImplementedError('Method not implemented!')
|
365
|
-
|
366
|
-
def Artifact(self, request, context):
|
367
|
-
"""Missing associated documentation comment in .proto file."""
|
368
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
369
|
-
context.set_details('Method not implemented!')
|
370
|
-
raise NotImplementedError('Method not implemented!')
|
371
|
-
|
372
|
-
def LinkArtifact(self, request, context):
|
373
|
-
"""Missing associated documentation comment in .proto file."""
|
374
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
375
|
-
context.set_details('Method not implemented!')
|
376
|
-
raise NotImplementedError('Method not implemented!')
|
377
|
-
|
378
|
-
def UseArtifact(self, request, context):
|
379
|
-
"""Missing associated documentation comment in .proto file."""
|
380
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
381
|
-
context.set_details('Method not implemented!')
|
382
|
-
raise NotImplementedError('Method not implemented!')
|
383
|
-
|
384
|
-
def JobInfo(self, request, context):
|
385
|
-
"""Missing associated documentation comment in .proto file."""
|
386
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
387
|
-
context.set_details('Method not implemented!')
|
388
|
-
raise NotImplementedError('Method not implemented!')
|
389
|
-
|
390
|
-
def ArtifactSend(self, request, context):
|
391
|
-
"""rpc messages for async operations: Send, Poll, Cancel, Release
|
392
|
-
"""
|
393
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
394
|
-
context.set_details('Method not implemented!')
|
395
|
-
raise NotImplementedError('Method not implemented!')
|
396
|
-
|
397
|
-
def ArtifactPoll(self, request, context):
|
398
|
-
"""Missing associated documentation comment in .proto file."""
|
399
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
400
|
-
context.set_details('Method not implemented!')
|
401
|
-
raise NotImplementedError('Method not implemented!')
|
402
|
-
|
403
|
-
def Cancel(self, request, context):
|
404
|
-
"""Missing associated documentation comment in .proto file."""
|
405
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
406
|
-
context.set_details('Method not implemented!')
|
407
|
-
raise NotImplementedError('Method not implemented!')
|
408
|
-
|
409
|
-
def Keepalive(self, request, context):
|
410
|
-
"""Missing associated documentation comment in .proto file."""
|
411
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
412
|
-
context.set_details('Method not implemented!')
|
413
|
-
raise NotImplementedError('Method not implemented!')
|
414
|
-
|
415
|
-
def CheckVersion(self, request, context):
|
416
|
-
"""Missing associated documentation comment in .proto file."""
|
417
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
418
|
-
context.set_details('Method not implemented!')
|
419
|
-
raise NotImplementedError('Method not implemented!')
|
420
|
-
|
421
|
-
def Pause(self, request, context):
|
422
|
-
"""Missing associated documentation comment in .proto file."""
|
423
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
424
|
-
context.set_details('Method not implemented!')
|
425
|
-
raise NotImplementedError('Method not implemented!')
|
426
|
-
|
427
|
-
def Resume(self, request, context):
|
428
|
-
"""Missing associated documentation comment in .proto file."""
|
429
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
430
|
-
context.set_details('Method not implemented!')
|
431
|
-
raise NotImplementedError('Method not implemented!')
|
432
|
-
|
433
|
-
def Status(self, request, context):
|
434
|
-
"""Missing associated documentation comment in .proto file."""
|
435
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
436
|
-
context.set_details('Method not implemented!')
|
437
|
-
raise NotImplementedError('Method not implemented!')
|
438
|
-
|
439
|
-
def ServerShutdown(self, request, context):
|
440
|
-
"""Missing associated documentation comment in .proto file."""
|
441
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
442
|
-
context.set_details('Method not implemented!')
|
443
|
-
raise NotImplementedError('Method not implemented!')
|
444
|
-
|
445
|
-
def ServerStatus(self, request, context):
|
446
|
-
"""Missing associated documentation comment in .proto file."""
|
447
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
448
|
-
context.set_details('Method not implemented!')
|
449
|
-
raise NotImplementedError('Method not implemented!')
|
450
|
-
|
451
|
-
def ServerInformInit(self, request, context):
|
452
|
-
"""Missing associated documentation comment in .proto file."""
|
453
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
454
|
-
context.set_details('Method not implemented!')
|
455
|
-
raise NotImplementedError('Method not implemented!')
|
456
|
-
|
457
|
-
def ServerInformStart(self, request, context):
|
458
|
-
"""Missing associated documentation comment in .proto file."""
|
459
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
460
|
-
context.set_details('Method not implemented!')
|
461
|
-
raise NotImplementedError('Method not implemented!')
|
462
|
-
|
463
|
-
def ServerInformFinish(self, request, context):
|
464
|
-
"""Missing associated documentation comment in .proto file."""
|
465
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
466
|
-
context.set_details('Method not implemented!')
|
467
|
-
raise NotImplementedError('Method not implemented!')
|
468
|
-
|
469
|
-
def ServerInformAttach(self, request, context):
|
470
|
-
"""Missing associated documentation comment in .proto file."""
|
471
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
472
|
-
context.set_details('Method not implemented!')
|
473
|
-
raise NotImplementedError('Method not implemented!')
|
474
|
-
|
475
|
-
def ServerInformDetach(self, request, context):
|
476
|
-
"""Missing associated documentation comment in .proto file."""
|
477
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
478
|
-
context.set_details('Method not implemented!')
|
479
|
-
raise NotImplementedError('Method not implemented!')
|
480
|
-
|
481
|
-
def ServerInformTeardown(self, request, context):
|
482
|
-
"""Missing associated documentation comment in .proto file."""
|
483
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
484
|
-
context.set_details('Method not implemented!')
|
485
|
-
raise NotImplementedError('Method not implemented!')
|
486
|
-
|
487
|
-
|
488
|
-
def add_InternalServiceServicer_to_server(servicer, server):
|
489
|
-
rpc_method_handlers = {
|
490
|
-
'RunUpdate': grpc.unary_unary_rpc_method_handler(
|
491
|
-
servicer.RunUpdate,
|
492
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunRecord.FromString,
|
493
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunUpdateResult.SerializeToString,
|
494
|
-
),
|
495
|
-
'Attach': grpc.unary_unary_rpc_method_handler(
|
496
|
-
servicer.Attach,
|
497
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.AttachRequest.FromString,
|
498
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.AttachResponse.SerializeToString,
|
499
|
-
),
|
500
|
-
'TBSend': grpc.unary_unary_rpc_method_handler(
|
501
|
-
servicer.TBSend,
|
502
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.TBRecord.FromString,
|
503
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.TBResult.SerializeToString,
|
504
|
-
),
|
505
|
-
'RunStart': grpc.unary_unary_rpc_method_handler(
|
506
|
-
servicer.RunStart,
|
507
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunStartRequest.FromString,
|
508
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunStartResponse.SerializeToString,
|
509
|
-
),
|
510
|
-
'GetSummary': grpc.unary_unary_rpc_method_handler(
|
511
|
-
servicer.GetSummary,
|
512
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.GetSummaryRequest.FromString,
|
513
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.GetSummaryResponse.SerializeToString,
|
514
|
-
),
|
515
|
-
'SampledHistory': grpc.unary_unary_rpc_method_handler(
|
516
|
-
servicer.SampledHistory,
|
517
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.SampledHistoryRequest.FromString,
|
518
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.SampledHistoryResponse.SerializeToString,
|
519
|
-
),
|
520
|
-
'PollExit': grpc.unary_unary_rpc_method_handler(
|
521
|
-
servicer.PollExit,
|
522
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.PollExitRequest.FromString,
|
523
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.PollExitResponse.SerializeToString,
|
524
|
-
),
|
525
|
-
'ServerInfo': grpc.unary_unary_rpc_method_handler(
|
526
|
-
servicer.ServerInfo,
|
527
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ServerInfoRequest.FromString,
|
528
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ServerInfoResponse.SerializeToString,
|
529
|
-
),
|
530
|
-
'Shutdown': grpc.unary_unary_rpc_method_handler(
|
531
|
-
servicer.Shutdown,
|
532
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ShutdownRequest.FromString,
|
533
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ShutdownResponse.SerializeToString,
|
534
|
-
),
|
535
|
-
'RunStatus': grpc.unary_unary_rpc_method_handler(
|
536
|
-
servicer.RunStatus,
|
537
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunStatusRequest.FromString,
|
538
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunStatusResponse.SerializeToString,
|
539
|
-
),
|
540
|
-
'RunExit': grpc.unary_unary_rpc_method_handler(
|
541
|
-
servicer.RunExit,
|
542
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunExitRecord.FromString,
|
543
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunExitResult.SerializeToString,
|
544
|
-
),
|
545
|
-
'RunPreempting': grpc.unary_unary_rpc_method_handler(
|
546
|
-
servicer.RunPreempting,
|
547
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.RunPreemptingRecord.FromString,
|
548
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.RunPreemptingResult.SerializeToString,
|
549
|
-
),
|
550
|
-
'Metric': grpc.unary_unary_rpc_method_handler(
|
551
|
-
servicer.Metric,
|
552
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.MetricRecord.FromString,
|
553
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.MetricResult.SerializeToString,
|
554
|
-
),
|
555
|
-
'PartialLog': grpc.unary_unary_rpc_method_handler(
|
556
|
-
servicer.PartialLog,
|
557
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.PartialHistoryRequest.FromString,
|
558
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.PartialHistoryResponse.SerializeToString,
|
559
|
-
),
|
560
|
-
'Log': grpc.unary_unary_rpc_method_handler(
|
561
|
-
servicer.Log,
|
562
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.HistoryRecord.FromString,
|
563
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.HistoryResult.SerializeToString,
|
564
|
-
),
|
565
|
-
'Summary': grpc.unary_unary_rpc_method_handler(
|
566
|
-
servicer.Summary,
|
567
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.SummaryRecord.FromString,
|
568
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.SummaryResult.SerializeToString,
|
569
|
-
),
|
570
|
-
'Config': grpc.unary_unary_rpc_method_handler(
|
571
|
-
servicer.Config,
|
572
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ConfigRecord.FromString,
|
573
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ConfigResult.SerializeToString,
|
574
|
-
),
|
575
|
-
'Files': grpc.unary_unary_rpc_method_handler(
|
576
|
-
servicer.Files,
|
577
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.FilesRecord.FromString,
|
578
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.FilesResult.SerializeToString,
|
579
|
-
),
|
580
|
-
'Output': grpc.unary_unary_rpc_method_handler(
|
581
|
-
servicer.Output,
|
582
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.OutputRecord.FromString,
|
583
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.OutputResult.SerializeToString,
|
584
|
-
),
|
585
|
-
'OutputRaw': grpc.unary_unary_rpc_method_handler(
|
586
|
-
servicer.OutputRaw,
|
587
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.OutputRawRecord.FromString,
|
588
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.OutputRawResult.SerializeToString,
|
589
|
-
),
|
590
|
-
'Telemetry': grpc.unary_unary_rpc_method_handler(
|
591
|
-
servicer.Telemetry,
|
592
|
-
request_deserializer=wandb_dot_proto_dot_wandb__telemetry__pb2.TelemetryRecord.FromString,
|
593
|
-
response_serializer=wandb_dot_proto_dot_wandb__telemetry__pb2.TelemetryResult.SerializeToString,
|
594
|
-
),
|
595
|
-
'Alert': grpc.unary_unary_rpc_method_handler(
|
596
|
-
servicer.Alert,
|
597
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.AlertRecord.FromString,
|
598
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.AlertResult.SerializeToString,
|
599
|
-
),
|
600
|
-
'Artifact': grpc.unary_unary_rpc_method_handler(
|
601
|
-
servicer.Artifact,
|
602
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactRecord.FromString,
|
603
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactResult.SerializeToString,
|
604
|
-
),
|
605
|
-
'LinkArtifact': grpc.unary_unary_rpc_method_handler(
|
606
|
-
servicer.LinkArtifact,
|
607
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.LinkArtifactRecord.FromString,
|
608
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.LinkArtifactResult.SerializeToString,
|
609
|
-
),
|
610
|
-
'UseArtifact': grpc.unary_unary_rpc_method_handler(
|
611
|
-
servicer.UseArtifact,
|
612
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.UseArtifactRecord.FromString,
|
613
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.UseArtifactResult.SerializeToString,
|
614
|
-
),
|
615
|
-
'JobInfo': grpc.unary_unary_rpc_method_handler(
|
616
|
-
servicer.JobInfo,
|
617
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.JobInfoRequest.FromString,
|
618
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.JobInfoResponse.SerializeToString,
|
619
|
-
),
|
620
|
-
'ArtifactSend': grpc.unary_unary_rpc_method_handler(
|
621
|
-
servicer.ArtifactSend,
|
622
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactSendRequest.FromString,
|
623
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactSendResponse.SerializeToString,
|
624
|
-
),
|
625
|
-
'ArtifactPoll': grpc.unary_unary_rpc_method_handler(
|
626
|
-
servicer.ArtifactPoll,
|
627
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactPollRequest.FromString,
|
628
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ArtifactPollResponse.SerializeToString,
|
629
|
-
),
|
630
|
-
'Cancel': grpc.unary_unary_rpc_method_handler(
|
631
|
-
servicer.Cancel,
|
632
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.CancelRequest.FromString,
|
633
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.CancelResponse.SerializeToString,
|
634
|
-
),
|
635
|
-
'Keepalive': grpc.unary_unary_rpc_method_handler(
|
636
|
-
servicer.Keepalive,
|
637
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.KeepaliveRequest.FromString,
|
638
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.KeepaliveResponse.SerializeToString,
|
639
|
-
),
|
640
|
-
'CheckVersion': grpc.unary_unary_rpc_method_handler(
|
641
|
-
servicer.CheckVersion,
|
642
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.CheckVersionRequest.FromString,
|
643
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.CheckVersionResponse.SerializeToString,
|
644
|
-
),
|
645
|
-
'Pause': grpc.unary_unary_rpc_method_handler(
|
646
|
-
servicer.Pause,
|
647
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.PauseRequest.FromString,
|
648
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.PauseResponse.SerializeToString,
|
649
|
-
),
|
650
|
-
'Resume': grpc.unary_unary_rpc_method_handler(
|
651
|
-
servicer.Resume,
|
652
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.ResumeRequest.FromString,
|
653
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.ResumeResponse.SerializeToString,
|
654
|
-
),
|
655
|
-
'Status': grpc.unary_unary_rpc_method_handler(
|
656
|
-
servicer.Status,
|
657
|
-
request_deserializer=wandb_dot_proto_dot_wandb__internal__pb2.StatusRequest.FromString,
|
658
|
-
response_serializer=wandb_dot_proto_dot_wandb__internal__pb2.StatusResponse.SerializeToString,
|
659
|
-
),
|
660
|
-
'ServerShutdown': grpc.unary_unary_rpc_method_handler(
|
661
|
-
servicer.ServerShutdown,
|
662
|
-
request_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerShutdownRequest.FromString,
|
663
|
-
response_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerShutdownResponse.SerializeToString,
|
664
|
-
),
|
665
|
-
'ServerStatus': grpc.unary_unary_rpc_method_handler(
|
666
|
-
servicer.ServerStatus,
|
667
|
-
request_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerStatusRequest.FromString,
|
668
|
-
response_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerStatusResponse.SerializeToString,
|
669
|
-
),
|
670
|
-
'ServerInformInit': grpc.unary_unary_rpc_method_handler(
|
671
|
-
servicer.ServerInformInit,
|
672
|
-
request_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformInitRequest.FromString,
|
673
|
-
response_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformInitResponse.SerializeToString,
|
674
|
-
),
|
675
|
-
'ServerInformStart': grpc.unary_unary_rpc_method_handler(
|
676
|
-
servicer.ServerInformStart,
|
677
|
-
request_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformStartRequest.FromString,
|
678
|
-
response_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformStartResponse.SerializeToString,
|
679
|
-
),
|
680
|
-
'ServerInformFinish': grpc.unary_unary_rpc_method_handler(
|
681
|
-
servicer.ServerInformFinish,
|
682
|
-
request_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformFinishRequest.FromString,
|
683
|
-
response_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformFinishResponse.SerializeToString,
|
684
|
-
),
|
685
|
-
'ServerInformAttach': grpc.unary_unary_rpc_method_handler(
|
686
|
-
servicer.ServerInformAttach,
|
687
|
-
request_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformAttachRequest.FromString,
|
688
|
-
response_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformAttachResponse.SerializeToString,
|
689
|
-
),
|
690
|
-
'ServerInformDetach': grpc.unary_unary_rpc_method_handler(
|
691
|
-
servicer.ServerInformDetach,
|
692
|
-
request_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformDetachRequest.FromString,
|
693
|
-
response_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformDetachResponse.SerializeToString,
|
694
|
-
),
|
695
|
-
'ServerInformTeardown': grpc.unary_unary_rpc_method_handler(
|
696
|
-
servicer.ServerInformTeardown,
|
697
|
-
request_deserializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformTeardownRequest.FromString,
|
698
|
-
response_serializer=wandb_dot_proto_dot_wandb__server__pb2.ServerInformTeardownResponse.SerializeToString,
|
699
|
-
),
|
700
|
-
}
|
701
|
-
generic_handler = grpc.method_handlers_generic_handler(
|
702
|
-
'wandb_internal.InternalService', rpc_method_handlers)
|
703
|
-
server.add_generic_rpc_handlers((generic_handler,))
|
704
|
-
|
705
|
-
|
706
|
-
# This class is part of an EXPERIMENTAL API.
|
707
|
-
class InternalService(object):
|
708
|
-
"""Missing associated documentation comment in .proto file."""
|
709
|
-
|
710
|
-
@staticmethod
|
711
|
-
def RunUpdate(request,
|
712
|
-
target,
|
713
|
-
options=(),
|
714
|
-
channel_credentials=None,
|
715
|
-
call_credentials=None,
|
716
|
-
insecure=False,
|
717
|
-
compression=None,
|
718
|
-
wait_for_ready=None,
|
719
|
-
timeout=None,
|
720
|
-
metadata=None):
|
721
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/RunUpdate',
|
722
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunRecord.SerializeToString,
|
723
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunUpdateResult.FromString,
|
724
|
-
options, channel_credentials,
|
725
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
726
|
-
|
727
|
-
@staticmethod
|
728
|
-
def Attach(request,
|
729
|
-
target,
|
730
|
-
options=(),
|
731
|
-
channel_credentials=None,
|
732
|
-
call_credentials=None,
|
733
|
-
insecure=False,
|
734
|
-
compression=None,
|
735
|
-
wait_for_ready=None,
|
736
|
-
timeout=None,
|
737
|
-
metadata=None):
|
738
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Attach',
|
739
|
-
wandb_dot_proto_dot_wandb__internal__pb2.AttachRequest.SerializeToString,
|
740
|
-
wandb_dot_proto_dot_wandb__internal__pb2.AttachResponse.FromString,
|
741
|
-
options, channel_credentials,
|
742
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
743
|
-
|
744
|
-
@staticmethod
|
745
|
-
def TBSend(request,
|
746
|
-
target,
|
747
|
-
options=(),
|
748
|
-
channel_credentials=None,
|
749
|
-
call_credentials=None,
|
750
|
-
insecure=False,
|
751
|
-
compression=None,
|
752
|
-
wait_for_ready=None,
|
753
|
-
timeout=None,
|
754
|
-
metadata=None):
|
755
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/TBSend',
|
756
|
-
wandb_dot_proto_dot_wandb__internal__pb2.TBRecord.SerializeToString,
|
757
|
-
wandb_dot_proto_dot_wandb__internal__pb2.TBResult.FromString,
|
758
|
-
options, channel_credentials,
|
759
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
760
|
-
|
761
|
-
@staticmethod
|
762
|
-
def RunStart(request,
|
763
|
-
target,
|
764
|
-
options=(),
|
765
|
-
channel_credentials=None,
|
766
|
-
call_credentials=None,
|
767
|
-
insecure=False,
|
768
|
-
compression=None,
|
769
|
-
wait_for_ready=None,
|
770
|
-
timeout=None,
|
771
|
-
metadata=None):
|
772
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/RunStart',
|
773
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunStartRequest.SerializeToString,
|
774
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunStartResponse.FromString,
|
775
|
-
options, channel_credentials,
|
776
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
777
|
-
|
778
|
-
@staticmethod
|
779
|
-
def GetSummary(request,
|
780
|
-
target,
|
781
|
-
options=(),
|
782
|
-
channel_credentials=None,
|
783
|
-
call_credentials=None,
|
784
|
-
insecure=False,
|
785
|
-
compression=None,
|
786
|
-
wait_for_ready=None,
|
787
|
-
timeout=None,
|
788
|
-
metadata=None):
|
789
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/GetSummary',
|
790
|
-
wandb_dot_proto_dot_wandb__internal__pb2.GetSummaryRequest.SerializeToString,
|
791
|
-
wandb_dot_proto_dot_wandb__internal__pb2.GetSummaryResponse.FromString,
|
792
|
-
options, channel_credentials,
|
793
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
794
|
-
|
795
|
-
@staticmethod
|
796
|
-
def SampledHistory(request,
|
797
|
-
target,
|
798
|
-
options=(),
|
799
|
-
channel_credentials=None,
|
800
|
-
call_credentials=None,
|
801
|
-
insecure=False,
|
802
|
-
compression=None,
|
803
|
-
wait_for_ready=None,
|
804
|
-
timeout=None,
|
805
|
-
metadata=None):
|
806
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/SampledHistory',
|
807
|
-
wandb_dot_proto_dot_wandb__internal__pb2.SampledHistoryRequest.SerializeToString,
|
808
|
-
wandb_dot_proto_dot_wandb__internal__pb2.SampledHistoryResponse.FromString,
|
809
|
-
options, channel_credentials,
|
810
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
811
|
-
|
812
|
-
@staticmethod
|
813
|
-
def PollExit(request,
|
814
|
-
target,
|
815
|
-
options=(),
|
816
|
-
channel_credentials=None,
|
817
|
-
call_credentials=None,
|
818
|
-
insecure=False,
|
819
|
-
compression=None,
|
820
|
-
wait_for_ready=None,
|
821
|
-
timeout=None,
|
822
|
-
metadata=None):
|
823
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/PollExit',
|
824
|
-
wandb_dot_proto_dot_wandb__internal__pb2.PollExitRequest.SerializeToString,
|
825
|
-
wandb_dot_proto_dot_wandb__internal__pb2.PollExitResponse.FromString,
|
826
|
-
options, channel_credentials,
|
827
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
828
|
-
|
829
|
-
@staticmethod
|
830
|
-
def ServerInfo(request,
|
831
|
-
target,
|
832
|
-
options=(),
|
833
|
-
channel_credentials=None,
|
834
|
-
call_credentials=None,
|
835
|
-
insecure=False,
|
836
|
-
compression=None,
|
837
|
-
wait_for_ready=None,
|
838
|
-
timeout=None,
|
839
|
-
metadata=None):
|
840
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerInfo',
|
841
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ServerInfoRequest.SerializeToString,
|
842
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ServerInfoResponse.FromString,
|
843
|
-
options, channel_credentials,
|
844
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
845
|
-
|
846
|
-
@staticmethod
|
847
|
-
def Shutdown(request,
|
848
|
-
target,
|
849
|
-
options=(),
|
850
|
-
channel_credentials=None,
|
851
|
-
call_credentials=None,
|
852
|
-
insecure=False,
|
853
|
-
compression=None,
|
854
|
-
wait_for_ready=None,
|
855
|
-
timeout=None,
|
856
|
-
metadata=None):
|
857
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Shutdown',
|
858
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ShutdownRequest.SerializeToString,
|
859
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ShutdownResponse.FromString,
|
860
|
-
options, channel_credentials,
|
861
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
862
|
-
|
863
|
-
@staticmethod
|
864
|
-
def RunStatus(request,
|
865
|
-
target,
|
866
|
-
options=(),
|
867
|
-
channel_credentials=None,
|
868
|
-
call_credentials=None,
|
869
|
-
insecure=False,
|
870
|
-
compression=None,
|
871
|
-
wait_for_ready=None,
|
872
|
-
timeout=None,
|
873
|
-
metadata=None):
|
874
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/RunStatus',
|
875
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunStatusRequest.SerializeToString,
|
876
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunStatusResponse.FromString,
|
877
|
-
options, channel_credentials,
|
878
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
879
|
-
|
880
|
-
@staticmethod
|
881
|
-
def RunExit(request,
|
882
|
-
target,
|
883
|
-
options=(),
|
884
|
-
channel_credentials=None,
|
885
|
-
call_credentials=None,
|
886
|
-
insecure=False,
|
887
|
-
compression=None,
|
888
|
-
wait_for_ready=None,
|
889
|
-
timeout=None,
|
890
|
-
metadata=None):
|
891
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/RunExit',
|
892
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunExitRecord.SerializeToString,
|
893
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunExitResult.FromString,
|
894
|
-
options, channel_credentials,
|
895
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
896
|
-
|
897
|
-
@staticmethod
|
898
|
-
def RunPreempting(request,
|
899
|
-
target,
|
900
|
-
options=(),
|
901
|
-
channel_credentials=None,
|
902
|
-
call_credentials=None,
|
903
|
-
insecure=False,
|
904
|
-
compression=None,
|
905
|
-
wait_for_ready=None,
|
906
|
-
timeout=None,
|
907
|
-
metadata=None):
|
908
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/RunPreempting',
|
909
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunPreemptingRecord.SerializeToString,
|
910
|
-
wandb_dot_proto_dot_wandb__internal__pb2.RunPreemptingResult.FromString,
|
911
|
-
options, channel_credentials,
|
912
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
913
|
-
|
914
|
-
@staticmethod
|
915
|
-
def Metric(request,
|
916
|
-
target,
|
917
|
-
options=(),
|
918
|
-
channel_credentials=None,
|
919
|
-
call_credentials=None,
|
920
|
-
insecure=False,
|
921
|
-
compression=None,
|
922
|
-
wait_for_ready=None,
|
923
|
-
timeout=None,
|
924
|
-
metadata=None):
|
925
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Metric',
|
926
|
-
wandb_dot_proto_dot_wandb__internal__pb2.MetricRecord.SerializeToString,
|
927
|
-
wandb_dot_proto_dot_wandb__internal__pb2.MetricResult.FromString,
|
928
|
-
options, channel_credentials,
|
929
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
930
|
-
|
931
|
-
@staticmethod
|
932
|
-
def PartialLog(request,
|
933
|
-
target,
|
934
|
-
options=(),
|
935
|
-
channel_credentials=None,
|
936
|
-
call_credentials=None,
|
937
|
-
insecure=False,
|
938
|
-
compression=None,
|
939
|
-
wait_for_ready=None,
|
940
|
-
timeout=None,
|
941
|
-
metadata=None):
|
942
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/PartialLog',
|
943
|
-
wandb_dot_proto_dot_wandb__internal__pb2.PartialHistoryRequest.SerializeToString,
|
944
|
-
wandb_dot_proto_dot_wandb__internal__pb2.PartialHistoryResponse.FromString,
|
945
|
-
options, channel_credentials,
|
946
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
947
|
-
|
948
|
-
@staticmethod
|
949
|
-
def Log(request,
|
950
|
-
target,
|
951
|
-
options=(),
|
952
|
-
channel_credentials=None,
|
953
|
-
call_credentials=None,
|
954
|
-
insecure=False,
|
955
|
-
compression=None,
|
956
|
-
wait_for_ready=None,
|
957
|
-
timeout=None,
|
958
|
-
metadata=None):
|
959
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Log',
|
960
|
-
wandb_dot_proto_dot_wandb__internal__pb2.HistoryRecord.SerializeToString,
|
961
|
-
wandb_dot_proto_dot_wandb__internal__pb2.HistoryResult.FromString,
|
962
|
-
options, channel_credentials,
|
963
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
964
|
-
|
965
|
-
@staticmethod
|
966
|
-
def Summary(request,
|
967
|
-
target,
|
968
|
-
options=(),
|
969
|
-
channel_credentials=None,
|
970
|
-
call_credentials=None,
|
971
|
-
insecure=False,
|
972
|
-
compression=None,
|
973
|
-
wait_for_ready=None,
|
974
|
-
timeout=None,
|
975
|
-
metadata=None):
|
976
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Summary',
|
977
|
-
wandb_dot_proto_dot_wandb__internal__pb2.SummaryRecord.SerializeToString,
|
978
|
-
wandb_dot_proto_dot_wandb__internal__pb2.SummaryResult.FromString,
|
979
|
-
options, channel_credentials,
|
980
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
981
|
-
|
982
|
-
@staticmethod
|
983
|
-
def Config(request,
|
984
|
-
target,
|
985
|
-
options=(),
|
986
|
-
channel_credentials=None,
|
987
|
-
call_credentials=None,
|
988
|
-
insecure=False,
|
989
|
-
compression=None,
|
990
|
-
wait_for_ready=None,
|
991
|
-
timeout=None,
|
992
|
-
metadata=None):
|
993
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Config',
|
994
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ConfigRecord.SerializeToString,
|
995
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ConfigResult.FromString,
|
996
|
-
options, channel_credentials,
|
997
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
998
|
-
|
999
|
-
@staticmethod
|
1000
|
-
def Files(request,
|
1001
|
-
target,
|
1002
|
-
options=(),
|
1003
|
-
channel_credentials=None,
|
1004
|
-
call_credentials=None,
|
1005
|
-
insecure=False,
|
1006
|
-
compression=None,
|
1007
|
-
wait_for_ready=None,
|
1008
|
-
timeout=None,
|
1009
|
-
metadata=None):
|
1010
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Files',
|
1011
|
-
wandb_dot_proto_dot_wandb__internal__pb2.FilesRecord.SerializeToString,
|
1012
|
-
wandb_dot_proto_dot_wandb__internal__pb2.FilesResult.FromString,
|
1013
|
-
options, channel_credentials,
|
1014
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1015
|
-
|
1016
|
-
@staticmethod
|
1017
|
-
def Output(request,
|
1018
|
-
target,
|
1019
|
-
options=(),
|
1020
|
-
channel_credentials=None,
|
1021
|
-
call_credentials=None,
|
1022
|
-
insecure=False,
|
1023
|
-
compression=None,
|
1024
|
-
wait_for_ready=None,
|
1025
|
-
timeout=None,
|
1026
|
-
metadata=None):
|
1027
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Output',
|
1028
|
-
wandb_dot_proto_dot_wandb__internal__pb2.OutputRecord.SerializeToString,
|
1029
|
-
wandb_dot_proto_dot_wandb__internal__pb2.OutputResult.FromString,
|
1030
|
-
options, channel_credentials,
|
1031
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1032
|
-
|
1033
|
-
@staticmethod
|
1034
|
-
def OutputRaw(request,
|
1035
|
-
target,
|
1036
|
-
options=(),
|
1037
|
-
channel_credentials=None,
|
1038
|
-
call_credentials=None,
|
1039
|
-
insecure=False,
|
1040
|
-
compression=None,
|
1041
|
-
wait_for_ready=None,
|
1042
|
-
timeout=None,
|
1043
|
-
metadata=None):
|
1044
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/OutputRaw',
|
1045
|
-
wandb_dot_proto_dot_wandb__internal__pb2.OutputRawRecord.SerializeToString,
|
1046
|
-
wandb_dot_proto_dot_wandb__internal__pb2.OutputRawResult.FromString,
|
1047
|
-
options, channel_credentials,
|
1048
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1049
|
-
|
1050
|
-
@staticmethod
|
1051
|
-
def Telemetry(request,
|
1052
|
-
target,
|
1053
|
-
options=(),
|
1054
|
-
channel_credentials=None,
|
1055
|
-
call_credentials=None,
|
1056
|
-
insecure=False,
|
1057
|
-
compression=None,
|
1058
|
-
wait_for_ready=None,
|
1059
|
-
timeout=None,
|
1060
|
-
metadata=None):
|
1061
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Telemetry',
|
1062
|
-
wandb_dot_proto_dot_wandb__telemetry__pb2.TelemetryRecord.SerializeToString,
|
1063
|
-
wandb_dot_proto_dot_wandb__telemetry__pb2.TelemetryResult.FromString,
|
1064
|
-
options, channel_credentials,
|
1065
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1066
|
-
|
1067
|
-
@staticmethod
|
1068
|
-
def Alert(request,
|
1069
|
-
target,
|
1070
|
-
options=(),
|
1071
|
-
channel_credentials=None,
|
1072
|
-
call_credentials=None,
|
1073
|
-
insecure=False,
|
1074
|
-
compression=None,
|
1075
|
-
wait_for_ready=None,
|
1076
|
-
timeout=None,
|
1077
|
-
metadata=None):
|
1078
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Alert',
|
1079
|
-
wandb_dot_proto_dot_wandb__internal__pb2.AlertRecord.SerializeToString,
|
1080
|
-
wandb_dot_proto_dot_wandb__internal__pb2.AlertResult.FromString,
|
1081
|
-
options, channel_credentials,
|
1082
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1083
|
-
|
1084
|
-
@staticmethod
|
1085
|
-
def Artifact(request,
|
1086
|
-
target,
|
1087
|
-
options=(),
|
1088
|
-
channel_credentials=None,
|
1089
|
-
call_credentials=None,
|
1090
|
-
insecure=False,
|
1091
|
-
compression=None,
|
1092
|
-
wait_for_ready=None,
|
1093
|
-
timeout=None,
|
1094
|
-
metadata=None):
|
1095
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Artifact',
|
1096
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ArtifactRecord.SerializeToString,
|
1097
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ArtifactResult.FromString,
|
1098
|
-
options, channel_credentials,
|
1099
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1100
|
-
|
1101
|
-
@staticmethod
|
1102
|
-
def LinkArtifact(request,
|
1103
|
-
target,
|
1104
|
-
options=(),
|
1105
|
-
channel_credentials=None,
|
1106
|
-
call_credentials=None,
|
1107
|
-
insecure=False,
|
1108
|
-
compression=None,
|
1109
|
-
wait_for_ready=None,
|
1110
|
-
timeout=None,
|
1111
|
-
metadata=None):
|
1112
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/LinkArtifact',
|
1113
|
-
wandb_dot_proto_dot_wandb__internal__pb2.LinkArtifactRecord.SerializeToString,
|
1114
|
-
wandb_dot_proto_dot_wandb__internal__pb2.LinkArtifactResult.FromString,
|
1115
|
-
options, channel_credentials,
|
1116
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1117
|
-
|
1118
|
-
@staticmethod
|
1119
|
-
def UseArtifact(request,
|
1120
|
-
target,
|
1121
|
-
options=(),
|
1122
|
-
channel_credentials=None,
|
1123
|
-
call_credentials=None,
|
1124
|
-
insecure=False,
|
1125
|
-
compression=None,
|
1126
|
-
wait_for_ready=None,
|
1127
|
-
timeout=None,
|
1128
|
-
metadata=None):
|
1129
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/UseArtifact',
|
1130
|
-
wandb_dot_proto_dot_wandb__internal__pb2.UseArtifactRecord.SerializeToString,
|
1131
|
-
wandb_dot_proto_dot_wandb__internal__pb2.UseArtifactResult.FromString,
|
1132
|
-
options, channel_credentials,
|
1133
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1134
|
-
|
1135
|
-
@staticmethod
|
1136
|
-
def JobInfo(request,
|
1137
|
-
target,
|
1138
|
-
options=(),
|
1139
|
-
channel_credentials=None,
|
1140
|
-
call_credentials=None,
|
1141
|
-
insecure=False,
|
1142
|
-
compression=None,
|
1143
|
-
wait_for_ready=None,
|
1144
|
-
timeout=None,
|
1145
|
-
metadata=None):
|
1146
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/JobInfo',
|
1147
|
-
wandb_dot_proto_dot_wandb__internal__pb2.JobInfoRequest.SerializeToString,
|
1148
|
-
wandb_dot_proto_dot_wandb__internal__pb2.JobInfoResponse.FromString,
|
1149
|
-
options, channel_credentials,
|
1150
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1151
|
-
|
1152
|
-
@staticmethod
|
1153
|
-
def ArtifactSend(request,
|
1154
|
-
target,
|
1155
|
-
options=(),
|
1156
|
-
channel_credentials=None,
|
1157
|
-
call_credentials=None,
|
1158
|
-
insecure=False,
|
1159
|
-
compression=None,
|
1160
|
-
wait_for_ready=None,
|
1161
|
-
timeout=None,
|
1162
|
-
metadata=None):
|
1163
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ArtifactSend',
|
1164
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ArtifactSendRequest.SerializeToString,
|
1165
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ArtifactSendResponse.FromString,
|
1166
|
-
options, channel_credentials,
|
1167
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1168
|
-
|
1169
|
-
@staticmethod
|
1170
|
-
def ArtifactPoll(request,
|
1171
|
-
target,
|
1172
|
-
options=(),
|
1173
|
-
channel_credentials=None,
|
1174
|
-
call_credentials=None,
|
1175
|
-
insecure=False,
|
1176
|
-
compression=None,
|
1177
|
-
wait_for_ready=None,
|
1178
|
-
timeout=None,
|
1179
|
-
metadata=None):
|
1180
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ArtifactPoll',
|
1181
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ArtifactPollRequest.SerializeToString,
|
1182
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ArtifactPollResponse.FromString,
|
1183
|
-
options, channel_credentials,
|
1184
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1185
|
-
|
1186
|
-
@staticmethod
|
1187
|
-
def Cancel(request,
|
1188
|
-
target,
|
1189
|
-
options=(),
|
1190
|
-
channel_credentials=None,
|
1191
|
-
call_credentials=None,
|
1192
|
-
insecure=False,
|
1193
|
-
compression=None,
|
1194
|
-
wait_for_ready=None,
|
1195
|
-
timeout=None,
|
1196
|
-
metadata=None):
|
1197
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Cancel',
|
1198
|
-
wandb_dot_proto_dot_wandb__internal__pb2.CancelRequest.SerializeToString,
|
1199
|
-
wandb_dot_proto_dot_wandb__internal__pb2.CancelResponse.FromString,
|
1200
|
-
options, channel_credentials,
|
1201
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1202
|
-
|
1203
|
-
@staticmethod
|
1204
|
-
def Keepalive(request,
|
1205
|
-
target,
|
1206
|
-
options=(),
|
1207
|
-
channel_credentials=None,
|
1208
|
-
call_credentials=None,
|
1209
|
-
insecure=False,
|
1210
|
-
compression=None,
|
1211
|
-
wait_for_ready=None,
|
1212
|
-
timeout=None,
|
1213
|
-
metadata=None):
|
1214
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Keepalive',
|
1215
|
-
wandb_dot_proto_dot_wandb__internal__pb2.KeepaliveRequest.SerializeToString,
|
1216
|
-
wandb_dot_proto_dot_wandb__internal__pb2.KeepaliveResponse.FromString,
|
1217
|
-
options, channel_credentials,
|
1218
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1219
|
-
|
1220
|
-
@staticmethod
|
1221
|
-
def CheckVersion(request,
|
1222
|
-
target,
|
1223
|
-
options=(),
|
1224
|
-
channel_credentials=None,
|
1225
|
-
call_credentials=None,
|
1226
|
-
insecure=False,
|
1227
|
-
compression=None,
|
1228
|
-
wait_for_ready=None,
|
1229
|
-
timeout=None,
|
1230
|
-
metadata=None):
|
1231
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/CheckVersion',
|
1232
|
-
wandb_dot_proto_dot_wandb__internal__pb2.CheckVersionRequest.SerializeToString,
|
1233
|
-
wandb_dot_proto_dot_wandb__internal__pb2.CheckVersionResponse.FromString,
|
1234
|
-
options, channel_credentials,
|
1235
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1236
|
-
|
1237
|
-
@staticmethod
|
1238
|
-
def Pause(request,
|
1239
|
-
target,
|
1240
|
-
options=(),
|
1241
|
-
channel_credentials=None,
|
1242
|
-
call_credentials=None,
|
1243
|
-
insecure=False,
|
1244
|
-
compression=None,
|
1245
|
-
wait_for_ready=None,
|
1246
|
-
timeout=None,
|
1247
|
-
metadata=None):
|
1248
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Pause',
|
1249
|
-
wandb_dot_proto_dot_wandb__internal__pb2.PauseRequest.SerializeToString,
|
1250
|
-
wandb_dot_proto_dot_wandb__internal__pb2.PauseResponse.FromString,
|
1251
|
-
options, channel_credentials,
|
1252
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1253
|
-
|
1254
|
-
@staticmethod
|
1255
|
-
def Resume(request,
|
1256
|
-
target,
|
1257
|
-
options=(),
|
1258
|
-
channel_credentials=None,
|
1259
|
-
call_credentials=None,
|
1260
|
-
insecure=False,
|
1261
|
-
compression=None,
|
1262
|
-
wait_for_ready=None,
|
1263
|
-
timeout=None,
|
1264
|
-
metadata=None):
|
1265
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Resume',
|
1266
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ResumeRequest.SerializeToString,
|
1267
|
-
wandb_dot_proto_dot_wandb__internal__pb2.ResumeResponse.FromString,
|
1268
|
-
options, channel_credentials,
|
1269
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1270
|
-
|
1271
|
-
@staticmethod
|
1272
|
-
def Status(request,
|
1273
|
-
target,
|
1274
|
-
options=(),
|
1275
|
-
channel_credentials=None,
|
1276
|
-
call_credentials=None,
|
1277
|
-
insecure=False,
|
1278
|
-
compression=None,
|
1279
|
-
wait_for_ready=None,
|
1280
|
-
timeout=None,
|
1281
|
-
metadata=None):
|
1282
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/Status',
|
1283
|
-
wandb_dot_proto_dot_wandb__internal__pb2.StatusRequest.SerializeToString,
|
1284
|
-
wandb_dot_proto_dot_wandb__internal__pb2.StatusResponse.FromString,
|
1285
|
-
options, channel_credentials,
|
1286
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1287
|
-
|
1288
|
-
@staticmethod
|
1289
|
-
def ServerShutdown(request,
|
1290
|
-
target,
|
1291
|
-
options=(),
|
1292
|
-
channel_credentials=None,
|
1293
|
-
call_credentials=None,
|
1294
|
-
insecure=False,
|
1295
|
-
compression=None,
|
1296
|
-
wait_for_ready=None,
|
1297
|
-
timeout=None,
|
1298
|
-
metadata=None):
|
1299
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerShutdown',
|
1300
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerShutdownRequest.SerializeToString,
|
1301
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerShutdownResponse.FromString,
|
1302
|
-
options, channel_credentials,
|
1303
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1304
|
-
|
1305
|
-
@staticmethod
|
1306
|
-
def ServerStatus(request,
|
1307
|
-
target,
|
1308
|
-
options=(),
|
1309
|
-
channel_credentials=None,
|
1310
|
-
call_credentials=None,
|
1311
|
-
insecure=False,
|
1312
|
-
compression=None,
|
1313
|
-
wait_for_ready=None,
|
1314
|
-
timeout=None,
|
1315
|
-
metadata=None):
|
1316
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerStatus',
|
1317
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerStatusRequest.SerializeToString,
|
1318
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerStatusResponse.FromString,
|
1319
|
-
options, channel_credentials,
|
1320
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1321
|
-
|
1322
|
-
@staticmethod
|
1323
|
-
def ServerInformInit(request,
|
1324
|
-
target,
|
1325
|
-
options=(),
|
1326
|
-
channel_credentials=None,
|
1327
|
-
call_credentials=None,
|
1328
|
-
insecure=False,
|
1329
|
-
compression=None,
|
1330
|
-
wait_for_ready=None,
|
1331
|
-
timeout=None,
|
1332
|
-
metadata=None):
|
1333
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerInformInit',
|
1334
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformInitRequest.SerializeToString,
|
1335
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformInitResponse.FromString,
|
1336
|
-
options, channel_credentials,
|
1337
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1338
|
-
|
1339
|
-
@staticmethod
|
1340
|
-
def ServerInformStart(request,
|
1341
|
-
target,
|
1342
|
-
options=(),
|
1343
|
-
channel_credentials=None,
|
1344
|
-
call_credentials=None,
|
1345
|
-
insecure=False,
|
1346
|
-
compression=None,
|
1347
|
-
wait_for_ready=None,
|
1348
|
-
timeout=None,
|
1349
|
-
metadata=None):
|
1350
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerInformStart',
|
1351
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformStartRequest.SerializeToString,
|
1352
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformStartResponse.FromString,
|
1353
|
-
options, channel_credentials,
|
1354
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1355
|
-
|
1356
|
-
@staticmethod
|
1357
|
-
def ServerInformFinish(request,
|
1358
|
-
target,
|
1359
|
-
options=(),
|
1360
|
-
channel_credentials=None,
|
1361
|
-
call_credentials=None,
|
1362
|
-
insecure=False,
|
1363
|
-
compression=None,
|
1364
|
-
wait_for_ready=None,
|
1365
|
-
timeout=None,
|
1366
|
-
metadata=None):
|
1367
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerInformFinish',
|
1368
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformFinishRequest.SerializeToString,
|
1369
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformFinishResponse.FromString,
|
1370
|
-
options, channel_credentials,
|
1371
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1372
|
-
|
1373
|
-
@staticmethod
|
1374
|
-
def ServerInformAttach(request,
|
1375
|
-
target,
|
1376
|
-
options=(),
|
1377
|
-
channel_credentials=None,
|
1378
|
-
call_credentials=None,
|
1379
|
-
insecure=False,
|
1380
|
-
compression=None,
|
1381
|
-
wait_for_ready=None,
|
1382
|
-
timeout=None,
|
1383
|
-
metadata=None):
|
1384
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerInformAttach',
|
1385
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformAttachRequest.SerializeToString,
|
1386
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformAttachResponse.FromString,
|
1387
|
-
options, channel_credentials,
|
1388
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1389
|
-
|
1390
|
-
@staticmethod
|
1391
|
-
def ServerInformDetach(request,
|
1392
|
-
target,
|
1393
|
-
options=(),
|
1394
|
-
channel_credentials=None,
|
1395
|
-
call_credentials=None,
|
1396
|
-
insecure=False,
|
1397
|
-
compression=None,
|
1398
|
-
wait_for_ready=None,
|
1399
|
-
timeout=None,
|
1400
|
-
metadata=None):
|
1401
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerInformDetach',
|
1402
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformDetachRequest.SerializeToString,
|
1403
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformDetachResponse.FromString,
|
1404
|
-
options, channel_credentials,
|
1405
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
1406
|
-
|
1407
|
-
@staticmethod
|
1408
|
-
def ServerInformTeardown(request,
|
1409
|
-
target,
|
1410
|
-
options=(),
|
1411
|
-
channel_credentials=None,
|
1412
|
-
call_credentials=None,
|
1413
|
-
insecure=False,
|
1414
|
-
compression=None,
|
1415
|
-
wait_for_ready=None,
|
1416
|
-
timeout=None,
|
1417
|
-
metadata=None):
|
1418
|
-
return grpc.experimental.unary_unary(request, target, '/wandb_internal.InternalService/ServerInformTeardown',
|
1419
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformTeardownRequest.SerializeToString,
|
1420
|
-
wandb_dot_proto_dot_wandb__server__pb2.ServerInformTeardownResponse.FromString,
|
1421
|
-
options, channel_credentials,
|
1422
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|