wandb 0.19.1rc1__py3-none-musllinux_1_2_aarch64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (822) hide show
  1. package_readme.md +97 -0
  2. wandb/__init__.py +252 -0
  3. wandb/__init__.pyi +1197 -0
  4. wandb/__main__.py +3 -0
  5. wandb/_globals.py +19 -0
  6. wandb/agents/__init__.py +0 -0
  7. wandb/agents/pyagent.py +363 -0
  8. wandb/analytics/__init__.py +3 -0
  9. wandb/analytics/sentry.py +263 -0
  10. wandb/apis/__init__.py +48 -0
  11. wandb/apis/attrs.py +51 -0
  12. wandb/apis/importers/__init__.py +1 -0
  13. wandb/apis/importers/internals/internal.py +385 -0
  14. wandb/apis/importers/internals/protocols.py +103 -0
  15. wandb/apis/importers/internals/util.py +78 -0
  16. wandb/apis/importers/mlflow.py +254 -0
  17. wandb/apis/importers/validation.py +108 -0
  18. wandb/apis/importers/wandb.py +1603 -0
  19. wandb/apis/internal.py +232 -0
  20. wandb/apis/normalize.py +73 -0
  21. wandb/apis/paginator.py +81 -0
  22. wandb/apis/public/__init__.py +34 -0
  23. wandb/apis/public/api.py +1387 -0
  24. wandb/apis/public/artifacts.py +1095 -0
  25. wandb/apis/public/const.py +4 -0
  26. wandb/apis/public/files.py +263 -0
  27. wandb/apis/public/history.py +149 -0
  28. wandb/apis/public/jobs.py +653 -0
  29. wandb/apis/public/projects.py +154 -0
  30. wandb/apis/public/query_generator.py +166 -0
  31. wandb/apis/public/reports.py +458 -0
  32. wandb/apis/public/runs.py +1012 -0
  33. wandb/apis/public/sweeps.py +240 -0
  34. wandb/apis/public/teams.py +198 -0
  35. wandb/apis/public/users.py +136 -0
  36. wandb/apis/public/utils.py +68 -0
  37. wandb/apis/reports/__init__.py +1 -0
  38. wandb/apis/reports/v1/__init__.py +8 -0
  39. wandb/apis/reports/v2/__init__.py +8 -0
  40. wandb/apis/workspaces/__init__.py +8 -0
  41. wandb/beta/workflows.py +288 -0
  42. wandb/bin/gpu_stats +0 -0
  43. wandb/bin/wandb-core +0 -0
  44. wandb/cli/__init__.py +0 -0
  45. wandb/cli/beta.py +178 -0
  46. wandb/cli/cli.py +2812 -0
  47. wandb/data_types.py +66 -0
  48. wandb/docker/__init__.py +343 -0
  49. wandb/docker/auth.py +435 -0
  50. wandb/docker/wandb-entrypoint.sh +33 -0
  51. wandb/docker/www_authenticate.py +94 -0
  52. wandb/env.py +513 -0
  53. wandb/errors/__init__.py +17 -0
  54. wandb/errors/errors.py +37 -0
  55. wandb/errors/links.py +73 -0
  56. wandb/errors/term.py +415 -0
  57. wandb/errors/util.py +57 -0
  58. wandb/errors/warnings.py +2 -0
  59. wandb/filesync/__init__.py +0 -0
  60. wandb/filesync/dir_watcher.py +403 -0
  61. wandb/filesync/stats.py +100 -0
  62. wandb/filesync/step_checksum.py +142 -0
  63. wandb/filesync/step_prepare.py +179 -0
  64. wandb/filesync/step_upload.py +287 -0
  65. wandb/filesync/upload_job.py +142 -0
  66. wandb/integration/__init__.py +0 -0
  67. wandb/integration/catboost/__init__.py +5 -0
  68. wandb/integration/catboost/catboost.py +178 -0
  69. wandb/integration/cohere/__init__.py +3 -0
  70. wandb/integration/cohere/cohere.py +21 -0
  71. wandb/integration/cohere/resolver.py +347 -0
  72. wandb/integration/diffusers/__init__.py +3 -0
  73. wandb/integration/diffusers/autologger.py +76 -0
  74. wandb/integration/diffusers/pipeline_resolver.py +50 -0
  75. wandb/integration/diffusers/resolvers/__init__.py +9 -0
  76. wandb/integration/diffusers/resolvers/multimodal.py +882 -0
  77. wandb/integration/diffusers/resolvers/utils.py +102 -0
  78. wandb/integration/fastai/__init__.py +245 -0
  79. wandb/integration/gym/__init__.py +99 -0
  80. wandb/integration/huggingface/__init__.py +3 -0
  81. wandb/integration/huggingface/huggingface.py +18 -0
  82. wandb/integration/huggingface/resolver.py +213 -0
  83. wandb/integration/keras/__init__.py +11 -0
  84. wandb/integration/keras/callbacks/__init__.py +5 -0
  85. wandb/integration/keras/callbacks/metrics_logger.py +129 -0
  86. wandb/integration/keras/callbacks/model_checkpoint.py +188 -0
  87. wandb/integration/keras/callbacks/tables_builder.py +228 -0
  88. wandb/integration/keras/keras.py +1089 -0
  89. wandb/integration/kfp/__init__.py +6 -0
  90. wandb/integration/kfp/helpers.py +28 -0
  91. wandb/integration/kfp/kfp_patch.py +334 -0
  92. wandb/integration/kfp/wandb_logging.py +182 -0
  93. wandb/integration/langchain/__init__.py +3 -0
  94. wandb/integration/langchain/wandb_tracer.py +48 -0
  95. wandb/integration/lightgbm/__init__.py +239 -0
  96. wandb/integration/lightning/__init__.py +0 -0
  97. wandb/integration/lightning/fabric/__init__.py +3 -0
  98. wandb/integration/lightning/fabric/logger.py +764 -0
  99. wandb/integration/metaflow/__init__.py +3 -0
  100. wandb/integration/metaflow/metaflow.py +383 -0
  101. wandb/integration/openai/__init__.py +3 -0
  102. wandb/integration/openai/fine_tuning.py +480 -0
  103. wandb/integration/openai/openai.py +22 -0
  104. wandb/integration/openai/resolver.py +240 -0
  105. wandb/integration/prodigy/__init__.py +3 -0
  106. wandb/integration/prodigy/prodigy.py +299 -0
  107. wandb/integration/sacred/__init__.py +117 -0
  108. wandb/integration/sagemaker/__init__.py +12 -0
  109. wandb/integration/sagemaker/auth.py +28 -0
  110. wandb/integration/sagemaker/config.py +49 -0
  111. wandb/integration/sagemaker/files.py +3 -0
  112. wandb/integration/sagemaker/resources.py +34 -0
  113. wandb/integration/sb3/__init__.py +3 -0
  114. wandb/integration/sb3/sb3.py +147 -0
  115. wandb/integration/sklearn/__init__.py +37 -0
  116. wandb/integration/sklearn/calculate/__init__.py +32 -0
  117. wandb/integration/sklearn/calculate/calibration_curves.py +125 -0
  118. wandb/integration/sklearn/calculate/class_proportions.py +68 -0
  119. wandb/integration/sklearn/calculate/confusion_matrix.py +93 -0
  120. wandb/integration/sklearn/calculate/decision_boundaries.py +40 -0
  121. wandb/integration/sklearn/calculate/elbow_curve.py +55 -0
  122. wandb/integration/sklearn/calculate/feature_importances.py +67 -0
  123. wandb/integration/sklearn/calculate/learning_curve.py +64 -0
  124. wandb/integration/sklearn/calculate/outlier_candidates.py +69 -0
  125. wandb/integration/sklearn/calculate/residuals.py +86 -0
  126. wandb/integration/sklearn/calculate/silhouette.py +118 -0
  127. wandb/integration/sklearn/calculate/summary_metrics.py +62 -0
  128. wandb/integration/sklearn/plot/__init__.py +35 -0
  129. wandb/integration/sklearn/plot/classifier.py +329 -0
  130. wandb/integration/sklearn/plot/clusterer.py +146 -0
  131. wandb/integration/sklearn/plot/regressor.py +121 -0
  132. wandb/integration/sklearn/plot/shared.py +91 -0
  133. wandb/integration/sklearn/utils.py +183 -0
  134. wandb/integration/tensorboard/__init__.py +10 -0
  135. wandb/integration/tensorboard/log.py +354 -0
  136. wandb/integration/tensorboard/monkeypatch.py +186 -0
  137. wandb/integration/tensorflow/__init__.py +5 -0
  138. wandb/integration/tensorflow/estimator_hook.py +54 -0
  139. wandb/integration/torch/__init__.py +0 -0
  140. wandb/integration/torch/wandb_torch.py +554 -0
  141. wandb/integration/ultralytics/__init__.py +11 -0
  142. wandb/integration/ultralytics/bbox_utils.py +215 -0
  143. wandb/integration/ultralytics/callback.py +524 -0
  144. wandb/integration/ultralytics/classification_utils.py +83 -0
  145. wandb/integration/ultralytics/mask_utils.py +202 -0
  146. wandb/integration/ultralytics/pose_utils.py +103 -0
  147. wandb/integration/xgboost/__init__.py +11 -0
  148. wandb/integration/xgboost/xgboost.py +189 -0
  149. wandb/integration/yolov8/__init__.py +0 -0
  150. wandb/integration/yolov8/yolov8.py +284 -0
  151. wandb/jupyter.py +513 -0
  152. wandb/mpmain/__init__.py +0 -0
  153. wandb/mpmain/__main__.py +1 -0
  154. wandb/old/__init__.py +0 -0
  155. wandb/old/core.py +53 -0
  156. wandb/old/settings.py +173 -0
  157. wandb/old/summary.py +440 -0
  158. wandb/plot/__init__.py +28 -0
  159. wandb/plot/bar.py +70 -0
  160. wandb/plot/confusion_matrix.py +181 -0
  161. wandb/plot/custom_chart.py +124 -0
  162. wandb/plot/histogram.py +65 -0
  163. wandb/plot/line.py +74 -0
  164. wandb/plot/line_series.py +176 -0
  165. wandb/plot/pr_curve.py +185 -0
  166. wandb/plot/roc_curve.py +163 -0
  167. wandb/plot/scatter.py +66 -0
  168. wandb/plot/utils.py +183 -0
  169. wandb/plot/viz.py +41 -0
  170. wandb/proto/__init__.py +0 -0
  171. wandb/proto/v3/__init__.py +0 -0
  172. wandb/proto/v3/wandb_base_pb2.py +55 -0
  173. wandb/proto/v3/wandb_internal_pb2.py +1658 -0
  174. wandb/proto/v3/wandb_server_pb2.py +228 -0
  175. wandb/proto/v3/wandb_settings_pb2.py +122 -0
  176. wandb/proto/v3/wandb_telemetry_pb2.py +106 -0
  177. wandb/proto/v4/__init__.py +0 -0
  178. wandb/proto/v4/wandb_base_pb2.py +30 -0
  179. wandb/proto/v4/wandb_internal_pb2.py +370 -0
  180. wandb/proto/v4/wandb_server_pb2.py +67 -0
  181. wandb/proto/v4/wandb_settings_pb2.py +47 -0
  182. wandb/proto/v4/wandb_telemetry_pb2.py +41 -0
  183. wandb/proto/v5/wandb_base_pb2.py +31 -0
  184. wandb/proto/v5/wandb_internal_pb2.py +371 -0
  185. wandb/proto/v5/wandb_server_pb2.py +68 -0
  186. wandb/proto/v5/wandb_settings_pb2.py +48 -0
  187. wandb/proto/v5/wandb_telemetry_pb2.py +42 -0
  188. wandb/proto/wandb_base_pb2.py +10 -0
  189. wandb/proto/wandb_deprecated.py +45 -0
  190. wandb/proto/wandb_generate_deprecated.py +30 -0
  191. wandb/proto/wandb_generate_proto.py +49 -0
  192. wandb/proto/wandb_internal_pb2.py +16 -0
  193. wandb/proto/wandb_server_pb2.py +10 -0
  194. wandb/proto/wandb_settings_pb2.py +10 -0
  195. wandb/proto/wandb_telemetry_pb2.py +10 -0
  196. wandb/py.typed +0 -0
  197. wandb/sdk/__init__.py +37 -0
  198. wandb/sdk/artifacts/__init__.py +0 -0
  199. wandb/sdk/artifacts/_validators.py +121 -0
  200. wandb/sdk/artifacts/artifact.py +2364 -0
  201. wandb/sdk/artifacts/artifact_download_logger.py +43 -0
  202. wandb/sdk/artifacts/artifact_file_cache.py +249 -0
  203. wandb/sdk/artifacts/artifact_instance_cache.py +17 -0
  204. wandb/sdk/artifacts/artifact_manifest.py +75 -0
  205. wandb/sdk/artifacts/artifact_manifest_entry.py +249 -0
  206. wandb/sdk/artifacts/artifact_manifests/__init__.py +0 -0
  207. wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +92 -0
  208. wandb/sdk/artifacts/artifact_saver.py +265 -0
  209. wandb/sdk/artifacts/artifact_state.py +11 -0
  210. wandb/sdk/artifacts/artifact_ttl.py +7 -0
  211. wandb/sdk/artifacts/exceptions.py +57 -0
  212. wandb/sdk/artifacts/staging.py +25 -0
  213. wandb/sdk/artifacts/storage_handler.py +62 -0
  214. wandb/sdk/artifacts/storage_handlers/__init__.py +0 -0
  215. wandb/sdk/artifacts/storage_handlers/azure_handler.py +213 -0
  216. wandb/sdk/artifacts/storage_handlers/gcs_handler.py +224 -0
  217. wandb/sdk/artifacts/storage_handlers/http_handler.py +114 -0
  218. wandb/sdk/artifacts/storage_handlers/local_file_handler.py +139 -0
  219. wandb/sdk/artifacts/storage_handlers/multi_handler.py +56 -0
  220. wandb/sdk/artifacts/storage_handlers/s3_handler.py +298 -0
  221. wandb/sdk/artifacts/storage_handlers/tracking_handler.py +72 -0
  222. wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +135 -0
  223. wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +74 -0
  224. wandb/sdk/artifacts/storage_layout.py +6 -0
  225. wandb/sdk/artifacts/storage_policies/__init__.py +4 -0
  226. wandb/sdk/artifacts/storage_policies/register.py +1 -0
  227. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +378 -0
  228. wandb/sdk/artifacts/storage_policy.py +72 -0
  229. wandb/sdk/backend/__init__.py +0 -0
  230. wandb/sdk/backend/backend.py +221 -0
  231. wandb/sdk/data_types/__init__.py +0 -0
  232. wandb/sdk/data_types/_dtypes.py +918 -0
  233. wandb/sdk/data_types/_private.py +10 -0
  234. wandb/sdk/data_types/audio.py +165 -0
  235. wandb/sdk/data_types/base_types/__init__.py +0 -0
  236. wandb/sdk/data_types/base_types/json_metadata.py +55 -0
  237. wandb/sdk/data_types/base_types/media.py +376 -0
  238. wandb/sdk/data_types/base_types/wb_value.py +282 -0
  239. wandb/sdk/data_types/bokeh.py +70 -0
  240. wandb/sdk/data_types/graph.py +405 -0
  241. wandb/sdk/data_types/helper_types/__init__.py +0 -0
  242. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +305 -0
  243. wandb/sdk/data_types/helper_types/classes.py +159 -0
  244. wandb/sdk/data_types/helper_types/image_mask.py +241 -0
  245. wandb/sdk/data_types/histogram.py +94 -0
  246. wandb/sdk/data_types/html.py +115 -0
  247. wandb/sdk/data_types/image.py +847 -0
  248. wandb/sdk/data_types/molecule.py +241 -0
  249. wandb/sdk/data_types/object_3d.py +470 -0
  250. wandb/sdk/data_types/plotly.py +82 -0
  251. wandb/sdk/data_types/saved_model.py +445 -0
  252. wandb/sdk/data_types/table.py +1204 -0
  253. wandb/sdk/data_types/trace_tree.py +438 -0
  254. wandb/sdk/data_types/utils.py +228 -0
  255. wandb/sdk/data_types/video.py +268 -0
  256. wandb/sdk/integration_utils/__init__.py +0 -0
  257. wandb/sdk/integration_utils/auto_logging.py +232 -0
  258. wandb/sdk/integration_utils/data_logging.py +475 -0
  259. wandb/sdk/interface/__init__.py +0 -0
  260. wandb/sdk/interface/constants.py +4 -0
  261. wandb/sdk/interface/interface.py +1010 -0
  262. wandb/sdk/interface/interface_queue.py +53 -0
  263. wandb/sdk/interface/interface_relay.py +53 -0
  264. wandb/sdk/interface/interface_shared.py +546 -0
  265. wandb/sdk/interface/interface_sock.py +61 -0
  266. wandb/sdk/interface/message_future.py +27 -0
  267. wandb/sdk/interface/message_future_poll.py +50 -0
  268. wandb/sdk/interface/router.py +115 -0
  269. wandb/sdk/interface/router_queue.py +41 -0
  270. wandb/sdk/interface/router_relay.py +37 -0
  271. wandb/sdk/interface/router_sock.py +36 -0
  272. wandb/sdk/interface/summary_record.py +67 -0
  273. wandb/sdk/internal/__init__.py +0 -0
  274. wandb/sdk/internal/context.py +89 -0
  275. wandb/sdk/internal/datastore.py +297 -0
  276. wandb/sdk/internal/file_pusher.py +181 -0
  277. wandb/sdk/internal/file_stream.py +695 -0
  278. wandb/sdk/internal/flow_control.py +263 -0
  279. wandb/sdk/internal/handler.py +905 -0
  280. wandb/sdk/internal/internal.py +403 -0
  281. wandb/sdk/internal/internal_api.py +4587 -0
  282. wandb/sdk/internal/internal_util.py +97 -0
  283. wandb/sdk/internal/job_builder.py +638 -0
  284. wandb/sdk/internal/profiler.py +78 -0
  285. wandb/sdk/internal/progress.py +79 -0
  286. wandb/sdk/internal/run.py +25 -0
  287. wandb/sdk/internal/sample.py +70 -0
  288. wandb/sdk/internal/sender.py +1696 -0
  289. wandb/sdk/internal/sender_config.py +197 -0
  290. wandb/sdk/internal/settings_static.py +97 -0
  291. wandb/sdk/internal/system/__init__.py +0 -0
  292. wandb/sdk/internal/system/assets/__init__.py +25 -0
  293. wandb/sdk/internal/system/assets/aggregators.py +37 -0
  294. wandb/sdk/internal/system/assets/asset_registry.py +20 -0
  295. wandb/sdk/internal/system/assets/cpu.py +163 -0
  296. wandb/sdk/internal/system/assets/disk.py +210 -0
  297. wandb/sdk/internal/system/assets/gpu.py +416 -0
  298. wandb/sdk/internal/system/assets/gpu_amd.py +233 -0
  299. wandb/sdk/internal/system/assets/interfaces.py +205 -0
  300. wandb/sdk/internal/system/assets/ipu.py +177 -0
  301. wandb/sdk/internal/system/assets/memory.py +166 -0
  302. wandb/sdk/internal/system/assets/network.py +125 -0
  303. wandb/sdk/internal/system/assets/open_metrics.py +293 -0
  304. wandb/sdk/internal/system/assets/tpu.py +154 -0
  305. wandb/sdk/internal/system/assets/trainium.py +393 -0
  306. wandb/sdk/internal/system/env_probe_helpers.py +13 -0
  307. wandb/sdk/internal/system/system_info.py +250 -0
  308. wandb/sdk/internal/system/system_monitor.py +222 -0
  309. wandb/sdk/internal/tb_watcher.py +519 -0
  310. wandb/sdk/internal/thread_local_settings.py +18 -0
  311. wandb/sdk/internal/writer.py +204 -0
  312. wandb/sdk/launch/__init__.py +15 -0
  313. wandb/sdk/launch/_launch.py +331 -0
  314. wandb/sdk/launch/_launch_add.py +255 -0
  315. wandb/sdk/launch/_project_spec.py +566 -0
  316. wandb/sdk/launch/agent/__init__.py +5 -0
  317. wandb/sdk/launch/agent/agent.py +924 -0
  318. wandb/sdk/launch/agent/config.py +296 -0
  319. wandb/sdk/launch/agent/job_status_tracker.py +53 -0
  320. wandb/sdk/launch/agent/run_queue_item_file_saver.py +39 -0
  321. wandb/sdk/launch/builder/__init__.py +0 -0
  322. wandb/sdk/launch/builder/abstract.py +156 -0
  323. wandb/sdk/launch/builder/build.py +297 -0
  324. wandb/sdk/launch/builder/context_manager.py +235 -0
  325. wandb/sdk/launch/builder/docker_builder.py +177 -0
  326. wandb/sdk/launch/builder/kaniko_builder.py +594 -0
  327. wandb/sdk/launch/builder/noop.py +58 -0
  328. wandb/sdk/launch/builder/templates/_wandb_bootstrap.py +188 -0
  329. wandb/sdk/launch/builder/templates/dockerfile.py +92 -0
  330. wandb/sdk/launch/create_job.py +528 -0
  331. wandb/sdk/launch/environment/abstract.py +29 -0
  332. wandb/sdk/launch/environment/aws_environment.py +322 -0
  333. wandb/sdk/launch/environment/azure_environment.py +105 -0
  334. wandb/sdk/launch/environment/gcp_environment.py +335 -0
  335. wandb/sdk/launch/environment/local_environment.py +65 -0
  336. wandb/sdk/launch/errors.py +13 -0
  337. wandb/sdk/launch/git_reference.py +109 -0
  338. wandb/sdk/launch/inputs/files.py +148 -0
  339. wandb/sdk/launch/inputs/internal.py +315 -0
  340. wandb/sdk/launch/inputs/manage.py +113 -0
  341. wandb/sdk/launch/inputs/schema.py +39 -0
  342. wandb/sdk/launch/loader.py +249 -0
  343. wandb/sdk/launch/registry/abstract.py +48 -0
  344. wandb/sdk/launch/registry/anon.py +29 -0
  345. wandb/sdk/launch/registry/azure_container_registry.py +124 -0
  346. wandb/sdk/launch/registry/elastic_container_registry.py +192 -0
  347. wandb/sdk/launch/registry/google_artifact_registry.py +219 -0
  348. wandb/sdk/launch/registry/local_registry.py +65 -0
  349. wandb/sdk/launch/runner/__init__.py +0 -0
  350. wandb/sdk/launch/runner/abstract.py +185 -0
  351. wandb/sdk/launch/runner/kubernetes_monitor.py +472 -0
  352. wandb/sdk/launch/runner/kubernetes_runner.py +963 -0
  353. wandb/sdk/launch/runner/local_container.py +301 -0
  354. wandb/sdk/launch/runner/local_process.py +78 -0
  355. wandb/sdk/launch/runner/sagemaker_runner.py +426 -0
  356. wandb/sdk/launch/runner/vertex_runner.py +230 -0
  357. wandb/sdk/launch/sweeps/__init__.py +37 -0
  358. wandb/sdk/launch/sweeps/scheduler.py +740 -0
  359. wandb/sdk/launch/sweeps/scheduler_sweep.py +90 -0
  360. wandb/sdk/launch/sweeps/utils.py +316 -0
  361. wandb/sdk/launch/utils.py +747 -0
  362. wandb/sdk/launch/wandb_reference.py +138 -0
  363. wandb/sdk/lib/__init__.py +5 -0
  364. wandb/sdk/lib/apikey.py +269 -0
  365. wandb/sdk/lib/capped_dict.py +26 -0
  366. wandb/sdk/lib/config_util.py +101 -0
  367. wandb/sdk/lib/credentials.py +141 -0
  368. wandb/sdk/lib/deprecate.py +42 -0
  369. wandb/sdk/lib/disabled.py +29 -0
  370. wandb/sdk/lib/exit_hooks.py +54 -0
  371. wandb/sdk/lib/file_stream_utils.py +118 -0
  372. wandb/sdk/lib/filenames.py +64 -0
  373. wandb/sdk/lib/filesystem.py +372 -0
  374. wandb/sdk/lib/fsm.py +180 -0
  375. wandb/sdk/lib/gitlib.py +239 -0
  376. wandb/sdk/lib/gql_request.py +65 -0
  377. wandb/sdk/lib/handler_util.py +21 -0
  378. wandb/sdk/lib/hashutil.py +84 -0
  379. wandb/sdk/lib/import_hooks.py +275 -0
  380. wandb/sdk/lib/ipython.py +126 -0
  381. wandb/sdk/lib/json_util.py +80 -0
  382. wandb/sdk/lib/lazyloader.py +63 -0
  383. wandb/sdk/lib/mailbox.py +456 -0
  384. wandb/sdk/lib/module.py +78 -0
  385. wandb/sdk/lib/paths.py +106 -0
  386. wandb/sdk/lib/preinit.py +42 -0
  387. wandb/sdk/lib/printer.py +548 -0
  388. wandb/sdk/lib/progress.py +273 -0
  389. wandb/sdk/lib/proto_util.py +90 -0
  390. wandb/sdk/lib/redirect.py +845 -0
  391. wandb/sdk/lib/retry.py +289 -0
  392. wandb/sdk/lib/run_moment.py +72 -0
  393. wandb/sdk/lib/runid.py +12 -0
  394. wandb/sdk/lib/server.py +38 -0
  395. wandb/sdk/lib/service_connection.py +216 -0
  396. wandb/sdk/lib/service_token.py +94 -0
  397. wandb/sdk/lib/sock_client.py +290 -0
  398. wandb/sdk/lib/sparkline.py +44 -0
  399. wandb/sdk/lib/telemetry.py +100 -0
  400. wandb/sdk/lib/timed_input.py +133 -0
  401. wandb/sdk/lib/timer.py +19 -0
  402. wandb/sdk/service/__init__.py +0 -0
  403. wandb/sdk/service/_startup_debug.py +22 -0
  404. wandb/sdk/service/port_file.py +53 -0
  405. wandb/sdk/service/server.py +107 -0
  406. wandb/sdk/service/server_sock.py +274 -0
  407. wandb/sdk/service/service.py +242 -0
  408. wandb/sdk/service/streams.py +425 -0
  409. wandb/sdk/verify/__init__.py +0 -0
  410. wandb/sdk/verify/verify.py +501 -0
  411. wandb/sdk/wandb_alerts.py +12 -0
  412. wandb/sdk/wandb_config.py +322 -0
  413. wandb/sdk/wandb_helper.py +54 -0
  414. wandb/sdk/wandb_init.py +1313 -0
  415. wandb/sdk/wandb_login.py +339 -0
  416. wandb/sdk/wandb_metric.py +110 -0
  417. wandb/sdk/wandb_require.py +94 -0
  418. wandb/sdk/wandb_require_helpers.py +44 -0
  419. wandb/sdk/wandb_run.py +4066 -0
  420. wandb/sdk/wandb_settings.py +1309 -0
  421. wandb/sdk/wandb_setup.py +402 -0
  422. wandb/sdk/wandb_summary.py +150 -0
  423. wandb/sdk/wandb_sweep.py +119 -0
  424. wandb/sdk/wandb_sync.py +82 -0
  425. wandb/sdk/wandb_watch.py +150 -0
  426. wandb/sklearn.py +35 -0
  427. wandb/sync/__init__.py +3 -0
  428. wandb/sync/sync.py +442 -0
  429. wandb/trigger.py +29 -0
  430. wandb/util.py +1955 -0
  431. wandb/vendor/__init__.py +0 -0
  432. wandb/vendor/gql-0.2.0/setup.py +40 -0
  433. wandb/vendor/gql-0.2.0/tests/__init__.py +0 -0
  434. wandb/vendor/gql-0.2.0/tests/starwars/__init__.py +0 -0
  435. wandb/vendor/gql-0.2.0/tests/starwars/fixtures.py +96 -0
  436. wandb/vendor/gql-0.2.0/tests/starwars/schema.py +146 -0
  437. wandb/vendor/gql-0.2.0/tests/starwars/test_dsl.py +293 -0
  438. wandb/vendor/gql-0.2.0/tests/starwars/test_query.py +355 -0
  439. wandb/vendor/gql-0.2.0/tests/starwars/test_validation.py +171 -0
  440. wandb/vendor/gql-0.2.0/tests/test_client.py +31 -0
  441. wandb/vendor/gql-0.2.0/tests/test_transport.py +89 -0
  442. wandb/vendor/gql-0.2.0/wandb_gql/__init__.py +4 -0
  443. wandb/vendor/gql-0.2.0/wandb_gql/client.py +75 -0
  444. wandb/vendor/gql-0.2.0/wandb_gql/dsl.py +152 -0
  445. wandb/vendor/gql-0.2.0/wandb_gql/gql.py +10 -0
  446. wandb/vendor/gql-0.2.0/wandb_gql/transport/__init__.py +0 -0
  447. wandb/vendor/gql-0.2.0/wandb_gql/transport/http.py +6 -0
  448. wandb/vendor/gql-0.2.0/wandb_gql/transport/local_schema.py +15 -0
  449. wandb/vendor/gql-0.2.0/wandb_gql/transport/requests.py +46 -0
  450. wandb/vendor/gql-0.2.0/wandb_gql/utils.py +21 -0
  451. wandb/vendor/graphql-core-1.1/setup.py +86 -0
  452. wandb/vendor/graphql-core-1.1/wandb_graphql/__init__.py +287 -0
  453. wandb/vendor/graphql-core-1.1/wandb_graphql/error/__init__.py +6 -0
  454. wandb/vendor/graphql-core-1.1/wandb_graphql/error/base.py +42 -0
  455. wandb/vendor/graphql-core-1.1/wandb_graphql/error/format_error.py +11 -0
  456. wandb/vendor/graphql-core-1.1/wandb_graphql/error/located_error.py +29 -0
  457. wandb/vendor/graphql-core-1.1/wandb_graphql/error/syntax_error.py +36 -0
  458. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/__init__.py +26 -0
  459. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/base.py +311 -0
  460. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executor.py +398 -0
  461. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/__init__.py +0 -0
  462. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/asyncio.py +53 -0
  463. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/gevent.py +22 -0
  464. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/process.py +32 -0
  465. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/sync.py +7 -0
  466. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/thread.py +35 -0
  467. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/utils.py +6 -0
  468. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/__init__.py +0 -0
  469. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/executor.py +66 -0
  470. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/fragment.py +252 -0
  471. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/resolver.py +151 -0
  472. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/utils.py +7 -0
  473. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/middleware.py +57 -0
  474. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/values.py +145 -0
  475. wandb/vendor/graphql-core-1.1/wandb_graphql/graphql.py +60 -0
  476. wandb/vendor/graphql-core-1.1/wandb_graphql/language/__init__.py +0 -0
  477. wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py +1349 -0
  478. wandb/vendor/graphql-core-1.1/wandb_graphql/language/base.py +19 -0
  479. wandb/vendor/graphql-core-1.1/wandb_graphql/language/lexer.py +435 -0
  480. wandb/vendor/graphql-core-1.1/wandb_graphql/language/location.py +30 -0
  481. wandb/vendor/graphql-core-1.1/wandb_graphql/language/parser.py +779 -0
  482. wandb/vendor/graphql-core-1.1/wandb_graphql/language/printer.py +193 -0
  483. wandb/vendor/graphql-core-1.1/wandb_graphql/language/source.py +18 -0
  484. wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor.py +222 -0
  485. wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor_meta.py +82 -0
  486. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/__init__.py +0 -0
  487. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/cached_property.py +17 -0
  488. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/contain_subset.py +28 -0
  489. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/default_ordered_dict.py +40 -0
  490. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/ordereddict.py +8 -0
  491. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/pair_set.py +43 -0
  492. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/version.py +78 -0
  493. wandb/vendor/graphql-core-1.1/wandb_graphql/type/__init__.py +67 -0
  494. wandb/vendor/graphql-core-1.1/wandb_graphql/type/definition.py +619 -0
  495. wandb/vendor/graphql-core-1.1/wandb_graphql/type/directives.py +132 -0
  496. wandb/vendor/graphql-core-1.1/wandb_graphql/type/introspection.py +440 -0
  497. wandb/vendor/graphql-core-1.1/wandb_graphql/type/scalars.py +131 -0
  498. wandb/vendor/graphql-core-1.1/wandb_graphql/type/schema.py +100 -0
  499. wandb/vendor/graphql-core-1.1/wandb_graphql/type/typemap.py +145 -0
  500. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/__init__.py +0 -0
  501. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/assert_valid_name.py +9 -0
  502. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_from_value.py +65 -0
  503. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_code.py +49 -0
  504. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_dict.py +24 -0
  505. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/base.py +75 -0
  506. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_ast_schema.py +291 -0
  507. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_client_schema.py +250 -0
  508. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/concat_ast.py +9 -0
  509. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/extend_schema.py +357 -0
  510. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_field_def.py +27 -0
  511. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_operation_ast.py +21 -0
  512. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/introspection_query.py +90 -0
  513. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_literal_value.py +67 -0
  514. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_value.py +66 -0
  515. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/quoted_or_list.py +21 -0
  516. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/schema_printer.py +168 -0
  517. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/suggestion_list.py +56 -0
  518. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_comparators.py +69 -0
  519. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_from_ast.py +21 -0
  520. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_info.py +149 -0
  521. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/value_from_ast.py +69 -0
  522. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/__init__.py +4 -0
  523. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/__init__.py +79 -0
  524. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/arguments_of_correct_type.py +24 -0
  525. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/base.py +8 -0
  526. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/default_values_of_correct_type.py +44 -0
  527. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fields_on_correct_type.py +113 -0
  528. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fragments_on_composite_types.py +33 -0
  529. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_argument_names.py +70 -0
  530. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_directives.py +97 -0
  531. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_fragment_names.py +19 -0
  532. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_type_names.py +43 -0
  533. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/lone_anonymous_operation.py +23 -0
  534. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_fragment_cycles.py +59 -0
  535. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_undefined_variables.py +36 -0
  536. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_fragments.py +38 -0
  537. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_variables.py +37 -0
  538. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/overlapping_fields_can_be_merged.py +529 -0
  539. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/possible_fragment_spreads.py +44 -0
  540. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/provided_non_null_arguments.py +46 -0
  541. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/scalar_leafs.py +33 -0
  542. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_argument_names.py +32 -0
  543. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_fragment_names.py +28 -0
  544. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_input_field_names.py +33 -0
  545. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_operation_names.py +31 -0
  546. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_variable_names.py +27 -0
  547. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_are_input_types.py +21 -0
  548. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_in_allowed_position.py +53 -0
  549. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/validation.py +158 -0
  550. wandb/vendor/promise-2.3.0/conftest.py +30 -0
  551. wandb/vendor/promise-2.3.0/setup.py +64 -0
  552. wandb/vendor/promise-2.3.0/tests/__init__.py +0 -0
  553. wandb/vendor/promise-2.3.0/tests/conftest.py +8 -0
  554. wandb/vendor/promise-2.3.0/tests/test_awaitable.py +32 -0
  555. wandb/vendor/promise-2.3.0/tests/test_awaitable_35.py +47 -0
  556. wandb/vendor/promise-2.3.0/tests/test_benchmark.py +116 -0
  557. wandb/vendor/promise-2.3.0/tests/test_complex_threads.py +23 -0
  558. wandb/vendor/promise-2.3.0/tests/test_dataloader.py +452 -0
  559. wandb/vendor/promise-2.3.0/tests/test_dataloader_awaitable_35.py +99 -0
  560. wandb/vendor/promise-2.3.0/tests/test_dataloader_extra.py +65 -0
  561. wandb/vendor/promise-2.3.0/tests/test_extra.py +670 -0
  562. wandb/vendor/promise-2.3.0/tests/test_issues.py +132 -0
  563. wandb/vendor/promise-2.3.0/tests/test_promise_list.py +70 -0
  564. wandb/vendor/promise-2.3.0/tests/test_spec.py +584 -0
  565. wandb/vendor/promise-2.3.0/tests/test_thread_safety.py +115 -0
  566. wandb/vendor/promise-2.3.0/tests/utils.py +3 -0
  567. wandb/vendor/promise-2.3.0/wandb_promise/__init__.py +38 -0
  568. wandb/vendor/promise-2.3.0/wandb_promise/async_.py +135 -0
  569. wandb/vendor/promise-2.3.0/wandb_promise/compat.py +32 -0
  570. wandb/vendor/promise-2.3.0/wandb_promise/dataloader.py +326 -0
  571. wandb/vendor/promise-2.3.0/wandb_promise/iterate_promise.py +12 -0
  572. wandb/vendor/promise-2.3.0/wandb_promise/promise.py +848 -0
  573. wandb/vendor/promise-2.3.0/wandb_promise/promise_list.py +151 -0
  574. wandb/vendor/promise-2.3.0/wandb_promise/pyutils/__init__.py +0 -0
  575. wandb/vendor/promise-2.3.0/wandb_promise/pyutils/version.py +83 -0
  576. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py +0 -0
  577. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py +22 -0
  578. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py +21 -0
  579. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/immediate.py +27 -0
  580. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/thread.py +18 -0
  581. wandb/vendor/promise-2.3.0/wandb_promise/utils.py +56 -0
  582. wandb/vendor/pygments/__init__.py +90 -0
  583. wandb/vendor/pygments/cmdline.py +568 -0
  584. wandb/vendor/pygments/console.py +74 -0
  585. wandb/vendor/pygments/filter.py +74 -0
  586. wandb/vendor/pygments/filters/__init__.py +350 -0
  587. wandb/vendor/pygments/formatter.py +95 -0
  588. wandb/vendor/pygments/formatters/__init__.py +153 -0
  589. wandb/vendor/pygments/formatters/_mapping.py +85 -0
  590. wandb/vendor/pygments/formatters/bbcode.py +109 -0
  591. wandb/vendor/pygments/formatters/html.py +851 -0
  592. wandb/vendor/pygments/formatters/img.py +600 -0
  593. wandb/vendor/pygments/formatters/irc.py +182 -0
  594. wandb/vendor/pygments/formatters/latex.py +482 -0
  595. wandb/vendor/pygments/formatters/other.py +160 -0
  596. wandb/vendor/pygments/formatters/rtf.py +147 -0
  597. wandb/vendor/pygments/formatters/svg.py +153 -0
  598. wandb/vendor/pygments/formatters/terminal.py +136 -0
  599. wandb/vendor/pygments/formatters/terminal256.py +309 -0
  600. wandb/vendor/pygments/lexer.py +871 -0
  601. wandb/vendor/pygments/lexers/__init__.py +329 -0
  602. wandb/vendor/pygments/lexers/_asy_builtins.py +1645 -0
  603. wandb/vendor/pygments/lexers/_cl_builtins.py +232 -0
  604. wandb/vendor/pygments/lexers/_cocoa_builtins.py +72 -0
  605. wandb/vendor/pygments/lexers/_csound_builtins.py +1346 -0
  606. wandb/vendor/pygments/lexers/_lasso_builtins.py +5327 -0
  607. wandb/vendor/pygments/lexers/_lua_builtins.py +295 -0
  608. wandb/vendor/pygments/lexers/_mapping.py +500 -0
  609. wandb/vendor/pygments/lexers/_mql_builtins.py +1172 -0
  610. wandb/vendor/pygments/lexers/_openedge_builtins.py +2547 -0
  611. wandb/vendor/pygments/lexers/_php_builtins.py +4756 -0
  612. wandb/vendor/pygments/lexers/_postgres_builtins.py +621 -0
  613. wandb/vendor/pygments/lexers/_scilab_builtins.py +3094 -0
  614. wandb/vendor/pygments/lexers/_sourcemod_builtins.py +1163 -0
  615. wandb/vendor/pygments/lexers/_stan_builtins.py +532 -0
  616. wandb/vendor/pygments/lexers/_stata_builtins.py +419 -0
  617. wandb/vendor/pygments/lexers/_tsql_builtins.py +1004 -0
  618. wandb/vendor/pygments/lexers/_vim_builtins.py +1939 -0
  619. wandb/vendor/pygments/lexers/actionscript.py +240 -0
  620. wandb/vendor/pygments/lexers/agile.py +24 -0
  621. wandb/vendor/pygments/lexers/algebra.py +221 -0
  622. wandb/vendor/pygments/lexers/ambient.py +76 -0
  623. wandb/vendor/pygments/lexers/ampl.py +87 -0
  624. wandb/vendor/pygments/lexers/apl.py +101 -0
  625. wandb/vendor/pygments/lexers/archetype.py +318 -0
  626. wandb/vendor/pygments/lexers/asm.py +641 -0
  627. wandb/vendor/pygments/lexers/automation.py +374 -0
  628. wandb/vendor/pygments/lexers/basic.py +500 -0
  629. wandb/vendor/pygments/lexers/bibtex.py +160 -0
  630. wandb/vendor/pygments/lexers/business.py +612 -0
  631. wandb/vendor/pygments/lexers/c_cpp.py +252 -0
  632. wandb/vendor/pygments/lexers/c_like.py +541 -0
  633. wandb/vendor/pygments/lexers/capnproto.py +78 -0
  634. wandb/vendor/pygments/lexers/chapel.py +102 -0
  635. wandb/vendor/pygments/lexers/clean.py +288 -0
  636. wandb/vendor/pygments/lexers/compiled.py +34 -0
  637. wandb/vendor/pygments/lexers/configs.py +833 -0
  638. wandb/vendor/pygments/lexers/console.py +114 -0
  639. wandb/vendor/pygments/lexers/crystal.py +393 -0
  640. wandb/vendor/pygments/lexers/csound.py +366 -0
  641. wandb/vendor/pygments/lexers/css.py +689 -0
  642. wandb/vendor/pygments/lexers/d.py +251 -0
  643. wandb/vendor/pygments/lexers/dalvik.py +125 -0
  644. wandb/vendor/pygments/lexers/data.py +555 -0
  645. wandb/vendor/pygments/lexers/diff.py +165 -0
  646. wandb/vendor/pygments/lexers/dotnet.py +691 -0
  647. wandb/vendor/pygments/lexers/dsls.py +878 -0
  648. wandb/vendor/pygments/lexers/dylan.py +289 -0
  649. wandb/vendor/pygments/lexers/ecl.py +125 -0
  650. wandb/vendor/pygments/lexers/eiffel.py +65 -0
  651. wandb/vendor/pygments/lexers/elm.py +121 -0
  652. wandb/vendor/pygments/lexers/erlang.py +533 -0
  653. wandb/vendor/pygments/lexers/esoteric.py +277 -0
  654. wandb/vendor/pygments/lexers/ezhil.py +69 -0
  655. wandb/vendor/pygments/lexers/factor.py +344 -0
  656. wandb/vendor/pygments/lexers/fantom.py +250 -0
  657. wandb/vendor/pygments/lexers/felix.py +273 -0
  658. wandb/vendor/pygments/lexers/forth.py +177 -0
  659. wandb/vendor/pygments/lexers/fortran.py +205 -0
  660. wandb/vendor/pygments/lexers/foxpro.py +428 -0
  661. wandb/vendor/pygments/lexers/functional.py +21 -0
  662. wandb/vendor/pygments/lexers/go.py +101 -0
  663. wandb/vendor/pygments/lexers/grammar_notation.py +213 -0
  664. wandb/vendor/pygments/lexers/graph.py +80 -0
  665. wandb/vendor/pygments/lexers/graphics.py +553 -0
  666. wandb/vendor/pygments/lexers/haskell.py +843 -0
  667. wandb/vendor/pygments/lexers/haxe.py +936 -0
  668. wandb/vendor/pygments/lexers/hdl.py +382 -0
  669. wandb/vendor/pygments/lexers/hexdump.py +103 -0
  670. wandb/vendor/pygments/lexers/html.py +602 -0
  671. wandb/vendor/pygments/lexers/idl.py +270 -0
  672. wandb/vendor/pygments/lexers/igor.py +288 -0
  673. wandb/vendor/pygments/lexers/inferno.py +96 -0
  674. wandb/vendor/pygments/lexers/installers.py +322 -0
  675. wandb/vendor/pygments/lexers/int_fiction.py +1343 -0
  676. wandb/vendor/pygments/lexers/iolang.py +63 -0
  677. wandb/vendor/pygments/lexers/j.py +146 -0
  678. wandb/vendor/pygments/lexers/javascript.py +1525 -0
  679. wandb/vendor/pygments/lexers/julia.py +333 -0
  680. wandb/vendor/pygments/lexers/jvm.py +1573 -0
  681. wandb/vendor/pygments/lexers/lisp.py +2621 -0
  682. wandb/vendor/pygments/lexers/make.py +202 -0
  683. wandb/vendor/pygments/lexers/markup.py +595 -0
  684. wandb/vendor/pygments/lexers/math.py +21 -0
  685. wandb/vendor/pygments/lexers/matlab.py +663 -0
  686. wandb/vendor/pygments/lexers/ml.py +769 -0
  687. wandb/vendor/pygments/lexers/modeling.py +358 -0
  688. wandb/vendor/pygments/lexers/modula2.py +1561 -0
  689. wandb/vendor/pygments/lexers/monte.py +204 -0
  690. wandb/vendor/pygments/lexers/ncl.py +894 -0
  691. wandb/vendor/pygments/lexers/nimrod.py +159 -0
  692. wandb/vendor/pygments/lexers/nit.py +64 -0
  693. wandb/vendor/pygments/lexers/nix.py +136 -0
  694. wandb/vendor/pygments/lexers/oberon.py +105 -0
  695. wandb/vendor/pygments/lexers/objective.py +504 -0
  696. wandb/vendor/pygments/lexers/ooc.py +85 -0
  697. wandb/vendor/pygments/lexers/other.py +41 -0
  698. wandb/vendor/pygments/lexers/parasail.py +79 -0
  699. wandb/vendor/pygments/lexers/parsers.py +835 -0
  700. wandb/vendor/pygments/lexers/pascal.py +644 -0
  701. wandb/vendor/pygments/lexers/pawn.py +199 -0
  702. wandb/vendor/pygments/lexers/perl.py +620 -0
  703. wandb/vendor/pygments/lexers/php.py +267 -0
  704. wandb/vendor/pygments/lexers/praat.py +294 -0
  705. wandb/vendor/pygments/lexers/prolog.py +306 -0
  706. wandb/vendor/pygments/lexers/python.py +939 -0
  707. wandb/vendor/pygments/lexers/qvt.py +152 -0
  708. wandb/vendor/pygments/lexers/r.py +453 -0
  709. wandb/vendor/pygments/lexers/rdf.py +270 -0
  710. wandb/vendor/pygments/lexers/rebol.py +431 -0
  711. wandb/vendor/pygments/lexers/resource.py +85 -0
  712. wandb/vendor/pygments/lexers/rnc.py +67 -0
  713. wandb/vendor/pygments/lexers/roboconf.py +82 -0
  714. wandb/vendor/pygments/lexers/robotframework.py +560 -0
  715. wandb/vendor/pygments/lexers/ruby.py +519 -0
  716. wandb/vendor/pygments/lexers/rust.py +220 -0
  717. wandb/vendor/pygments/lexers/sas.py +228 -0
  718. wandb/vendor/pygments/lexers/scripting.py +1222 -0
  719. wandb/vendor/pygments/lexers/shell.py +794 -0
  720. wandb/vendor/pygments/lexers/smalltalk.py +195 -0
  721. wandb/vendor/pygments/lexers/smv.py +79 -0
  722. wandb/vendor/pygments/lexers/snobol.py +83 -0
  723. wandb/vendor/pygments/lexers/special.py +103 -0
  724. wandb/vendor/pygments/lexers/sql.py +681 -0
  725. wandb/vendor/pygments/lexers/stata.py +108 -0
  726. wandb/vendor/pygments/lexers/supercollider.py +90 -0
  727. wandb/vendor/pygments/lexers/tcl.py +145 -0
  728. wandb/vendor/pygments/lexers/templates.py +2283 -0
  729. wandb/vendor/pygments/lexers/testing.py +207 -0
  730. wandb/vendor/pygments/lexers/text.py +25 -0
  731. wandb/vendor/pygments/lexers/textedit.py +169 -0
  732. wandb/vendor/pygments/lexers/textfmts.py +297 -0
  733. wandb/vendor/pygments/lexers/theorem.py +458 -0
  734. wandb/vendor/pygments/lexers/trafficscript.py +54 -0
  735. wandb/vendor/pygments/lexers/typoscript.py +226 -0
  736. wandb/vendor/pygments/lexers/urbi.py +133 -0
  737. wandb/vendor/pygments/lexers/varnish.py +190 -0
  738. wandb/vendor/pygments/lexers/verification.py +111 -0
  739. wandb/vendor/pygments/lexers/web.py +24 -0
  740. wandb/vendor/pygments/lexers/webmisc.py +988 -0
  741. wandb/vendor/pygments/lexers/whiley.py +116 -0
  742. wandb/vendor/pygments/lexers/x10.py +69 -0
  743. wandb/vendor/pygments/modeline.py +44 -0
  744. wandb/vendor/pygments/plugin.py +68 -0
  745. wandb/vendor/pygments/regexopt.py +92 -0
  746. wandb/vendor/pygments/scanner.py +105 -0
  747. wandb/vendor/pygments/sphinxext.py +158 -0
  748. wandb/vendor/pygments/style.py +155 -0
  749. wandb/vendor/pygments/styles/__init__.py +80 -0
  750. wandb/vendor/pygments/styles/abap.py +29 -0
  751. wandb/vendor/pygments/styles/algol.py +63 -0
  752. wandb/vendor/pygments/styles/algol_nu.py +63 -0
  753. wandb/vendor/pygments/styles/arduino.py +98 -0
  754. wandb/vendor/pygments/styles/autumn.py +65 -0
  755. wandb/vendor/pygments/styles/borland.py +51 -0
  756. wandb/vendor/pygments/styles/bw.py +49 -0
  757. wandb/vendor/pygments/styles/colorful.py +81 -0
  758. wandb/vendor/pygments/styles/default.py +73 -0
  759. wandb/vendor/pygments/styles/emacs.py +72 -0
  760. wandb/vendor/pygments/styles/friendly.py +72 -0
  761. wandb/vendor/pygments/styles/fruity.py +42 -0
  762. wandb/vendor/pygments/styles/igor.py +29 -0
  763. wandb/vendor/pygments/styles/lovelace.py +97 -0
  764. wandb/vendor/pygments/styles/manni.py +75 -0
  765. wandb/vendor/pygments/styles/monokai.py +106 -0
  766. wandb/vendor/pygments/styles/murphy.py +80 -0
  767. wandb/vendor/pygments/styles/native.py +65 -0
  768. wandb/vendor/pygments/styles/paraiso_dark.py +125 -0
  769. wandb/vendor/pygments/styles/paraiso_light.py +125 -0
  770. wandb/vendor/pygments/styles/pastie.py +75 -0
  771. wandb/vendor/pygments/styles/perldoc.py +69 -0
  772. wandb/vendor/pygments/styles/rainbow_dash.py +89 -0
  773. wandb/vendor/pygments/styles/rrt.py +33 -0
  774. wandb/vendor/pygments/styles/sas.py +44 -0
  775. wandb/vendor/pygments/styles/stata.py +40 -0
  776. wandb/vendor/pygments/styles/tango.py +141 -0
  777. wandb/vendor/pygments/styles/trac.py +63 -0
  778. wandb/vendor/pygments/styles/vim.py +63 -0
  779. wandb/vendor/pygments/styles/vs.py +38 -0
  780. wandb/vendor/pygments/styles/xcode.py +51 -0
  781. wandb/vendor/pygments/token.py +213 -0
  782. wandb/vendor/pygments/unistring.py +217 -0
  783. wandb/vendor/pygments/util.py +388 -0
  784. wandb/vendor/pynvml/__init__.py +0 -0
  785. wandb/vendor/pynvml/pynvml.py +4779 -0
  786. wandb/vendor/watchdog_0_9_0/wandb_watchdog/__init__.py +17 -0
  787. wandb/vendor/watchdog_0_9_0/wandb_watchdog/events.py +615 -0
  788. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/__init__.py +98 -0
  789. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/api.py +369 -0
  790. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents.py +172 -0
  791. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents2.py +239 -0
  792. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify.py +218 -0
  793. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_buffer.py +81 -0
  794. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_c.py +575 -0
  795. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/kqueue.py +730 -0
  796. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/polling.py +145 -0
  797. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/read_directory_changes.py +133 -0
  798. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/winapi.py +348 -0
  799. wandb/vendor/watchdog_0_9_0/wandb_watchdog/patterns.py +265 -0
  800. wandb/vendor/watchdog_0_9_0/wandb_watchdog/tricks/__init__.py +174 -0
  801. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/__init__.py +151 -0
  802. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/bricks.py +249 -0
  803. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/compat.py +29 -0
  804. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/decorators.py +198 -0
  805. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/delayed_queue.py +88 -0
  806. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/dirsnapshot.py +293 -0
  807. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/echo.py +157 -0
  808. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/event_backport.py +41 -0
  809. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py +40 -0
  810. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py +57 -0
  811. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py +64 -0
  812. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py +123 -0
  813. wandb/vendor/watchdog_0_9_0/wandb_watchdog/version.py +28 -0
  814. wandb/vendor/watchdog_0_9_0/wandb_watchdog/watchmedo.py +577 -0
  815. wandb/wandb_agent.py +588 -0
  816. wandb/wandb_controller.py +719 -0
  817. wandb/wandb_run.py +9 -0
  818. wandb-0.19.1rc1.dist-info/METADATA +223 -0
  819. wandb-0.19.1rc1.dist-info/RECORD +822 -0
  820. wandb-0.19.1rc1.dist-info/WHEEL +5 -0
  821. wandb-0.19.1rc1.dist-info/entry_points.txt +3 -0
  822. wandb-0.19.1rc1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,1658 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: wandb/proto/wandb_internal.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
16
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
17
+ from wandb.proto import wandb_base_pb2 as wandb_dot_proto_dot_wandb__base__pb2
18
+ from wandb.proto import wandb_telemetry_pb2 as wandb_dot_proto_dot_wandb__telemetry__pb2
19
+
20
+
21
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n wandb/proto/wandb_internal.proto\x12\x0ewandb_internal\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cwandb/proto/wandb_base.proto\x1a!wandb/proto/wandb_telemetry.proto\"\x95\t\n\x06Record\x12\x0b\n\x03num\x18\x01 \x01(\x03\x12\x30\n\x07history\x18\x02 \x01(\x0b\x32\x1d.wandb_internal.HistoryRecordH\x00\x12\x30\n\x07summary\x18\x03 \x01(\x0b\x32\x1d.wandb_internal.SummaryRecordH\x00\x12.\n\x06output\x18\x04 \x01(\x0b\x32\x1c.wandb_internal.OutputRecordH\x00\x12.\n\x06\x63onfig\x18\x05 \x01(\x0b\x32\x1c.wandb_internal.ConfigRecordH\x00\x12,\n\x05\x66iles\x18\x06 \x01(\x0b\x32\x1b.wandb_internal.FilesRecordH\x00\x12,\n\x05stats\x18\x07 \x01(\x0b\x32\x1b.wandb_internal.StatsRecordH\x00\x12\x32\n\x08\x61rtifact\x18\x08 \x01(\x0b\x32\x1e.wandb_internal.ArtifactRecordH\x00\x12,\n\x08tbrecord\x18\t \x01(\x0b\x32\x18.wandb_internal.TBRecordH\x00\x12,\n\x05\x61lert\x18\n \x01(\x0b\x32\x1b.wandb_internal.AlertRecordH\x00\x12\x34\n\ttelemetry\x18\x0b \x01(\x0b\x32\x1f.wandb_internal.TelemetryRecordH\x00\x12.\n\x06metric\x18\x0c \x01(\x0b\x32\x1c.wandb_internal.MetricRecordH\x00\x12\x35\n\noutput_raw\x18\r \x01(\x0b\x32\x1f.wandb_internal.OutputRawRecordH\x00\x12(\n\x03run\x18\x11 \x01(\x0b\x32\x19.wandb_internal.RunRecordH\x00\x12-\n\x04\x65xit\x18\x12 \x01(\x0b\x32\x1d.wandb_internal.RunExitRecordH\x00\x12,\n\x05\x66inal\x18\x14 \x01(\x0b\x32\x1b.wandb_internal.FinalRecordH\x00\x12.\n\x06header\x18\x15 \x01(\x0b\x32\x1c.wandb_internal.HeaderRecordH\x00\x12.\n\x06\x66ooter\x18\x16 \x01(\x0b\x32\x1c.wandb_internal.FooterRecordH\x00\x12\x39\n\npreempting\x18\x17 \x01(\x0b\x32#.wandb_internal.RunPreemptingRecordH\x00\x12\x34\n\x12noop_link_artifact\x18\x18 \x01(\x0b\x32\x16.google.protobuf.EmptyH\x00\x12\x39\n\x0cuse_artifact\x18\x19 \x01(\x0b\x32!.wandb_internal.UseArtifactRecordH\x00\x12*\n\x07request\x18\x64 \x01(\x0b\x32\x17.wandb_internal.RequestH\x00\x12(\n\x07\x63ontrol\x18\x10 \x01(\x0b\x32\x17.wandb_internal.Control\x12\x0c\n\x04uuid\x18\x13 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfoB\r\n\x0brecord_type\"\xa8\x01\n\x07\x43ontrol\x12\x10\n\x08req_resp\x18\x01 \x01(\x08\x12\r\n\x05local\x18\x02 \x01(\x08\x12\x10\n\x08relay_id\x18\x03 \x01(\t\x12\x14\n\x0cmailbox_slot\x18\x04 \x01(\t\x12\x13\n\x0b\x61lways_send\x18\x05 \x01(\x08\x12\x14\n\x0c\x66low_control\x18\x06 \x01(\x08\x12\x12\n\nend_offset\x18\x07 \x01(\x03\x12\x15\n\rconnection_id\x18\x08 \x01(\t\"\xf3\x03\n\x06Result\x12\x35\n\nrun_result\x18\x11 \x01(\x0b\x32\x1f.wandb_internal.RunUpdateResultH\x00\x12\x34\n\x0b\x65xit_result\x18\x12 \x01(\x0b\x32\x1d.wandb_internal.RunExitResultH\x00\x12\x33\n\nlog_result\x18\x14 \x01(\x0b\x32\x1d.wandb_internal.HistoryResultH\x00\x12\x37\n\x0esummary_result\x18\x15 \x01(\x0b\x32\x1d.wandb_internal.SummaryResultH\x00\x12\x35\n\routput_result\x18\x16 \x01(\x0b\x32\x1c.wandb_internal.OutputResultH\x00\x12\x35\n\rconfig_result\x18\x17 \x01(\x0b\x32\x1c.wandb_internal.ConfigResultH\x00\x12,\n\x08response\x18\x64 \x01(\x0b\x32\x18.wandb_internal.ResponseH\x00\x12(\n\x07\x63ontrol\x18\x10 \x01(\x0b\x32\x17.wandb_internal.Control\x12\x0c\n\x04uuid\x18\x18 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._ResultInfoB\r\n\x0bresult_type\":\n\x0b\x46inalRecord\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"b\n\x0bVersionInfo\x12\x10\n\x08producer\x18\x01 \x01(\t\x12\x14\n\x0cmin_consumer\x18\x02 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"n\n\x0cHeaderRecord\x12\x31\n\x0cversion_info\x18\x01 \x01(\x0b\x32\x1b.wandb_internal.VersionInfo\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\";\n\x0c\x46ooterRecord\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\xde\x04\n\tRunRecord\x12\x0e\n\x06run_id\x18\x01 \x01(\t\x12\x0e\n\x06\x65ntity\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12,\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\x1c.wandb_internal.ConfigRecord\x12.\n\x07summary\x18\x05 \x01(\x0b\x32\x1d.wandb_internal.SummaryRecord\x12\x11\n\trun_group\x18\x06 \x01(\t\x12\x10\n\x08job_type\x18\x07 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x08 \x01(\t\x12\r\n\x05notes\x18\t \x01(\t\x12\x0c\n\x04tags\x18\n \x03(\t\x12\x30\n\x08settings\x18\x0b \x01(\x0b\x32\x1e.wandb_internal.SettingsRecord\x12\x10\n\x08sweep_id\x18\x0c \x01(\t\x12\x0c\n\x04host\x18\r \x01(\t\x12\x15\n\rstarting_step\x18\x0e \x01(\x03\x12\x12\n\nstorage_id\x18\x10 \x01(\t\x12.\n\nstart_time\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07resumed\x18\x12 \x01(\x08\x12\x32\n\ttelemetry\x18\x13 \x01(\x0b\x32\x1f.wandb_internal.TelemetryRecord\x12\x0f\n\x07runtime\x18\x14 \x01(\x05\x12*\n\x03git\x18\x15 \x01(\x0b\x32\x1d.wandb_internal.GitRepoRecord\x12\x0e\n\x06\x66orked\x18\x16 \x01(\x08\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\";\n\rGitRepoRecord\x12\x1a\n\nremote_url\x18\x01 \x01(\tR\x06remote\x12\x0e\n\x06\x63ommit\x18\x02 \x01(\t\"c\n\x0fRunUpdateResult\x12&\n\x03run\x18\x01 \x01(\x0b\x32\x19.wandb_internal.RunRecord\x12(\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x19.wandb_internal.ErrorInfo\"\xac\x01\n\tErrorInfo\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x31\n\x04\x63ode\x18\x02 \x01(\x0e\x32#.wandb_internal.ErrorInfo.ErrorCode\"[\n\tErrorCode\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x11\n\rCOMMUNICATION\x10\x01\x12\x12\n\x0e\x41UTHENTICATION\x10\x02\x12\t\n\x05USAGE\x10\x03\x12\x0f\n\x0bUNSUPPORTED\x10\x04\"`\n\rRunExitRecord\x12\x11\n\texit_code\x18\x01 \x01(\x05\x12\x0f\n\x07runtime\x18\x02 \x01(\x05\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x0f\n\rRunExitResult\"B\n\x13RunPreemptingRecord\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x15\n\x13RunPreemptingResult\"i\n\x0eSettingsRecord\x12*\n\x04item\x18\x01 \x03(\x0b\x32\x1c.wandb_internal.SettingsItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"/\n\x0cSettingsItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\x1a\n\x0bHistoryStep\x12\x0b\n\x03num\x18\x01 \x01(\x03\"\x92\x01\n\rHistoryRecord\x12)\n\x04item\x18\x01 \x03(\x0b\x32\x1b.wandb_internal.HistoryItem\x12)\n\x04step\x18\x02 \x01(\x0b\x32\x1b.wandb_internal.HistoryStep\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"B\n\x0bHistoryItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nnested_key\x18\x02 \x03(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\x0f\n\rHistoryResult\"\xdc\x01\n\x0cOutputRecord\x12<\n\x0boutput_type\x18\x01 \x01(\x0e\x32\'.wandb_internal.OutputRecord.OutputType\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04line\x18\x03 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"$\n\nOutputType\x12\n\n\x06STDERR\x10\x00\x12\n\n\x06STDOUT\x10\x01\"\x0e\n\x0cOutputResult\"\xe2\x01\n\x0fOutputRawRecord\x12?\n\x0boutput_type\x18\x01 \x01(\x0e\x32*.wandb_internal.OutputRawRecord.OutputType\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04line\x18\x03 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"$\n\nOutputType\x12\n\n\x06STDERR\x10\x00\x12\n\n\x06STDOUT\x10\x01\"\x11\n\x0fOutputRawResult\"\x98\x03\n\x0cMetricRecord\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\tglob_name\x18\x02 \x01(\t\x12\x13\n\x0bstep_metric\x18\x04 \x01(\t\x12\x19\n\x11step_metric_index\x18\x05 \x01(\x05\x12.\n\x07options\x18\x06 \x01(\x0b\x32\x1d.wandb_internal.MetricOptions\x12.\n\x07summary\x18\x07 \x01(\x0b\x32\x1d.wandb_internal.MetricSummary\x12\x35\n\x04goal\x18\x08 \x01(\x0e\x32\'.wandb_internal.MetricRecord.MetricGoal\x12/\n\x08_control\x18\t \x01(\x0b\x32\x1d.wandb_internal.MetricControl\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"B\n\nMetricGoal\x12\x0e\n\nGOAL_UNSET\x10\x00\x12\x11\n\rGOAL_MINIMIZE\x10\x01\x12\x11\n\rGOAL_MAXIMIZE\x10\x02\"\x0e\n\x0cMetricResult\"C\n\rMetricOptions\x12\x11\n\tstep_sync\x18\x01 \x01(\x08\x12\x0e\n\x06hidden\x18\x02 \x01(\x08\x12\x0f\n\x07\x64\x65\x66ined\x18\x03 \x01(\x08\"\"\n\rMetricControl\x12\x11\n\toverwrite\x18\x01 \x01(\x08\"o\n\rMetricSummary\x12\x0b\n\x03min\x18\x01 \x01(\x08\x12\x0b\n\x03max\x18\x02 \x01(\x08\x12\x0c\n\x04mean\x18\x03 \x01(\x08\x12\x0c\n\x04\x62\x65st\x18\x04 \x01(\x08\x12\x0c\n\x04last\x18\x05 \x01(\x08\x12\x0c\n\x04none\x18\x06 \x01(\x08\x12\x0c\n\x04\x63opy\x18\x07 \x01(\x08\"\x93\x01\n\x0c\x43onfigRecord\x12*\n\x06update\x18\x01 \x03(\x0b\x32\x1a.wandb_internal.ConfigItem\x12*\n\x06remove\x18\x02 \x03(\x0b\x32\x1a.wandb_internal.ConfigItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"A\n\nConfigItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nnested_key\x18\x02 \x03(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\x0e\n\x0c\x43onfigResult\"\x96\x01\n\rSummaryRecord\x12+\n\x06update\x18\x01 \x03(\x0b\x32\x1b.wandb_internal.SummaryItem\x12+\n\x06remove\x18\x02 \x03(\x0b\x32\x1b.wandb_internal.SummaryItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"B\n\x0bSummaryItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nnested_key\x18\x02 \x03(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\x0f\n\rSummaryResult\"d\n\x0b\x46ilesRecord\x12(\n\x05\x66iles\x18\x01 \x03(\x0b\x32\x19.wandb_internal.FilesItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\xec\x01\n\tFilesItem\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x34\n\x06policy\x18\x02 \x01(\x0e\x32$.wandb_internal.FilesItem.PolicyType\x12\x30\n\x04type\x18\x03 \x01(\x0e\x32\".wandb_internal.FilesItem.FileType\"(\n\nPolicyType\x12\x07\n\x03NOW\x10\x00\x12\x07\n\x03\x45ND\x10\x01\x12\x08\n\x04LIVE\x10\x02\"9\n\x08\x46ileType\x12\t\n\x05OTHER\x10\x00\x12\t\n\x05WANDB\x10\x01\x12\t\n\x05MEDIA\x10\x02\x12\x0c\n\x08\x41RTIFACT\x10\x03J\x04\x08\x10\x10\x11\"\r\n\x0b\x46ilesResult\"\xe6\x01\n\x0bStatsRecord\x12\x39\n\nstats_type\x18\x01 \x01(\x0e\x32%.wandb_internal.StatsRecord.StatsType\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\'\n\x04item\x18\x03 \x03(\x0b\x32\x19.wandb_internal.StatsItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x17\n\tStatsType\x12\n\n\x06SYSTEM\x10\x00\",\n\tStatsItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\xe7\x03\n\x0e\x41rtifactRecord\x12\x0e\n\x06run_id\x18\x01 \x01(\t\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06\x65ntity\x18\x03 \x01(\t\x12\x0c\n\x04type\x18\x04 \x01(\t\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x0e\n\x06\x64igest\x18\x06 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x07 \x01(\t\x12\x10\n\x08metadata\x18\x08 \x01(\t\x12\x14\n\x0cuser_created\x18\t \x01(\x08\x12\x18\n\x10use_after_commit\x18\n \x01(\x08\x12\x0f\n\x07\x61liases\x18\x0b \x03(\t\x12\x32\n\x08manifest\x18\x0c \x01(\x0b\x32 .wandb_internal.ArtifactManifest\x12\x16\n\x0e\x64istributed_id\x18\r \x01(\t\x12\x10\n\x08\x66inalize\x18\x0e \x01(\x08\x12\x11\n\tclient_id\x18\x0f \x01(\t\x12\x1a\n\x12sequence_client_id\x18\x10 \x01(\t\x12\x0f\n\x07\x62\x61se_id\x18\x11 \x01(\t\x12\x1c\n\x14ttl_duration_seconds\x18\x12 \x01(\x03\x12\x0c\n\x04tags\x18\x13 \x03(\t\x12\x19\n\x11incremental_beta1\x18\x64 \x01(\x08\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\xd8\x01\n\x10\x41rtifactManifest\x12\x0f\n\x07version\x18\x01 \x01(\x05\x12\x16\n\x0estorage_policy\x18\x02 \x01(\t\x12\x46\n\x15storage_policy_config\x18\x03 \x03(\x0b\x32\'.wandb_internal.StoragePolicyConfigItem\x12\x37\n\x08\x63ontents\x18\x04 \x03(\x0b\x32%.wandb_internal.ArtifactManifestEntry\x12\x1a\n\x12manifest_file_path\x18\x05 \x01(\t\"\xcf\x01\n\x15\x41rtifactManifestEntry\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0e\n\x06\x64igest\x18\x02 \x01(\t\x12\x0b\n\x03ref\x18\x03 \x01(\t\x12\x0c\n\x04size\x18\x04 \x01(\x03\x12\x10\n\x08mimetype\x18\x05 \x01(\t\x12\x12\n\nlocal_path\x18\x06 \x01(\t\x12\x19\n\x11\x62irth_artifact_id\x18\x07 \x01(\t\x12\x12\n\nskip_cache\x18\x08 \x01(\x08\x12(\n\x05\x65xtra\x18\x10 \x03(\x0b\x32\x19.wandb_internal.ExtraItem\",\n\tExtraItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x02 \x01(\t\":\n\x17StoragePolicyConfigItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x02 \x01(\t\"\x10\n\x0e\x41rtifactResult\"\x14\n\x12LinkArtifactResult\"\xf0\x01\n\x13LinkArtifactRequest\x12\x11\n\tclient_id\x18\x01 \x01(\t\x12\x11\n\tserver_id\x18\x02 \x01(\t\x12\x16\n\x0eportfolio_name\x18\x03 \x01(\t\x12\x18\n\x10portfolio_entity\x18\x04 \x01(\t\x12\x19\n\x11portfolio_project\x18\x05 \x01(\t\x12\x19\n\x11portfolio_aliases\x18\x06 \x03(\t\x12\x1e\n\x16portfolio_organization\x18\x07 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"-\n\x14LinkArtifactResponse\x12\x15\n\rerror_message\x18\x01 \x01(\t\"h\n\x08TBRecord\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\x12\x0f\n\x07log_dir\x18\x01 \x01(\t\x12\x10\n\x08root_dir\x18\x03 \x01(\t\x12\x0c\n\x04save\x18\x02 \x01(\x08\"\n\n\x08TBResult\"}\n\x0b\x41lertRecord\x12\r\n\x05title\x18\x01 \x01(\t\x12\x0c\n\x04text\x18\x02 \x01(\t\x12\r\n\x05level\x18\x03 \x01(\t\x12\x15\n\rwait_duration\x18\x04 \x01(\x03\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\r\n\x0b\x41lertResult\"\xcc\x10\n\x07Request\x12\x38\n\x0bstop_status\x18\x01 \x01(\x0b\x32!.wandb_internal.StopStatusRequestH\x00\x12>\n\x0enetwork_status\x18\x02 \x01(\x0b\x32$.wandb_internal.NetworkStatusRequestH\x00\x12-\n\x05\x64\x65\x66\x65r\x18\x03 \x01(\x0b\x32\x1c.wandb_internal.DeferRequestH\x00\x12\x38\n\x0bget_summary\x18\x04 \x01(\x0b\x32!.wandb_internal.GetSummaryRequestH\x00\x12-\n\x05login\x18\x05 \x01(\x0b\x32\x1c.wandb_internal.LoginRequestH\x00\x12-\n\x05pause\x18\x06 \x01(\x0b\x32\x1c.wandb_internal.PauseRequestH\x00\x12/\n\x06resume\x18\x07 \x01(\x0b\x32\x1d.wandb_internal.ResumeRequestH\x00\x12\x34\n\tpoll_exit\x18\x08 \x01(\x0b\x32\x1f.wandb_internal.PollExitRequestH\x00\x12@\n\x0fsampled_history\x18\t \x01(\x0b\x32%.wandb_internal.SampledHistoryRequestH\x00\x12@\n\x0fpartial_history\x18\n \x01(\x0b\x32%.wandb_internal.PartialHistoryRequestH\x00\x12\x34\n\trun_start\x18\x0b \x01(\x0b\x32\x1f.wandb_internal.RunStartRequestH\x00\x12<\n\rcheck_version\x18\x0c \x01(\x0b\x32#.wandb_internal.CheckVersionRequestH\x00\x12:\n\x0clog_artifact\x18\r \x01(\x0b\x32\".wandb_internal.LogArtifactRequestH\x00\x12\x44\n\x11\x64ownload_artifact\x18\x0e \x01(\x0b\x32\'.wandb_internal.DownloadArtifactRequestH\x00\x12\x35\n\tkeepalive\x18\x11 \x01(\x0b\x32 .wandb_internal.KeepaliveRequestH\x00\x12\x36\n\nrun_status\x18\x14 \x01(\x0b\x32 .wandb_internal.RunStatusRequestH\x00\x12/\n\x06\x63\x61ncel\x18\x15 \x01(\x0b\x32\x1d.wandb_internal.CancelRequestH\x00\x12\x33\n\x08metadata\x18\x16 \x01(\x0b\x32\x1f.wandb_internal.MetadataRequestH\x00\x12\x44\n\x11internal_messages\x18\x17 \x01(\x0b\x32\'.wandb_internal.InternalMessagesRequestH\x00\x12@\n\x0fpython_packages\x18\x18 \x01(\x0b\x32%.wandb_internal.PythonPackagesRequestH\x00\x12\x33\n\x08shutdown\x18@ \x01(\x0b\x32\x1f.wandb_internal.ShutdownRequestH\x00\x12/\n\x06\x61ttach\x18\x41 \x01(\x0b\x32\x1d.wandb_internal.AttachRequestH\x00\x12/\n\x06status\x18\x42 \x01(\x0b\x32\x1d.wandb_internal.StatusRequestH\x00\x12\x38\n\x0bserver_info\x18\x43 \x01(\x0b\x32!.wandb_internal.ServerInfoRequestH\x00\x12\x38\n\x0bsender_mark\x18\x44 \x01(\x0b\x32!.wandb_internal.SenderMarkRequestH\x00\x12\x38\n\x0bsender_read\x18\x45 \x01(\x0b\x32!.wandb_internal.SenderReadRequestH\x00\x12<\n\rstatus_report\x18\x46 \x01(\x0b\x32#.wandb_internal.StatusReportRequestH\x00\x12>\n\x0esummary_record\x18G \x01(\x0b\x32$.wandb_internal.SummaryRecordRequestH\x00\x12\x42\n\x10telemetry_record\x18H \x01(\x0b\x32&.wandb_internal.TelemetryRecordRequestH\x00\x12\x32\n\x08job_info\x18I \x01(\x0b\x32\x1e.wandb_internal.JobInfoRequestH\x00\x12\x45\n\x12get_system_metrics\x18J \x01(\x0b\x32\'.wandb_internal.GetSystemMetricsRequestH\x00\x12+\n\x04sync\x18L \x01(\x0b\x32\x1b.wandb_internal.SyncRequestH\x00\x12\x34\n\tjob_input\x18M \x01(\x0b\x32\x1f.wandb_internal.JobInputRequestH\x00\x12<\n\rlink_artifact\x18N \x01(\x0b\x32#.wandb_internal.LinkArtifactRequestH\x00\x12N\n\x17run_finish_without_exit\x18O \x01(\x0b\x32+.wandb_internal.RunFinishWithoutExitRequestH\x00\x12\x39\n\x0btest_inject\x18\xe8\x07 \x01(\x0b\x32!.wandb_internal.TestInjectRequestH\x00\x42\x0e\n\x0crequest_typeJ\x04\x08K\x10L\"\x84\r\n\x08Response\x12?\n\x12keepalive_response\x18\x12 \x01(\x0b\x32!.wandb_internal.KeepaliveResponseH\x00\x12\x42\n\x14stop_status_response\x18\x13 \x01(\x0b\x32\".wandb_internal.StopStatusResponseH\x00\x12H\n\x17network_status_response\x18\x14 \x01(\x0b\x32%.wandb_internal.NetworkStatusResponseH\x00\x12\x37\n\x0elogin_response\x18\x18 \x01(\x0b\x32\x1d.wandb_internal.LoginResponseH\x00\x12\x42\n\x14get_summary_response\x18\x19 \x01(\x0b\x32\".wandb_internal.GetSummaryResponseH\x00\x12>\n\x12poll_exit_response\x18\x1a \x01(\x0b\x32 .wandb_internal.PollExitResponseH\x00\x12J\n\x18sampled_history_response\x18\x1b \x01(\x0b\x32&.wandb_internal.SampledHistoryResponseH\x00\x12>\n\x12run_start_response\x18\x1c \x01(\x0b\x32 .wandb_internal.RunStartResponseH\x00\x12\x46\n\x16\x63heck_version_response\x18\x1d \x01(\x0b\x32$.wandb_internal.CheckVersionResponseH\x00\x12\x44\n\x15log_artifact_response\x18\x1e \x01(\x0b\x32#.wandb_internal.LogArtifactResponseH\x00\x12N\n\x1a\x64ownload_artifact_response\x18\x1f \x01(\x0b\x32(.wandb_internal.DownloadArtifactResponseH\x00\x12@\n\x13run_status_response\x18# \x01(\x0b\x32!.wandb_internal.RunStatusResponseH\x00\x12\x39\n\x0f\x63\x61ncel_response\x18$ \x01(\x0b\x32\x1e.wandb_internal.CancelResponseH\x00\x12N\n\x1ainternal_messages_response\x18% \x01(\x0b\x32(.wandb_internal.InternalMessagesResponseH\x00\x12=\n\x11shutdown_response\x18@ \x01(\x0b\x32 .wandb_internal.ShutdownResponseH\x00\x12\x39\n\x0f\x61ttach_response\x18\x41 \x01(\x0b\x32\x1e.wandb_internal.AttachResponseH\x00\x12\x39\n\x0fstatus_response\x18\x42 \x01(\x0b\x32\x1e.wandb_internal.StatusResponseH\x00\x12\x42\n\x14server_info_response\x18\x43 \x01(\x0b\x32\".wandb_internal.ServerInfoResponseH\x00\x12<\n\x11job_info_response\x18\x44 \x01(\x0b\x32\x1f.wandb_internal.JobInfoResponseH\x00\x12O\n\x1bget_system_metrics_response\x18\x45 \x01(\x0b\x32(.wandb_internal.GetSystemMetricsResponseH\x00\x12\x35\n\rsync_response\x18\x46 \x01(\x0b\x32\x1c.wandb_internal.SyncResponseH\x00\x12\x46\n\x16link_artifact_response\x18G \x01(\x0b\x32$.wandb_internal.LinkArtifactResponseH\x00\x12X\n run_finish_without_exit_response\x18H \x01(\x0b\x32,.wandb_internal.RunFinishWithoutExitResponseH\x00\x12\x43\n\x14test_inject_response\x18\xe8\x07 \x01(\x0b\x32\".wandb_internal.TestInjectResponseH\x00\x42\x0f\n\rresponse_type\"\xc0\x02\n\x0c\x44\x65\x66\x65rRequest\x12\x36\n\x05state\x18\x01 \x01(\x0e\x32\'.wandb_internal.DeferRequest.DeferState\"\xf7\x01\n\nDeferState\x12\t\n\x05\x42\x45GIN\x10\x00\x12\r\n\tFLUSH_RUN\x10\x01\x12\x0f\n\x0b\x46LUSH_STATS\x10\x02\x12\x19\n\x15\x46LUSH_PARTIAL_HISTORY\x10\x03\x12\x0c\n\x08\x46LUSH_TB\x10\x04\x12\r\n\tFLUSH_SUM\x10\x05\x12\x13\n\x0f\x46LUSH_DEBOUNCER\x10\x06\x12\x10\n\x0c\x46LUSH_OUTPUT\x10\x07\x12\r\n\tFLUSH_JOB\x10\x08\x12\r\n\tFLUSH_DIR\x10\t\x12\x0c\n\x08\x46LUSH_FP\x10\n\x12\x0b\n\x07JOIN_FP\x10\x0b\x12\x0c\n\x08\x46LUSH_FS\x10\x0c\x12\x0f\n\x0b\x46LUSH_FINAL\x10\r\x12\x07\n\x03\x45ND\x10\x0e\"<\n\x0cPauseRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x0f\n\rPauseResponse\"=\n\rResumeRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x10\n\x0eResumeResponse\"M\n\x0cLoginRequest\x12\x0f\n\x07\x61pi_key\x18\x01 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"&\n\rLoginResponse\x12\x15\n\ractive_entity\x18\x01 \x01(\t\"A\n\x11GetSummaryRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"?\n\x12GetSummaryResponse\x12)\n\x04item\x18\x01 \x03(\x0b\x32\x1b.wandb_internal.SummaryItem\"G\n\x17GetSystemMetricsRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"R\n\x12SystemMetricSample\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x01(\x02\"I\n\x13SystemMetricsBuffer\x12\x32\n\x06record\x18\x01 \x03(\x0b\x32\".wandb_internal.SystemMetricSample\"\xca\x01\n\x18GetSystemMetricsResponse\x12S\n\x0esystem_metrics\x18\x01 \x03(\x0b\x32;.wandb_internal.GetSystemMetricsResponse.SystemMetricsEntry\x1aY\n\x12SystemMetricsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.wandb_internal.SystemMetricsBuffer:\x02\x38\x01\"=\n\rStatusRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\")\n\x0eStatusResponse\x12\x17\n\x0frun_should_stop\x18\x01 \x01(\x08\"A\n\x11StopStatusRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"-\n\x12StopStatusResponse\x12\x17\n\x0frun_should_stop\x18\x01 \x01(\x08\"D\n\x14NetworkStatusRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"P\n\x15NetworkStatusResponse\x12\x37\n\x11network_responses\x18\x01 \x03(\x0b\x32\x1c.wandb_internal.HttpResponse\"D\n\x0cHttpResponse\x12\x18\n\x10http_status_code\x18\x01 \x01(\x05\x12\x1a\n\x12http_response_text\x18\x02 \x01(\t\"G\n\x17InternalMessagesRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"N\n\x18InternalMessagesResponse\x12\x32\n\x08messages\x18\x01 \x01(\x0b\x32 .wandb_internal.InternalMessages\"#\n\x10InternalMessages\x12\x0f\n\x07warning\x18\x01 \x03(\t\"?\n\x0fPollExitRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\xf5\x01\n\x10PollExitResponse\x12\x0c\n\x04\x64one\x18\x01 \x01(\x08\x12\x32\n\x0b\x65xit_result\x18\x02 \x01(\x0b\x32\x1d.wandb_internal.RunExitResult\x12\x35\n\x0cpusher_stats\x18\x03 \x01(\x0b\x32\x1f.wandb_internal.FilePusherStats\x12/\n\x0b\x66ile_counts\x18\x04 \x01(\x0b\x32\x1a.wandb_internal.FileCounts\x12\x37\n\x0foperation_stats\x18\x05 \x01(\x0b\x32\x1e.wandb_internal.OperationStats\"Y\n\x0eOperationStats\x12-\n\noperations\x18\x01 \x03(\x0b\x32\x19.wandb_internal.Operation\x12\x18\n\x10total_operations\x18\x02 \x01(\x03\"\x87\x01\n\tOperation\x12\x0c\n\x04\x64\x65sc\x18\x01 \x01(\t\x12\x17\n\x0fruntime_seconds\x18\x02 \x01(\x01\x12\x10\n\x08progress\x18\x03 \x01(\t\x12\x14\n\x0c\x65rror_status\x18\x04 \x01(\t\x12+\n\x08subtasks\x18\x05 \x03(\x0b\x32\x19.wandb_internal.Operation\"@\n\rSyncOverwrite\x12\x0e\n\x06run_id\x18\x01 \x01(\t\x12\x0e\n\x06\x65ntity\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\"\x1e\n\x08SyncSkip\x12\x12\n\noutput_raw\x18\x01 \x01(\x08\"\x13\n\x11SenderMarkRequest\"\x93\x01\n\x0bSyncRequest\x12\x14\n\x0cstart_offset\x18\x01 \x01(\x03\x12\x14\n\x0c\x66inal_offset\x18\x02 \x01(\x03\x12\x30\n\toverwrite\x18\x03 \x01(\x0b\x32\x1d.wandb_internal.SyncOverwrite\x12&\n\x04skip\x18\x04 \x01(\x0b\x32\x18.wandb_internal.SyncSkip\"E\n\x0cSyncResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12(\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x19.wandb_internal.ErrorInfo\"?\n\x11SenderReadRequest\x12\x14\n\x0cstart_offset\x18\x01 \x01(\x03\x12\x14\n\x0c\x66inal_offset\x18\x02 \x01(\x03\"m\n\x13StatusReportRequest\x12\x12\n\nrecord_num\x18\x01 \x01(\x03\x12\x13\n\x0bsent_offset\x18\x02 \x01(\x03\x12-\n\tsync_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"F\n\x14SummaryRecordRequest\x12.\n\x07summary\x18\x01 \x01(\x0b\x32\x1d.wandb_internal.SummaryRecord\"L\n\x16TelemetryRecordRequest\x12\x32\n\ttelemetry\x18\x01 \x01(\x0b\x32\x1f.wandb_internal.TelemetryRecord\"A\n\x11ServerInfoRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"|\n\x12ServerInfoResponse\x12-\n\nlocal_info\x18\x01 \x01(\x0b\x32\x19.wandb_internal.LocalInfo\x12\x37\n\x0fserver_messages\x18\x02 \x01(\x0b\x32\x1e.wandb_internal.ServerMessages\"=\n\x0eServerMessages\x12+\n\x04item\x18\x01 \x03(\x0b\x32\x1d.wandb_internal.ServerMessage\"e\n\rServerMessage\x12\x12\n\nplain_text\x18\x01 \x01(\t\x12\x10\n\x08utf_text\x18\x02 \x01(\t\x12\x11\n\thtml_text\x18\x03 \x01(\t\x12\x0c\n\x04type\x18\x04 \x01(\t\x12\r\n\x05level\x18\x05 \x01(\x05\"c\n\nFileCounts\x12\x13\n\x0bwandb_count\x18\x01 \x01(\x05\x12\x13\n\x0bmedia_count\x18\x02 \x01(\x05\x12\x16\n\x0e\x61rtifact_count\x18\x03 \x01(\x05\x12\x13\n\x0bother_count\x18\x04 \x01(\x05\"U\n\x0f\x46ilePusherStats\x12\x16\n\x0euploaded_bytes\x18\x01 \x01(\x03\x12\x13\n\x0btotal_bytes\x18\x02 \x01(\x03\x12\x15\n\rdeduped_bytes\x18\x03 \x01(\x03\"\x1e\n\rFilesUploaded\x12\r\n\x05\x66iles\x18\x01 \x03(\t\"\xf4\x01\n\x17\x46ileTransferInfoRequest\x12\x42\n\x04type\x18\x01 \x01(\x0e\x32\x34.wandb_internal.FileTransferInfoRequest.TransferType\x12\x0c\n\x04path\x18\x02 \x01(\t\x12\x0b\n\x03url\x18\x03 \x01(\t\x12\x0c\n\x04size\x18\x04 \x01(\x03\x12\x11\n\tprocessed\x18\x05 \x01(\x03\x12/\n\x0b\x66ile_counts\x18\x06 \x01(\x0b\x32\x1a.wandb_internal.FileCounts\"(\n\x0cTransferType\x12\n\n\x06Upload\x10\x00\x12\x0c\n\x08\x44ownload\x10\x01\"1\n\tLocalInfo\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0bout_of_date\x18\x02 \x01(\x08\"?\n\x0fShutdownRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x12\n\x10ShutdownResponse\"P\n\rAttachRequest\x12\x11\n\tattach_id\x18\x14 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"b\n\x0e\x41ttachResponse\x12&\n\x03run\x18\x01 \x01(\x0b\x32\x19.wandb_internal.RunRecord\x12(\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x19.wandb_internal.ErrorInfo\"\xd5\x02\n\x11TestInjectRequest\x12\x13\n\x0bhandler_exc\x18\x01 \x01(\x08\x12\x14\n\x0chandler_exit\x18\x02 \x01(\x08\x12\x15\n\rhandler_abort\x18\x03 \x01(\x08\x12\x12\n\nsender_exc\x18\x04 \x01(\x08\x12\x13\n\x0bsender_exit\x18\x05 \x01(\x08\x12\x14\n\x0csender_abort\x18\x06 \x01(\x08\x12\x0f\n\x07req_exc\x18\x07 \x01(\x08\x12\x10\n\x08req_exit\x18\x08 \x01(\x08\x12\x11\n\treq_abort\x18\t \x01(\x08\x12\x10\n\x08resp_exc\x18\n \x01(\x08\x12\x11\n\tresp_exit\x18\x0b \x01(\x08\x12\x12\n\nresp_abort\x18\x0c \x01(\x08\x12\x10\n\x08msg_drop\x18\r \x01(\x08\x12\x10\n\x08msg_hang\x18\x0e \x01(\x08\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x14\n\x12TestInjectResponse\"\x1e\n\rHistoryAction\x12\r\n\x05\x66lush\x18\x01 \x01(\x08\"\xca\x01\n\x15PartialHistoryRequest\x12)\n\x04item\x18\x01 \x03(\x0b\x32\x1b.wandb_internal.HistoryItem\x12)\n\x04step\x18\x02 \x01(\x0b\x32\x1b.wandb_internal.HistoryStep\x12-\n\x06\x61\x63tion\x18\x03 \x01(\x0b\x32\x1d.wandb_internal.HistoryAction\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x18\n\x16PartialHistoryResponse\"E\n\x15SampledHistoryRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"_\n\x12SampledHistoryItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nnested_key\x18\x02 \x03(\t\x12\x14\n\x0cvalues_float\x18\x03 \x03(\x02\x12\x12\n\nvalues_int\x18\x04 \x03(\x03\"J\n\x16SampledHistoryResponse\x12\x30\n\x04item\x18\x01 \x03(\x0b\x32\".wandb_internal.SampledHistoryItem\"@\n\x10RunStatusRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"x\n\x11RunStatusResponse\x12\x18\n\x10sync_items_total\x18\x01 \x01(\x03\x12\x1a\n\x12sync_items_pending\x18\x02 \x01(\x03\x12-\n\tsync_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"g\n\x0fRunStartRequest\x12&\n\x03run\x18\x01 \x01(\x0b\x32\x19.wandb_internal.RunRecord\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x12\n\x10RunStartResponse\"K\n\x1bRunFinishWithoutExitRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x1e\n\x1cRunFinishWithoutExitResponse\"\\\n\x13\x43heckVersionRequest\x12\x17\n\x0f\x63urrent_version\x18\x01 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"]\n\x14\x43heckVersionResponse\x12\x17\n\x0fupgrade_message\x18\x01 \x01(\t\x12\x14\n\x0cyank_message\x18\x02 \x01(\t\x12\x16\n\x0e\x64\x65lete_message\x18\x03 \x01(\t\">\n\x0eJobInfoRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"6\n\x0fJobInfoResponse\x12\x12\n\nsequenceId\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\"\x9f\x01\n\x12LogArtifactRequest\x12\x30\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x1e.wandb_internal.ArtifactRecord\x12\x14\n\x0chistory_step\x18\x02 \x01(\x03\x12\x13\n\x0bstaging_dir\x18\x03 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"A\n\x13LogArtifactResponse\x12\x13\n\x0b\x61rtifact_id\x18\x01 \x01(\t\x12\x15\n\rerror_message\x18\x02 \x01(\t\"\xbe\x01\n\x17\x44ownloadArtifactRequest\x12\x13\n\x0b\x61rtifact_id\x18\x01 \x01(\t\x12\x15\n\rdownload_root\x18\x02 \x01(\t\x12 \n\x18\x61llow_missing_references\x18\x04 \x01(\x08\x12\x12\n\nskip_cache\x18\x05 \x01(\x08\x12\x13\n\x0bpath_prefix\x18\x06 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"1\n\x18\x44ownloadArtifactResponse\x12\x15\n\rerror_message\x18\x01 \x01(\t\"@\n\x10KeepaliveRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x13\n\x11KeepaliveResponse\"q\n\x0c\x41rtifactInfo\x12\x10\n\x08\x61rtifact\x18\x01 \x01(\t\x12\x12\n\nentrypoint\x18\x02 \x03(\t\x12\x10\n\x08notebook\x18\x03 \x01(\x08\x12\x15\n\rbuild_context\x18\x04 \x01(\t\x12\x12\n\ndockerfile\x18\x05 \x01(\t\")\n\x07GitInfo\x12\x0e\n\x06remote\x18\x01 \x01(\t\x12\x0e\n\x06\x63ommit\x18\x02 \x01(\t\"\x87\x01\n\tGitSource\x12)\n\x08git_info\x18\x01 \x01(\x0b\x32\x17.wandb_internal.GitInfo\x12\x12\n\nentrypoint\x18\x02 \x03(\t\x12\x10\n\x08notebook\x18\x03 \x01(\x08\x12\x15\n\rbuild_context\x18\x04 \x01(\t\x12\x12\n\ndockerfile\x18\x05 \x01(\t\"\x1c\n\x0bImageSource\x12\r\n\x05image\x18\x01 \x01(\t\"\x8c\x01\n\x06Source\x12&\n\x03git\x18\x01 \x01(\x0b\x32\x19.wandb_internal.GitSource\x12.\n\x08\x61rtifact\x18\x02 \x01(\x0b\x32\x1c.wandb_internal.ArtifactInfo\x12*\n\x05image\x18\x03 \x01(\x0b\x32\x1b.wandb_internal.ImageSource\"k\n\tJobSource\x12\x10\n\x08_version\x18\x01 \x01(\t\x12\x13\n\x0bsource_type\x18\x02 \x01(\t\x12&\n\x06source\x18\x03 \x01(\x0b\x32\x16.wandb_internal.Source\x12\x0f\n\x07runtime\x18\x04 \x01(\t\"V\n\x12PartialJobArtifact\x12\x10\n\x08job_name\x18\x01 \x01(\t\x12.\n\x0bsource_info\x18\x02 \x01(\x0b\x32\x19.wandb_internal.JobSource\"\x9d\x01\n\x11UseArtifactRecord\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04type\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x33\n\x07partial\x18\x04 \x01(\x0b\x32\".wandb_internal.PartialJobArtifact\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x13\n\x11UseArtifactResult\"R\n\rCancelRequest\x12\x13\n\x0b\x63\x61ncel_slot\x18\x01 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x10\n\x0e\x43\x61ncelResponse\"\'\n\x08\x44iskInfo\x12\r\n\x05total\x18\x01 \x01(\x04\x12\x0c\n\x04used\x18\x02 \x01(\x04\"\x1b\n\nMemoryInfo\x12\r\n\x05total\x18\x01 \x01(\x04\"/\n\x07\x43puInfo\x12\r\n\x05\x63ount\x18\x01 \x01(\r\x12\x15\n\rcount_logical\x18\x02 \x01(\r\"\x9a\x01\n\tAppleInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\necpu_cores\x18\x02 \x01(\r\x12\x12\n\npcpu_cores\x18\x03 \x01(\r\x12\x11\n\tgpu_cores\x18\x04 \x01(\r\x12\x11\n\tmemory_gb\x18\x05 \x01(\r\x12\x18\n\x10swap_total_bytes\x18\x06 \x01(\x04\x12\x17\n\x0fram_total_bytes\x18\x07 \x01(\x04\"]\n\rGpuNvidiaInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0cmemory_total\x18\x02 \x01(\x04\x12\x12\n\ncuda_cores\x18\x03 \x01(\r\x12\x14\n\x0c\x61rchitecture\x18\x04 \x01(\t\"\x89\x02\n\nGpuAmdInfo\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x15\n\rvbios_version\x18\x03 \x01(\t\x12\x19\n\x11performance_level\x18\x04 \x01(\t\x12\x15\n\rgpu_overdrive\x18\x05 \x01(\t\x12\x1c\n\x14gpu_memory_overdrive\x18\x06 \x01(\t\x12\x11\n\tmax_power\x18\x07 \x01(\t\x12\x0e\n\x06series\x18\x08 \x01(\t\x12\r\n\x05model\x18\t \x01(\t\x12\x0e\n\x06vendor\x18\n \x01(\t\x12\x0b\n\x03sku\x18\x0b \x01(\t\x12\x12\n\nsclk_range\x18\x0c \x01(\t\x12\x12\n\nmclk_range\x18\r \x01(\t\"n\n\x0cTrainiumInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06vendor\x18\x02 \x01(\t\x12\x1b\n\x13neuron_device_count\x18\x03 \x01(\r\x12#\n\x1bneuroncore_per_device_count\x18\x04 \x01(\r\"Q\n\x07TPUInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07hbm_gib\x18\x02 \x01(\r\x12\x18\n\x10\x64\x65vices_per_chip\x18\x03 \x01(\r\x12\r\n\x05\x63ount\x18\x04 \x01(\r\"\x8b\t\n\x0fMetadataRequest\x12\n\n\x02os\x18\x01 \x01(\t\x12\x0e\n\x06python\x18\x02 \x01(\t\x12=\n\x0cheartbeat_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0bheartbeatAt\x12\x39\n\nstarted_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x0e\n\x06\x64ocker\x18\x05 \x01(\t\x12\x0c\n\x04\x63uda\x18\x06 \x01(\t\x12\x0c\n\x04\x61rgs\x18\x07 \x03(\t\x12\r\n\x05state\x18\x08 \x01(\t\x12\x0f\n\x07program\x18\t \x01(\t\x12\x1b\n\tcode_path\x18\n \x01(\tR\x08\x63odePath\x12*\n\x03git\x18\x0b \x01(\x0b\x32\x1d.wandb_internal.GitRepoRecord\x12\r\n\x05\x65mail\x18\x0c \x01(\t\x12\x0c\n\x04root\x18\r \x01(\t\x12\x0c\n\x04host\x18\x0e \x01(\t\x12\x10\n\x08username\x18\x0f \x01(\t\x12\x12\n\nexecutable\x18\x10 \x01(\t\x12&\n\x0f\x63ode_path_local\x18\x11 \x01(\tR\rcodePathLocal\x12\r\n\x05\x63olab\x18\x12 \x01(\t\x12\x1c\n\tcpu_count\x18\x13 \x01(\rR\tcpu_count\x12,\n\x11\x63pu_count_logical\x18\x14 \x01(\rR\x11\x63pu_count_logical\x12\x15\n\x08gpu_type\x18\x15 \x01(\tR\x03gpu\x12\x1c\n\tgpu_count\x18\x16 \x01(\rR\tgpu_count\x12\x37\n\x04\x64isk\x18\x17 \x03(\x0b\x32).wandb_internal.MetadataRequest.DiskEntry\x12*\n\x06memory\x18\x18 \x01(\x0b\x32\x1a.wandb_internal.MemoryInfo\x12$\n\x03\x63pu\x18\x19 \x01(\x0b\x32\x17.wandb_internal.CpuInfo\x12(\n\x05\x61pple\x18\x1a \x01(\x0b\x32\x19.wandb_internal.AppleInfo\x12=\n\ngpu_nvidia\x18\x1b \x03(\x0b\x32\x1d.wandb_internal.GpuNvidiaInfoR\ngpu_nvidia\x12\x34\n\x07gpu_amd\x18\x1c \x03(\x0b\x32\x1a.wandb_internal.GpuAmdInfoR\x07gpu_amd\x12\x39\n\x05slurm\x18\x1d \x03(\x0b\x32*.wandb_internal.MetadataRequest.SlurmEntry\x12\x14\n\x0c\x63uda_version\x18\x1e \x01(\t\x12.\n\x08trainium\x18\x1f \x01(\x0b\x32\x1c.wandb_internal.TrainiumInfo\x12$\n\x03tpu\x18 \x01(\x0b\x32\x17.wandb_internal.TPUInfo\x1a\x45\n\tDiskEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.wandb_internal.DiskInfo:\x02\x38\x01\x1a,\n\nSlurmEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x8d\x01\n\x15PythonPackagesRequest\x12\x44\n\x07package\x18\x01 \x03(\x0b\x32\x33.wandb_internal.PythonPackagesRequest.PythonPackage\x1a.\n\rPythonPackage\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\"\x1c\n\x0cJobInputPath\x12\x0c\n\x04path\x18\x01 \x03(\t\"\xd6\x01\n\x0eJobInputSource\x12\x44\n\nrun_config\x18\x01 \x01(\x0b\x32..wandb_internal.JobInputSource.RunConfigSourceH\x00\x12?\n\x04\x66ile\x18\x02 \x01(\x0b\x32/.wandb_internal.JobInputSource.ConfigFileSourceH\x00\x1a\x11\n\x0fRunConfigSource\x1a \n\x10\x43onfigFileSource\x12\x0c\n\x04path\x18\x01 \x01(\tB\x08\n\x06source\"\xc7\x01\n\x0fJobInputRequest\x12\x34\n\x0cinput_source\x18\x01 \x01(\x0b\x32\x1e.wandb_internal.JobInputSource\x12\x33\n\rinclude_paths\x18\x02 \x03(\x0b\x32\x1c.wandb_internal.JobInputPath\x12\x33\n\rexclude_paths\x18\x03 \x03(\x0b\x32\x1c.wandb_internal.JobInputPath\x12\x14\n\x0cinput_schema\x18\x04 \x01(\tB\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
22
+
23
+
24
+
25
+ _RECORD = DESCRIPTOR.message_types_by_name['Record']
26
+ _CONTROL = DESCRIPTOR.message_types_by_name['Control']
27
+ _RESULT = DESCRIPTOR.message_types_by_name['Result']
28
+ _FINALRECORD = DESCRIPTOR.message_types_by_name['FinalRecord']
29
+ _VERSIONINFO = DESCRIPTOR.message_types_by_name['VersionInfo']
30
+ _HEADERRECORD = DESCRIPTOR.message_types_by_name['HeaderRecord']
31
+ _FOOTERRECORD = DESCRIPTOR.message_types_by_name['FooterRecord']
32
+ _RUNRECORD = DESCRIPTOR.message_types_by_name['RunRecord']
33
+ _GITREPORECORD = DESCRIPTOR.message_types_by_name['GitRepoRecord']
34
+ _RUNUPDATERESULT = DESCRIPTOR.message_types_by_name['RunUpdateResult']
35
+ _ERRORINFO = DESCRIPTOR.message_types_by_name['ErrorInfo']
36
+ _RUNEXITRECORD = DESCRIPTOR.message_types_by_name['RunExitRecord']
37
+ _RUNEXITRESULT = DESCRIPTOR.message_types_by_name['RunExitResult']
38
+ _RUNPREEMPTINGRECORD = DESCRIPTOR.message_types_by_name['RunPreemptingRecord']
39
+ _RUNPREEMPTINGRESULT = DESCRIPTOR.message_types_by_name['RunPreemptingResult']
40
+ _SETTINGSRECORD = DESCRIPTOR.message_types_by_name['SettingsRecord']
41
+ _SETTINGSITEM = DESCRIPTOR.message_types_by_name['SettingsItem']
42
+ _HISTORYSTEP = DESCRIPTOR.message_types_by_name['HistoryStep']
43
+ _HISTORYRECORD = DESCRIPTOR.message_types_by_name['HistoryRecord']
44
+ _HISTORYITEM = DESCRIPTOR.message_types_by_name['HistoryItem']
45
+ _HISTORYRESULT = DESCRIPTOR.message_types_by_name['HistoryResult']
46
+ _OUTPUTRECORD = DESCRIPTOR.message_types_by_name['OutputRecord']
47
+ _OUTPUTRESULT = DESCRIPTOR.message_types_by_name['OutputResult']
48
+ _OUTPUTRAWRECORD = DESCRIPTOR.message_types_by_name['OutputRawRecord']
49
+ _OUTPUTRAWRESULT = DESCRIPTOR.message_types_by_name['OutputRawResult']
50
+ _METRICRECORD = DESCRIPTOR.message_types_by_name['MetricRecord']
51
+ _METRICRESULT = DESCRIPTOR.message_types_by_name['MetricResult']
52
+ _METRICOPTIONS = DESCRIPTOR.message_types_by_name['MetricOptions']
53
+ _METRICCONTROL = DESCRIPTOR.message_types_by_name['MetricControl']
54
+ _METRICSUMMARY = DESCRIPTOR.message_types_by_name['MetricSummary']
55
+ _CONFIGRECORD = DESCRIPTOR.message_types_by_name['ConfigRecord']
56
+ _CONFIGITEM = DESCRIPTOR.message_types_by_name['ConfigItem']
57
+ _CONFIGRESULT = DESCRIPTOR.message_types_by_name['ConfigResult']
58
+ _SUMMARYRECORD = DESCRIPTOR.message_types_by_name['SummaryRecord']
59
+ _SUMMARYITEM = DESCRIPTOR.message_types_by_name['SummaryItem']
60
+ _SUMMARYRESULT = DESCRIPTOR.message_types_by_name['SummaryResult']
61
+ _FILESRECORD = DESCRIPTOR.message_types_by_name['FilesRecord']
62
+ _FILESITEM = DESCRIPTOR.message_types_by_name['FilesItem']
63
+ _FILESRESULT = DESCRIPTOR.message_types_by_name['FilesResult']
64
+ _STATSRECORD = DESCRIPTOR.message_types_by_name['StatsRecord']
65
+ _STATSITEM = DESCRIPTOR.message_types_by_name['StatsItem']
66
+ _ARTIFACTRECORD = DESCRIPTOR.message_types_by_name['ArtifactRecord']
67
+ _ARTIFACTMANIFEST = DESCRIPTOR.message_types_by_name['ArtifactManifest']
68
+ _ARTIFACTMANIFESTENTRY = DESCRIPTOR.message_types_by_name['ArtifactManifestEntry']
69
+ _EXTRAITEM = DESCRIPTOR.message_types_by_name['ExtraItem']
70
+ _STORAGEPOLICYCONFIGITEM = DESCRIPTOR.message_types_by_name['StoragePolicyConfigItem']
71
+ _ARTIFACTRESULT = DESCRIPTOR.message_types_by_name['ArtifactResult']
72
+ _LINKARTIFACTRESULT = DESCRIPTOR.message_types_by_name['LinkArtifactResult']
73
+ _LINKARTIFACTREQUEST = DESCRIPTOR.message_types_by_name['LinkArtifactRequest']
74
+ _LINKARTIFACTRESPONSE = DESCRIPTOR.message_types_by_name['LinkArtifactResponse']
75
+ _TBRECORD = DESCRIPTOR.message_types_by_name['TBRecord']
76
+ _TBRESULT = DESCRIPTOR.message_types_by_name['TBResult']
77
+ _ALERTRECORD = DESCRIPTOR.message_types_by_name['AlertRecord']
78
+ _ALERTRESULT = DESCRIPTOR.message_types_by_name['AlertResult']
79
+ _REQUEST = DESCRIPTOR.message_types_by_name['Request']
80
+ _RESPONSE = DESCRIPTOR.message_types_by_name['Response']
81
+ _DEFERREQUEST = DESCRIPTOR.message_types_by_name['DeferRequest']
82
+ _PAUSEREQUEST = DESCRIPTOR.message_types_by_name['PauseRequest']
83
+ _PAUSERESPONSE = DESCRIPTOR.message_types_by_name['PauseResponse']
84
+ _RESUMEREQUEST = DESCRIPTOR.message_types_by_name['ResumeRequest']
85
+ _RESUMERESPONSE = DESCRIPTOR.message_types_by_name['ResumeResponse']
86
+ _LOGINREQUEST = DESCRIPTOR.message_types_by_name['LoginRequest']
87
+ _LOGINRESPONSE = DESCRIPTOR.message_types_by_name['LoginResponse']
88
+ _GETSUMMARYREQUEST = DESCRIPTOR.message_types_by_name['GetSummaryRequest']
89
+ _GETSUMMARYRESPONSE = DESCRIPTOR.message_types_by_name['GetSummaryResponse']
90
+ _GETSYSTEMMETRICSREQUEST = DESCRIPTOR.message_types_by_name['GetSystemMetricsRequest']
91
+ _SYSTEMMETRICSAMPLE = DESCRIPTOR.message_types_by_name['SystemMetricSample']
92
+ _SYSTEMMETRICSBUFFER = DESCRIPTOR.message_types_by_name['SystemMetricsBuffer']
93
+ _GETSYSTEMMETRICSRESPONSE = DESCRIPTOR.message_types_by_name['GetSystemMetricsResponse']
94
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY = _GETSYSTEMMETRICSRESPONSE.nested_types_by_name['SystemMetricsEntry']
95
+ _STATUSREQUEST = DESCRIPTOR.message_types_by_name['StatusRequest']
96
+ _STATUSRESPONSE = DESCRIPTOR.message_types_by_name['StatusResponse']
97
+ _STOPSTATUSREQUEST = DESCRIPTOR.message_types_by_name['StopStatusRequest']
98
+ _STOPSTATUSRESPONSE = DESCRIPTOR.message_types_by_name['StopStatusResponse']
99
+ _NETWORKSTATUSREQUEST = DESCRIPTOR.message_types_by_name['NetworkStatusRequest']
100
+ _NETWORKSTATUSRESPONSE = DESCRIPTOR.message_types_by_name['NetworkStatusResponse']
101
+ _HTTPRESPONSE = DESCRIPTOR.message_types_by_name['HttpResponse']
102
+ _INTERNALMESSAGESREQUEST = DESCRIPTOR.message_types_by_name['InternalMessagesRequest']
103
+ _INTERNALMESSAGESRESPONSE = DESCRIPTOR.message_types_by_name['InternalMessagesResponse']
104
+ _INTERNALMESSAGES = DESCRIPTOR.message_types_by_name['InternalMessages']
105
+ _POLLEXITREQUEST = DESCRIPTOR.message_types_by_name['PollExitRequest']
106
+ _POLLEXITRESPONSE = DESCRIPTOR.message_types_by_name['PollExitResponse']
107
+ _OPERATIONSTATS = DESCRIPTOR.message_types_by_name['OperationStats']
108
+ _OPERATION = DESCRIPTOR.message_types_by_name['Operation']
109
+ _SYNCOVERWRITE = DESCRIPTOR.message_types_by_name['SyncOverwrite']
110
+ _SYNCSKIP = DESCRIPTOR.message_types_by_name['SyncSkip']
111
+ _SENDERMARKREQUEST = DESCRIPTOR.message_types_by_name['SenderMarkRequest']
112
+ _SYNCREQUEST = DESCRIPTOR.message_types_by_name['SyncRequest']
113
+ _SYNCRESPONSE = DESCRIPTOR.message_types_by_name['SyncResponse']
114
+ _SENDERREADREQUEST = DESCRIPTOR.message_types_by_name['SenderReadRequest']
115
+ _STATUSREPORTREQUEST = DESCRIPTOR.message_types_by_name['StatusReportRequest']
116
+ _SUMMARYRECORDREQUEST = DESCRIPTOR.message_types_by_name['SummaryRecordRequest']
117
+ _TELEMETRYRECORDREQUEST = DESCRIPTOR.message_types_by_name['TelemetryRecordRequest']
118
+ _SERVERINFOREQUEST = DESCRIPTOR.message_types_by_name['ServerInfoRequest']
119
+ _SERVERINFORESPONSE = DESCRIPTOR.message_types_by_name['ServerInfoResponse']
120
+ _SERVERMESSAGES = DESCRIPTOR.message_types_by_name['ServerMessages']
121
+ _SERVERMESSAGE = DESCRIPTOR.message_types_by_name['ServerMessage']
122
+ _FILECOUNTS = DESCRIPTOR.message_types_by_name['FileCounts']
123
+ _FILEPUSHERSTATS = DESCRIPTOR.message_types_by_name['FilePusherStats']
124
+ _FILESUPLOADED = DESCRIPTOR.message_types_by_name['FilesUploaded']
125
+ _FILETRANSFERINFOREQUEST = DESCRIPTOR.message_types_by_name['FileTransferInfoRequest']
126
+ _LOCALINFO = DESCRIPTOR.message_types_by_name['LocalInfo']
127
+ _SHUTDOWNREQUEST = DESCRIPTOR.message_types_by_name['ShutdownRequest']
128
+ _SHUTDOWNRESPONSE = DESCRIPTOR.message_types_by_name['ShutdownResponse']
129
+ _ATTACHREQUEST = DESCRIPTOR.message_types_by_name['AttachRequest']
130
+ _ATTACHRESPONSE = DESCRIPTOR.message_types_by_name['AttachResponse']
131
+ _TESTINJECTREQUEST = DESCRIPTOR.message_types_by_name['TestInjectRequest']
132
+ _TESTINJECTRESPONSE = DESCRIPTOR.message_types_by_name['TestInjectResponse']
133
+ _HISTORYACTION = DESCRIPTOR.message_types_by_name['HistoryAction']
134
+ _PARTIALHISTORYREQUEST = DESCRIPTOR.message_types_by_name['PartialHistoryRequest']
135
+ _PARTIALHISTORYRESPONSE = DESCRIPTOR.message_types_by_name['PartialHistoryResponse']
136
+ _SAMPLEDHISTORYREQUEST = DESCRIPTOR.message_types_by_name['SampledHistoryRequest']
137
+ _SAMPLEDHISTORYITEM = DESCRIPTOR.message_types_by_name['SampledHistoryItem']
138
+ _SAMPLEDHISTORYRESPONSE = DESCRIPTOR.message_types_by_name['SampledHistoryResponse']
139
+ _RUNSTATUSREQUEST = DESCRIPTOR.message_types_by_name['RunStatusRequest']
140
+ _RUNSTATUSRESPONSE = DESCRIPTOR.message_types_by_name['RunStatusResponse']
141
+ _RUNSTARTREQUEST = DESCRIPTOR.message_types_by_name['RunStartRequest']
142
+ _RUNSTARTRESPONSE = DESCRIPTOR.message_types_by_name['RunStartResponse']
143
+ _RUNFINISHWITHOUTEXITREQUEST = DESCRIPTOR.message_types_by_name['RunFinishWithoutExitRequest']
144
+ _RUNFINISHWITHOUTEXITRESPONSE = DESCRIPTOR.message_types_by_name['RunFinishWithoutExitResponse']
145
+ _CHECKVERSIONREQUEST = DESCRIPTOR.message_types_by_name['CheckVersionRequest']
146
+ _CHECKVERSIONRESPONSE = DESCRIPTOR.message_types_by_name['CheckVersionResponse']
147
+ _JOBINFOREQUEST = DESCRIPTOR.message_types_by_name['JobInfoRequest']
148
+ _JOBINFORESPONSE = DESCRIPTOR.message_types_by_name['JobInfoResponse']
149
+ _LOGARTIFACTREQUEST = DESCRIPTOR.message_types_by_name['LogArtifactRequest']
150
+ _LOGARTIFACTRESPONSE = DESCRIPTOR.message_types_by_name['LogArtifactResponse']
151
+ _DOWNLOADARTIFACTREQUEST = DESCRIPTOR.message_types_by_name['DownloadArtifactRequest']
152
+ _DOWNLOADARTIFACTRESPONSE = DESCRIPTOR.message_types_by_name['DownloadArtifactResponse']
153
+ _KEEPALIVEREQUEST = DESCRIPTOR.message_types_by_name['KeepaliveRequest']
154
+ _KEEPALIVERESPONSE = DESCRIPTOR.message_types_by_name['KeepaliveResponse']
155
+ _ARTIFACTINFO = DESCRIPTOR.message_types_by_name['ArtifactInfo']
156
+ _GITINFO = DESCRIPTOR.message_types_by_name['GitInfo']
157
+ _GITSOURCE = DESCRIPTOR.message_types_by_name['GitSource']
158
+ _IMAGESOURCE = DESCRIPTOR.message_types_by_name['ImageSource']
159
+ _SOURCE = DESCRIPTOR.message_types_by_name['Source']
160
+ _JOBSOURCE = DESCRIPTOR.message_types_by_name['JobSource']
161
+ _PARTIALJOBARTIFACT = DESCRIPTOR.message_types_by_name['PartialJobArtifact']
162
+ _USEARTIFACTRECORD = DESCRIPTOR.message_types_by_name['UseArtifactRecord']
163
+ _USEARTIFACTRESULT = DESCRIPTOR.message_types_by_name['UseArtifactResult']
164
+ _CANCELREQUEST = DESCRIPTOR.message_types_by_name['CancelRequest']
165
+ _CANCELRESPONSE = DESCRIPTOR.message_types_by_name['CancelResponse']
166
+ _DISKINFO = DESCRIPTOR.message_types_by_name['DiskInfo']
167
+ _MEMORYINFO = DESCRIPTOR.message_types_by_name['MemoryInfo']
168
+ _CPUINFO = DESCRIPTOR.message_types_by_name['CpuInfo']
169
+ _APPLEINFO = DESCRIPTOR.message_types_by_name['AppleInfo']
170
+ _GPUNVIDIAINFO = DESCRIPTOR.message_types_by_name['GpuNvidiaInfo']
171
+ _GPUAMDINFO = DESCRIPTOR.message_types_by_name['GpuAmdInfo']
172
+ _TRAINIUMINFO = DESCRIPTOR.message_types_by_name['TrainiumInfo']
173
+ _TPUINFO = DESCRIPTOR.message_types_by_name['TPUInfo']
174
+ _METADATAREQUEST = DESCRIPTOR.message_types_by_name['MetadataRequest']
175
+ _METADATAREQUEST_DISKENTRY = _METADATAREQUEST.nested_types_by_name['DiskEntry']
176
+ _METADATAREQUEST_SLURMENTRY = _METADATAREQUEST.nested_types_by_name['SlurmEntry']
177
+ _PYTHONPACKAGESREQUEST = DESCRIPTOR.message_types_by_name['PythonPackagesRequest']
178
+ _PYTHONPACKAGESREQUEST_PYTHONPACKAGE = _PYTHONPACKAGESREQUEST.nested_types_by_name['PythonPackage']
179
+ _JOBINPUTPATH = DESCRIPTOR.message_types_by_name['JobInputPath']
180
+ _JOBINPUTSOURCE = DESCRIPTOR.message_types_by_name['JobInputSource']
181
+ _JOBINPUTSOURCE_RUNCONFIGSOURCE = _JOBINPUTSOURCE.nested_types_by_name['RunConfigSource']
182
+ _JOBINPUTSOURCE_CONFIGFILESOURCE = _JOBINPUTSOURCE.nested_types_by_name['ConfigFileSource']
183
+ _JOBINPUTREQUEST = DESCRIPTOR.message_types_by_name['JobInputRequest']
184
+ _ERRORINFO_ERRORCODE = _ERRORINFO.enum_types_by_name['ErrorCode']
185
+ _OUTPUTRECORD_OUTPUTTYPE = _OUTPUTRECORD.enum_types_by_name['OutputType']
186
+ _OUTPUTRAWRECORD_OUTPUTTYPE = _OUTPUTRAWRECORD.enum_types_by_name['OutputType']
187
+ _METRICRECORD_METRICGOAL = _METRICRECORD.enum_types_by_name['MetricGoal']
188
+ _FILESITEM_POLICYTYPE = _FILESITEM.enum_types_by_name['PolicyType']
189
+ _FILESITEM_FILETYPE = _FILESITEM.enum_types_by_name['FileType']
190
+ _STATSRECORD_STATSTYPE = _STATSRECORD.enum_types_by_name['StatsType']
191
+ _DEFERREQUEST_DEFERSTATE = _DEFERREQUEST.enum_types_by_name['DeferState']
192
+ _FILETRANSFERINFOREQUEST_TRANSFERTYPE = _FILETRANSFERINFOREQUEST.enum_types_by_name['TransferType']
193
+ Record = _reflection.GeneratedProtocolMessageType('Record', (_message.Message,), {
194
+ 'DESCRIPTOR' : _RECORD,
195
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
196
+ # @@protoc_insertion_point(class_scope:wandb_internal.Record)
197
+ })
198
+ _sym_db.RegisterMessage(Record)
199
+
200
+ Control = _reflection.GeneratedProtocolMessageType('Control', (_message.Message,), {
201
+ 'DESCRIPTOR' : _CONTROL,
202
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
203
+ # @@protoc_insertion_point(class_scope:wandb_internal.Control)
204
+ })
205
+ _sym_db.RegisterMessage(Control)
206
+
207
+ Result = _reflection.GeneratedProtocolMessageType('Result', (_message.Message,), {
208
+ 'DESCRIPTOR' : _RESULT,
209
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
210
+ # @@protoc_insertion_point(class_scope:wandb_internal.Result)
211
+ })
212
+ _sym_db.RegisterMessage(Result)
213
+
214
+ FinalRecord = _reflection.GeneratedProtocolMessageType('FinalRecord', (_message.Message,), {
215
+ 'DESCRIPTOR' : _FINALRECORD,
216
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
217
+ # @@protoc_insertion_point(class_scope:wandb_internal.FinalRecord)
218
+ })
219
+ _sym_db.RegisterMessage(FinalRecord)
220
+
221
+ VersionInfo = _reflection.GeneratedProtocolMessageType('VersionInfo', (_message.Message,), {
222
+ 'DESCRIPTOR' : _VERSIONINFO,
223
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
224
+ # @@protoc_insertion_point(class_scope:wandb_internal.VersionInfo)
225
+ })
226
+ _sym_db.RegisterMessage(VersionInfo)
227
+
228
+ HeaderRecord = _reflection.GeneratedProtocolMessageType('HeaderRecord', (_message.Message,), {
229
+ 'DESCRIPTOR' : _HEADERRECORD,
230
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
231
+ # @@protoc_insertion_point(class_scope:wandb_internal.HeaderRecord)
232
+ })
233
+ _sym_db.RegisterMessage(HeaderRecord)
234
+
235
+ FooterRecord = _reflection.GeneratedProtocolMessageType('FooterRecord', (_message.Message,), {
236
+ 'DESCRIPTOR' : _FOOTERRECORD,
237
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
238
+ # @@protoc_insertion_point(class_scope:wandb_internal.FooterRecord)
239
+ })
240
+ _sym_db.RegisterMessage(FooterRecord)
241
+
242
+ RunRecord = _reflection.GeneratedProtocolMessageType('RunRecord', (_message.Message,), {
243
+ 'DESCRIPTOR' : _RUNRECORD,
244
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
245
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunRecord)
246
+ })
247
+ _sym_db.RegisterMessage(RunRecord)
248
+
249
+ GitRepoRecord = _reflection.GeneratedProtocolMessageType('GitRepoRecord', (_message.Message,), {
250
+ 'DESCRIPTOR' : _GITREPORECORD,
251
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
252
+ # @@protoc_insertion_point(class_scope:wandb_internal.GitRepoRecord)
253
+ })
254
+ _sym_db.RegisterMessage(GitRepoRecord)
255
+
256
+ RunUpdateResult = _reflection.GeneratedProtocolMessageType('RunUpdateResult', (_message.Message,), {
257
+ 'DESCRIPTOR' : _RUNUPDATERESULT,
258
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
259
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunUpdateResult)
260
+ })
261
+ _sym_db.RegisterMessage(RunUpdateResult)
262
+
263
+ ErrorInfo = _reflection.GeneratedProtocolMessageType('ErrorInfo', (_message.Message,), {
264
+ 'DESCRIPTOR' : _ERRORINFO,
265
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
266
+ # @@protoc_insertion_point(class_scope:wandb_internal.ErrorInfo)
267
+ })
268
+ _sym_db.RegisterMessage(ErrorInfo)
269
+
270
+ RunExitRecord = _reflection.GeneratedProtocolMessageType('RunExitRecord', (_message.Message,), {
271
+ 'DESCRIPTOR' : _RUNEXITRECORD,
272
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
273
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunExitRecord)
274
+ })
275
+ _sym_db.RegisterMessage(RunExitRecord)
276
+
277
+ RunExitResult = _reflection.GeneratedProtocolMessageType('RunExitResult', (_message.Message,), {
278
+ 'DESCRIPTOR' : _RUNEXITRESULT,
279
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
280
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunExitResult)
281
+ })
282
+ _sym_db.RegisterMessage(RunExitResult)
283
+
284
+ RunPreemptingRecord = _reflection.GeneratedProtocolMessageType('RunPreemptingRecord', (_message.Message,), {
285
+ 'DESCRIPTOR' : _RUNPREEMPTINGRECORD,
286
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
287
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunPreemptingRecord)
288
+ })
289
+ _sym_db.RegisterMessage(RunPreemptingRecord)
290
+
291
+ RunPreemptingResult = _reflection.GeneratedProtocolMessageType('RunPreemptingResult', (_message.Message,), {
292
+ 'DESCRIPTOR' : _RUNPREEMPTINGRESULT,
293
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
294
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunPreemptingResult)
295
+ })
296
+ _sym_db.RegisterMessage(RunPreemptingResult)
297
+
298
+ SettingsRecord = _reflection.GeneratedProtocolMessageType('SettingsRecord', (_message.Message,), {
299
+ 'DESCRIPTOR' : _SETTINGSRECORD,
300
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
301
+ # @@protoc_insertion_point(class_scope:wandb_internal.SettingsRecord)
302
+ })
303
+ _sym_db.RegisterMessage(SettingsRecord)
304
+
305
+ SettingsItem = _reflection.GeneratedProtocolMessageType('SettingsItem', (_message.Message,), {
306
+ 'DESCRIPTOR' : _SETTINGSITEM,
307
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
308
+ # @@protoc_insertion_point(class_scope:wandb_internal.SettingsItem)
309
+ })
310
+ _sym_db.RegisterMessage(SettingsItem)
311
+
312
+ HistoryStep = _reflection.GeneratedProtocolMessageType('HistoryStep', (_message.Message,), {
313
+ 'DESCRIPTOR' : _HISTORYSTEP,
314
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
315
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryStep)
316
+ })
317
+ _sym_db.RegisterMessage(HistoryStep)
318
+
319
+ HistoryRecord = _reflection.GeneratedProtocolMessageType('HistoryRecord', (_message.Message,), {
320
+ 'DESCRIPTOR' : _HISTORYRECORD,
321
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
322
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryRecord)
323
+ })
324
+ _sym_db.RegisterMessage(HistoryRecord)
325
+
326
+ HistoryItem = _reflection.GeneratedProtocolMessageType('HistoryItem', (_message.Message,), {
327
+ 'DESCRIPTOR' : _HISTORYITEM,
328
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
329
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryItem)
330
+ })
331
+ _sym_db.RegisterMessage(HistoryItem)
332
+
333
+ HistoryResult = _reflection.GeneratedProtocolMessageType('HistoryResult', (_message.Message,), {
334
+ 'DESCRIPTOR' : _HISTORYRESULT,
335
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
336
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryResult)
337
+ })
338
+ _sym_db.RegisterMessage(HistoryResult)
339
+
340
+ OutputRecord = _reflection.GeneratedProtocolMessageType('OutputRecord', (_message.Message,), {
341
+ 'DESCRIPTOR' : _OUTPUTRECORD,
342
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
343
+ # @@protoc_insertion_point(class_scope:wandb_internal.OutputRecord)
344
+ })
345
+ _sym_db.RegisterMessage(OutputRecord)
346
+
347
+ OutputResult = _reflection.GeneratedProtocolMessageType('OutputResult', (_message.Message,), {
348
+ 'DESCRIPTOR' : _OUTPUTRESULT,
349
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
350
+ # @@protoc_insertion_point(class_scope:wandb_internal.OutputResult)
351
+ })
352
+ _sym_db.RegisterMessage(OutputResult)
353
+
354
+ OutputRawRecord = _reflection.GeneratedProtocolMessageType('OutputRawRecord', (_message.Message,), {
355
+ 'DESCRIPTOR' : _OUTPUTRAWRECORD,
356
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
357
+ # @@protoc_insertion_point(class_scope:wandb_internal.OutputRawRecord)
358
+ })
359
+ _sym_db.RegisterMessage(OutputRawRecord)
360
+
361
+ OutputRawResult = _reflection.GeneratedProtocolMessageType('OutputRawResult', (_message.Message,), {
362
+ 'DESCRIPTOR' : _OUTPUTRAWRESULT,
363
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
364
+ # @@protoc_insertion_point(class_scope:wandb_internal.OutputRawResult)
365
+ })
366
+ _sym_db.RegisterMessage(OutputRawResult)
367
+
368
+ MetricRecord = _reflection.GeneratedProtocolMessageType('MetricRecord', (_message.Message,), {
369
+ 'DESCRIPTOR' : _METRICRECORD,
370
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
371
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricRecord)
372
+ })
373
+ _sym_db.RegisterMessage(MetricRecord)
374
+
375
+ MetricResult = _reflection.GeneratedProtocolMessageType('MetricResult', (_message.Message,), {
376
+ 'DESCRIPTOR' : _METRICRESULT,
377
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
378
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricResult)
379
+ })
380
+ _sym_db.RegisterMessage(MetricResult)
381
+
382
+ MetricOptions = _reflection.GeneratedProtocolMessageType('MetricOptions', (_message.Message,), {
383
+ 'DESCRIPTOR' : _METRICOPTIONS,
384
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
385
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricOptions)
386
+ })
387
+ _sym_db.RegisterMessage(MetricOptions)
388
+
389
+ MetricControl = _reflection.GeneratedProtocolMessageType('MetricControl', (_message.Message,), {
390
+ 'DESCRIPTOR' : _METRICCONTROL,
391
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
392
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricControl)
393
+ })
394
+ _sym_db.RegisterMessage(MetricControl)
395
+
396
+ MetricSummary = _reflection.GeneratedProtocolMessageType('MetricSummary', (_message.Message,), {
397
+ 'DESCRIPTOR' : _METRICSUMMARY,
398
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
399
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricSummary)
400
+ })
401
+ _sym_db.RegisterMessage(MetricSummary)
402
+
403
+ ConfigRecord = _reflection.GeneratedProtocolMessageType('ConfigRecord', (_message.Message,), {
404
+ 'DESCRIPTOR' : _CONFIGRECORD,
405
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
406
+ # @@protoc_insertion_point(class_scope:wandb_internal.ConfigRecord)
407
+ })
408
+ _sym_db.RegisterMessage(ConfigRecord)
409
+
410
+ ConfigItem = _reflection.GeneratedProtocolMessageType('ConfigItem', (_message.Message,), {
411
+ 'DESCRIPTOR' : _CONFIGITEM,
412
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
413
+ # @@protoc_insertion_point(class_scope:wandb_internal.ConfigItem)
414
+ })
415
+ _sym_db.RegisterMessage(ConfigItem)
416
+
417
+ ConfigResult = _reflection.GeneratedProtocolMessageType('ConfigResult', (_message.Message,), {
418
+ 'DESCRIPTOR' : _CONFIGRESULT,
419
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
420
+ # @@protoc_insertion_point(class_scope:wandb_internal.ConfigResult)
421
+ })
422
+ _sym_db.RegisterMessage(ConfigResult)
423
+
424
+ SummaryRecord = _reflection.GeneratedProtocolMessageType('SummaryRecord', (_message.Message,), {
425
+ 'DESCRIPTOR' : _SUMMARYRECORD,
426
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
427
+ # @@protoc_insertion_point(class_scope:wandb_internal.SummaryRecord)
428
+ })
429
+ _sym_db.RegisterMessage(SummaryRecord)
430
+
431
+ SummaryItem = _reflection.GeneratedProtocolMessageType('SummaryItem', (_message.Message,), {
432
+ 'DESCRIPTOR' : _SUMMARYITEM,
433
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
434
+ # @@protoc_insertion_point(class_scope:wandb_internal.SummaryItem)
435
+ })
436
+ _sym_db.RegisterMessage(SummaryItem)
437
+
438
+ SummaryResult = _reflection.GeneratedProtocolMessageType('SummaryResult', (_message.Message,), {
439
+ 'DESCRIPTOR' : _SUMMARYRESULT,
440
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
441
+ # @@protoc_insertion_point(class_scope:wandb_internal.SummaryResult)
442
+ })
443
+ _sym_db.RegisterMessage(SummaryResult)
444
+
445
+ FilesRecord = _reflection.GeneratedProtocolMessageType('FilesRecord', (_message.Message,), {
446
+ 'DESCRIPTOR' : _FILESRECORD,
447
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
448
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilesRecord)
449
+ })
450
+ _sym_db.RegisterMessage(FilesRecord)
451
+
452
+ FilesItem = _reflection.GeneratedProtocolMessageType('FilesItem', (_message.Message,), {
453
+ 'DESCRIPTOR' : _FILESITEM,
454
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
455
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilesItem)
456
+ })
457
+ _sym_db.RegisterMessage(FilesItem)
458
+
459
+ FilesResult = _reflection.GeneratedProtocolMessageType('FilesResult', (_message.Message,), {
460
+ 'DESCRIPTOR' : _FILESRESULT,
461
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
462
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilesResult)
463
+ })
464
+ _sym_db.RegisterMessage(FilesResult)
465
+
466
+ StatsRecord = _reflection.GeneratedProtocolMessageType('StatsRecord', (_message.Message,), {
467
+ 'DESCRIPTOR' : _STATSRECORD,
468
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
469
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatsRecord)
470
+ })
471
+ _sym_db.RegisterMessage(StatsRecord)
472
+
473
+ StatsItem = _reflection.GeneratedProtocolMessageType('StatsItem', (_message.Message,), {
474
+ 'DESCRIPTOR' : _STATSITEM,
475
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
476
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatsItem)
477
+ })
478
+ _sym_db.RegisterMessage(StatsItem)
479
+
480
+ ArtifactRecord = _reflection.GeneratedProtocolMessageType('ArtifactRecord', (_message.Message,), {
481
+ 'DESCRIPTOR' : _ARTIFACTRECORD,
482
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
483
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactRecord)
484
+ })
485
+ _sym_db.RegisterMessage(ArtifactRecord)
486
+
487
+ ArtifactManifest = _reflection.GeneratedProtocolMessageType('ArtifactManifest', (_message.Message,), {
488
+ 'DESCRIPTOR' : _ARTIFACTMANIFEST,
489
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
490
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactManifest)
491
+ })
492
+ _sym_db.RegisterMessage(ArtifactManifest)
493
+
494
+ ArtifactManifestEntry = _reflection.GeneratedProtocolMessageType('ArtifactManifestEntry', (_message.Message,), {
495
+ 'DESCRIPTOR' : _ARTIFACTMANIFESTENTRY,
496
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
497
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactManifestEntry)
498
+ })
499
+ _sym_db.RegisterMessage(ArtifactManifestEntry)
500
+
501
+ ExtraItem = _reflection.GeneratedProtocolMessageType('ExtraItem', (_message.Message,), {
502
+ 'DESCRIPTOR' : _EXTRAITEM,
503
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
504
+ # @@protoc_insertion_point(class_scope:wandb_internal.ExtraItem)
505
+ })
506
+ _sym_db.RegisterMessage(ExtraItem)
507
+
508
+ StoragePolicyConfigItem = _reflection.GeneratedProtocolMessageType('StoragePolicyConfigItem', (_message.Message,), {
509
+ 'DESCRIPTOR' : _STORAGEPOLICYCONFIGITEM,
510
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
511
+ # @@protoc_insertion_point(class_scope:wandb_internal.StoragePolicyConfigItem)
512
+ })
513
+ _sym_db.RegisterMessage(StoragePolicyConfigItem)
514
+
515
+ ArtifactResult = _reflection.GeneratedProtocolMessageType('ArtifactResult', (_message.Message,), {
516
+ 'DESCRIPTOR' : _ARTIFACTRESULT,
517
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
518
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactResult)
519
+ })
520
+ _sym_db.RegisterMessage(ArtifactResult)
521
+
522
+ LinkArtifactResult = _reflection.GeneratedProtocolMessageType('LinkArtifactResult', (_message.Message,), {
523
+ 'DESCRIPTOR' : _LINKARTIFACTRESULT,
524
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
525
+ # @@protoc_insertion_point(class_scope:wandb_internal.LinkArtifactResult)
526
+ })
527
+ _sym_db.RegisterMessage(LinkArtifactResult)
528
+
529
+ LinkArtifactRequest = _reflection.GeneratedProtocolMessageType('LinkArtifactRequest', (_message.Message,), {
530
+ 'DESCRIPTOR' : _LINKARTIFACTREQUEST,
531
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
532
+ # @@protoc_insertion_point(class_scope:wandb_internal.LinkArtifactRequest)
533
+ })
534
+ _sym_db.RegisterMessage(LinkArtifactRequest)
535
+
536
+ LinkArtifactResponse = _reflection.GeneratedProtocolMessageType('LinkArtifactResponse', (_message.Message,), {
537
+ 'DESCRIPTOR' : _LINKARTIFACTRESPONSE,
538
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
539
+ # @@protoc_insertion_point(class_scope:wandb_internal.LinkArtifactResponse)
540
+ })
541
+ _sym_db.RegisterMessage(LinkArtifactResponse)
542
+
543
+ TBRecord = _reflection.GeneratedProtocolMessageType('TBRecord', (_message.Message,), {
544
+ 'DESCRIPTOR' : _TBRECORD,
545
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
546
+ # @@protoc_insertion_point(class_scope:wandb_internal.TBRecord)
547
+ })
548
+ _sym_db.RegisterMessage(TBRecord)
549
+
550
+ TBResult = _reflection.GeneratedProtocolMessageType('TBResult', (_message.Message,), {
551
+ 'DESCRIPTOR' : _TBRESULT,
552
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
553
+ # @@protoc_insertion_point(class_scope:wandb_internal.TBResult)
554
+ })
555
+ _sym_db.RegisterMessage(TBResult)
556
+
557
+ AlertRecord = _reflection.GeneratedProtocolMessageType('AlertRecord', (_message.Message,), {
558
+ 'DESCRIPTOR' : _ALERTRECORD,
559
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
560
+ # @@protoc_insertion_point(class_scope:wandb_internal.AlertRecord)
561
+ })
562
+ _sym_db.RegisterMessage(AlertRecord)
563
+
564
+ AlertResult = _reflection.GeneratedProtocolMessageType('AlertResult', (_message.Message,), {
565
+ 'DESCRIPTOR' : _ALERTRESULT,
566
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
567
+ # @@protoc_insertion_point(class_scope:wandb_internal.AlertResult)
568
+ })
569
+ _sym_db.RegisterMessage(AlertResult)
570
+
571
+ Request = _reflection.GeneratedProtocolMessageType('Request', (_message.Message,), {
572
+ 'DESCRIPTOR' : _REQUEST,
573
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
574
+ # @@protoc_insertion_point(class_scope:wandb_internal.Request)
575
+ })
576
+ _sym_db.RegisterMessage(Request)
577
+
578
+ Response = _reflection.GeneratedProtocolMessageType('Response', (_message.Message,), {
579
+ 'DESCRIPTOR' : _RESPONSE,
580
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
581
+ # @@protoc_insertion_point(class_scope:wandb_internal.Response)
582
+ })
583
+ _sym_db.RegisterMessage(Response)
584
+
585
+ DeferRequest = _reflection.GeneratedProtocolMessageType('DeferRequest', (_message.Message,), {
586
+ 'DESCRIPTOR' : _DEFERREQUEST,
587
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
588
+ # @@protoc_insertion_point(class_scope:wandb_internal.DeferRequest)
589
+ })
590
+ _sym_db.RegisterMessage(DeferRequest)
591
+
592
+ PauseRequest = _reflection.GeneratedProtocolMessageType('PauseRequest', (_message.Message,), {
593
+ 'DESCRIPTOR' : _PAUSEREQUEST,
594
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
595
+ # @@protoc_insertion_point(class_scope:wandb_internal.PauseRequest)
596
+ })
597
+ _sym_db.RegisterMessage(PauseRequest)
598
+
599
+ PauseResponse = _reflection.GeneratedProtocolMessageType('PauseResponse', (_message.Message,), {
600
+ 'DESCRIPTOR' : _PAUSERESPONSE,
601
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
602
+ # @@protoc_insertion_point(class_scope:wandb_internal.PauseResponse)
603
+ })
604
+ _sym_db.RegisterMessage(PauseResponse)
605
+
606
+ ResumeRequest = _reflection.GeneratedProtocolMessageType('ResumeRequest', (_message.Message,), {
607
+ 'DESCRIPTOR' : _RESUMEREQUEST,
608
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
609
+ # @@protoc_insertion_point(class_scope:wandb_internal.ResumeRequest)
610
+ })
611
+ _sym_db.RegisterMessage(ResumeRequest)
612
+
613
+ ResumeResponse = _reflection.GeneratedProtocolMessageType('ResumeResponse', (_message.Message,), {
614
+ 'DESCRIPTOR' : _RESUMERESPONSE,
615
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
616
+ # @@protoc_insertion_point(class_scope:wandb_internal.ResumeResponse)
617
+ })
618
+ _sym_db.RegisterMessage(ResumeResponse)
619
+
620
+ LoginRequest = _reflection.GeneratedProtocolMessageType('LoginRequest', (_message.Message,), {
621
+ 'DESCRIPTOR' : _LOGINREQUEST,
622
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
623
+ # @@protoc_insertion_point(class_scope:wandb_internal.LoginRequest)
624
+ })
625
+ _sym_db.RegisterMessage(LoginRequest)
626
+
627
+ LoginResponse = _reflection.GeneratedProtocolMessageType('LoginResponse', (_message.Message,), {
628
+ 'DESCRIPTOR' : _LOGINRESPONSE,
629
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
630
+ # @@protoc_insertion_point(class_scope:wandb_internal.LoginResponse)
631
+ })
632
+ _sym_db.RegisterMessage(LoginResponse)
633
+
634
+ GetSummaryRequest = _reflection.GeneratedProtocolMessageType('GetSummaryRequest', (_message.Message,), {
635
+ 'DESCRIPTOR' : _GETSUMMARYREQUEST,
636
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
637
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSummaryRequest)
638
+ })
639
+ _sym_db.RegisterMessage(GetSummaryRequest)
640
+
641
+ GetSummaryResponse = _reflection.GeneratedProtocolMessageType('GetSummaryResponse', (_message.Message,), {
642
+ 'DESCRIPTOR' : _GETSUMMARYRESPONSE,
643
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
644
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSummaryResponse)
645
+ })
646
+ _sym_db.RegisterMessage(GetSummaryResponse)
647
+
648
+ GetSystemMetricsRequest = _reflection.GeneratedProtocolMessageType('GetSystemMetricsRequest', (_message.Message,), {
649
+ 'DESCRIPTOR' : _GETSYSTEMMETRICSREQUEST,
650
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
651
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSystemMetricsRequest)
652
+ })
653
+ _sym_db.RegisterMessage(GetSystemMetricsRequest)
654
+
655
+ SystemMetricSample = _reflection.GeneratedProtocolMessageType('SystemMetricSample', (_message.Message,), {
656
+ 'DESCRIPTOR' : _SYSTEMMETRICSAMPLE,
657
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
658
+ # @@protoc_insertion_point(class_scope:wandb_internal.SystemMetricSample)
659
+ })
660
+ _sym_db.RegisterMessage(SystemMetricSample)
661
+
662
+ SystemMetricsBuffer = _reflection.GeneratedProtocolMessageType('SystemMetricsBuffer', (_message.Message,), {
663
+ 'DESCRIPTOR' : _SYSTEMMETRICSBUFFER,
664
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
665
+ # @@protoc_insertion_point(class_scope:wandb_internal.SystemMetricsBuffer)
666
+ })
667
+ _sym_db.RegisterMessage(SystemMetricsBuffer)
668
+
669
+ GetSystemMetricsResponse = _reflection.GeneratedProtocolMessageType('GetSystemMetricsResponse', (_message.Message,), {
670
+
671
+ 'SystemMetricsEntry' : _reflection.GeneratedProtocolMessageType('SystemMetricsEntry', (_message.Message,), {
672
+ 'DESCRIPTOR' : _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY,
673
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
674
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSystemMetricsResponse.SystemMetricsEntry)
675
+ })
676
+ ,
677
+ 'DESCRIPTOR' : _GETSYSTEMMETRICSRESPONSE,
678
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
679
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSystemMetricsResponse)
680
+ })
681
+ _sym_db.RegisterMessage(GetSystemMetricsResponse)
682
+ _sym_db.RegisterMessage(GetSystemMetricsResponse.SystemMetricsEntry)
683
+
684
+ StatusRequest = _reflection.GeneratedProtocolMessageType('StatusRequest', (_message.Message,), {
685
+ 'DESCRIPTOR' : _STATUSREQUEST,
686
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
687
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatusRequest)
688
+ })
689
+ _sym_db.RegisterMessage(StatusRequest)
690
+
691
+ StatusResponse = _reflection.GeneratedProtocolMessageType('StatusResponse', (_message.Message,), {
692
+ 'DESCRIPTOR' : _STATUSRESPONSE,
693
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
694
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatusResponse)
695
+ })
696
+ _sym_db.RegisterMessage(StatusResponse)
697
+
698
+ StopStatusRequest = _reflection.GeneratedProtocolMessageType('StopStatusRequest', (_message.Message,), {
699
+ 'DESCRIPTOR' : _STOPSTATUSREQUEST,
700
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
701
+ # @@protoc_insertion_point(class_scope:wandb_internal.StopStatusRequest)
702
+ })
703
+ _sym_db.RegisterMessage(StopStatusRequest)
704
+
705
+ StopStatusResponse = _reflection.GeneratedProtocolMessageType('StopStatusResponse', (_message.Message,), {
706
+ 'DESCRIPTOR' : _STOPSTATUSRESPONSE,
707
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
708
+ # @@protoc_insertion_point(class_scope:wandb_internal.StopStatusResponse)
709
+ })
710
+ _sym_db.RegisterMessage(StopStatusResponse)
711
+
712
+ NetworkStatusRequest = _reflection.GeneratedProtocolMessageType('NetworkStatusRequest', (_message.Message,), {
713
+ 'DESCRIPTOR' : _NETWORKSTATUSREQUEST,
714
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
715
+ # @@protoc_insertion_point(class_scope:wandb_internal.NetworkStatusRequest)
716
+ })
717
+ _sym_db.RegisterMessage(NetworkStatusRequest)
718
+
719
+ NetworkStatusResponse = _reflection.GeneratedProtocolMessageType('NetworkStatusResponse', (_message.Message,), {
720
+ 'DESCRIPTOR' : _NETWORKSTATUSRESPONSE,
721
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
722
+ # @@protoc_insertion_point(class_scope:wandb_internal.NetworkStatusResponse)
723
+ })
724
+ _sym_db.RegisterMessage(NetworkStatusResponse)
725
+
726
+ HttpResponse = _reflection.GeneratedProtocolMessageType('HttpResponse', (_message.Message,), {
727
+ 'DESCRIPTOR' : _HTTPRESPONSE,
728
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
729
+ # @@protoc_insertion_point(class_scope:wandb_internal.HttpResponse)
730
+ })
731
+ _sym_db.RegisterMessage(HttpResponse)
732
+
733
+ InternalMessagesRequest = _reflection.GeneratedProtocolMessageType('InternalMessagesRequest', (_message.Message,), {
734
+ 'DESCRIPTOR' : _INTERNALMESSAGESREQUEST,
735
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
736
+ # @@protoc_insertion_point(class_scope:wandb_internal.InternalMessagesRequest)
737
+ })
738
+ _sym_db.RegisterMessage(InternalMessagesRequest)
739
+
740
+ InternalMessagesResponse = _reflection.GeneratedProtocolMessageType('InternalMessagesResponse', (_message.Message,), {
741
+ 'DESCRIPTOR' : _INTERNALMESSAGESRESPONSE,
742
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
743
+ # @@protoc_insertion_point(class_scope:wandb_internal.InternalMessagesResponse)
744
+ })
745
+ _sym_db.RegisterMessage(InternalMessagesResponse)
746
+
747
+ InternalMessages = _reflection.GeneratedProtocolMessageType('InternalMessages', (_message.Message,), {
748
+ 'DESCRIPTOR' : _INTERNALMESSAGES,
749
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
750
+ # @@protoc_insertion_point(class_scope:wandb_internal.InternalMessages)
751
+ })
752
+ _sym_db.RegisterMessage(InternalMessages)
753
+
754
+ PollExitRequest = _reflection.GeneratedProtocolMessageType('PollExitRequest', (_message.Message,), {
755
+ 'DESCRIPTOR' : _POLLEXITREQUEST,
756
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
757
+ # @@protoc_insertion_point(class_scope:wandb_internal.PollExitRequest)
758
+ })
759
+ _sym_db.RegisterMessage(PollExitRequest)
760
+
761
+ PollExitResponse = _reflection.GeneratedProtocolMessageType('PollExitResponse', (_message.Message,), {
762
+ 'DESCRIPTOR' : _POLLEXITRESPONSE,
763
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
764
+ # @@protoc_insertion_point(class_scope:wandb_internal.PollExitResponse)
765
+ })
766
+ _sym_db.RegisterMessage(PollExitResponse)
767
+
768
+ OperationStats = _reflection.GeneratedProtocolMessageType('OperationStats', (_message.Message,), {
769
+ 'DESCRIPTOR' : _OPERATIONSTATS,
770
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
771
+ # @@protoc_insertion_point(class_scope:wandb_internal.OperationStats)
772
+ })
773
+ _sym_db.RegisterMessage(OperationStats)
774
+
775
+ Operation = _reflection.GeneratedProtocolMessageType('Operation', (_message.Message,), {
776
+ 'DESCRIPTOR' : _OPERATION,
777
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
778
+ # @@protoc_insertion_point(class_scope:wandb_internal.Operation)
779
+ })
780
+ _sym_db.RegisterMessage(Operation)
781
+
782
+ SyncOverwrite = _reflection.GeneratedProtocolMessageType('SyncOverwrite', (_message.Message,), {
783
+ 'DESCRIPTOR' : _SYNCOVERWRITE,
784
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
785
+ # @@protoc_insertion_point(class_scope:wandb_internal.SyncOverwrite)
786
+ })
787
+ _sym_db.RegisterMessage(SyncOverwrite)
788
+
789
+ SyncSkip = _reflection.GeneratedProtocolMessageType('SyncSkip', (_message.Message,), {
790
+ 'DESCRIPTOR' : _SYNCSKIP,
791
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
792
+ # @@protoc_insertion_point(class_scope:wandb_internal.SyncSkip)
793
+ })
794
+ _sym_db.RegisterMessage(SyncSkip)
795
+
796
+ SenderMarkRequest = _reflection.GeneratedProtocolMessageType('SenderMarkRequest', (_message.Message,), {
797
+ 'DESCRIPTOR' : _SENDERMARKREQUEST,
798
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
799
+ # @@protoc_insertion_point(class_scope:wandb_internal.SenderMarkRequest)
800
+ })
801
+ _sym_db.RegisterMessage(SenderMarkRequest)
802
+
803
+ SyncRequest = _reflection.GeneratedProtocolMessageType('SyncRequest', (_message.Message,), {
804
+ 'DESCRIPTOR' : _SYNCREQUEST,
805
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
806
+ # @@protoc_insertion_point(class_scope:wandb_internal.SyncRequest)
807
+ })
808
+ _sym_db.RegisterMessage(SyncRequest)
809
+
810
+ SyncResponse = _reflection.GeneratedProtocolMessageType('SyncResponse', (_message.Message,), {
811
+ 'DESCRIPTOR' : _SYNCRESPONSE,
812
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
813
+ # @@protoc_insertion_point(class_scope:wandb_internal.SyncResponse)
814
+ })
815
+ _sym_db.RegisterMessage(SyncResponse)
816
+
817
+ SenderReadRequest = _reflection.GeneratedProtocolMessageType('SenderReadRequest', (_message.Message,), {
818
+ 'DESCRIPTOR' : _SENDERREADREQUEST,
819
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
820
+ # @@protoc_insertion_point(class_scope:wandb_internal.SenderReadRequest)
821
+ })
822
+ _sym_db.RegisterMessage(SenderReadRequest)
823
+
824
+ StatusReportRequest = _reflection.GeneratedProtocolMessageType('StatusReportRequest', (_message.Message,), {
825
+ 'DESCRIPTOR' : _STATUSREPORTREQUEST,
826
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
827
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatusReportRequest)
828
+ })
829
+ _sym_db.RegisterMessage(StatusReportRequest)
830
+
831
+ SummaryRecordRequest = _reflection.GeneratedProtocolMessageType('SummaryRecordRequest', (_message.Message,), {
832
+ 'DESCRIPTOR' : _SUMMARYRECORDREQUEST,
833
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
834
+ # @@protoc_insertion_point(class_scope:wandb_internal.SummaryRecordRequest)
835
+ })
836
+ _sym_db.RegisterMessage(SummaryRecordRequest)
837
+
838
+ TelemetryRecordRequest = _reflection.GeneratedProtocolMessageType('TelemetryRecordRequest', (_message.Message,), {
839
+ 'DESCRIPTOR' : _TELEMETRYRECORDREQUEST,
840
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
841
+ # @@protoc_insertion_point(class_scope:wandb_internal.TelemetryRecordRequest)
842
+ })
843
+ _sym_db.RegisterMessage(TelemetryRecordRequest)
844
+
845
+ ServerInfoRequest = _reflection.GeneratedProtocolMessageType('ServerInfoRequest', (_message.Message,), {
846
+ 'DESCRIPTOR' : _SERVERINFOREQUEST,
847
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
848
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerInfoRequest)
849
+ })
850
+ _sym_db.RegisterMessage(ServerInfoRequest)
851
+
852
+ ServerInfoResponse = _reflection.GeneratedProtocolMessageType('ServerInfoResponse', (_message.Message,), {
853
+ 'DESCRIPTOR' : _SERVERINFORESPONSE,
854
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
855
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerInfoResponse)
856
+ })
857
+ _sym_db.RegisterMessage(ServerInfoResponse)
858
+
859
+ ServerMessages = _reflection.GeneratedProtocolMessageType('ServerMessages', (_message.Message,), {
860
+ 'DESCRIPTOR' : _SERVERMESSAGES,
861
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
862
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerMessages)
863
+ })
864
+ _sym_db.RegisterMessage(ServerMessages)
865
+
866
+ ServerMessage = _reflection.GeneratedProtocolMessageType('ServerMessage', (_message.Message,), {
867
+ 'DESCRIPTOR' : _SERVERMESSAGE,
868
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
869
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerMessage)
870
+ })
871
+ _sym_db.RegisterMessage(ServerMessage)
872
+
873
+ FileCounts = _reflection.GeneratedProtocolMessageType('FileCounts', (_message.Message,), {
874
+ 'DESCRIPTOR' : _FILECOUNTS,
875
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
876
+ # @@protoc_insertion_point(class_scope:wandb_internal.FileCounts)
877
+ })
878
+ _sym_db.RegisterMessage(FileCounts)
879
+
880
+ FilePusherStats = _reflection.GeneratedProtocolMessageType('FilePusherStats', (_message.Message,), {
881
+ 'DESCRIPTOR' : _FILEPUSHERSTATS,
882
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
883
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilePusherStats)
884
+ })
885
+ _sym_db.RegisterMessage(FilePusherStats)
886
+
887
+ FilesUploaded = _reflection.GeneratedProtocolMessageType('FilesUploaded', (_message.Message,), {
888
+ 'DESCRIPTOR' : _FILESUPLOADED,
889
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
890
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilesUploaded)
891
+ })
892
+ _sym_db.RegisterMessage(FilesUploaded)
893
+
894
+ FileTransferInfoRequest = _reflection.GeneratedProtocolMessageType('FileTransferInfoRequest', (_message.Message,), {
895
+ 'DESCRIPTOR' : _FILETRANSFERINFOREQUEST,
896
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
897
+ # @@protoc_insertion_point(class_scope:wandb_internal.FileTransferInfoRequest)
898
+ })
899
+ _sym_db.RegisterMessage(FileTransferInfoRequest)
900
+
901
+ LocalInfo = _reflection.GeneratedProtocolMessageType('LocalInfo', (_message.Message,), {
902
+ 'DESCRIPTOR' : _LOCALINFO,
903
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
904
+ # @@protoc_insertion_point(class_scope:wandb_internal.LocalInfo)
905
+ })
906
+ _sym_db.RegisterMessage(LocalInfo)
907
+
908
+ ShutdownRequest = _reflection.GeneratedProtocolMessageType('ShutdownRequest', (_message.Message,), {
909
+ 'DESCRIPTOR' : _SHUTDOWNREQUEST,
910
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
911
+ # @@protoc_insertion_point(class_scope:wandb_internal.ShutdownRequest)
912
+ })
913
+ _sym_db.RegisterMessage(ShutdownRequest)
914
+
915
+ ShutdownResponse = _reflection.GeneratedProtocolMessageType('ShutdownResponse', (_message.Message,), {
916
+ 'DESCRIPTOR' : _SHUTDOWNRESPONSE,
917
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
918
+ # @@protoc_insertion_point(class_scope:wandb_internal.ShutdownResponse)
919
+ })
920
+ _sym_db.RegisterMessage(ShutdownResponse)
921
+
922
+ AttachRequest = _reflection.GeneratedProtocolMessageType('AttachRequest', (_message.Message,), {
923
+ 'DESCRIPTOR' : _ATTACHREQUEST,
924
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
925
+ # @@protoc_insertion_point(class_scope:wandb_internal.AttachRequest)
926
+ })
927
+ _sym_db.RegisterMessage(AttachRequest)
928
+
929
+ AttachResponse = _reflection.GeneratedProtocolMessageType('AttachResponse', (_message.Message,), {
930
+ 'DESCRIPTOR' : _ATTACHRESPONSE,
931
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
932
+ # @@protoc_insertion_point(class_scope:wandb_internal.AttachResponse)
933
+ })
934
+ _sym_db.RegisterMessage(AttachResponse)
935
+
936
+ TestInjectRequest = _reflection.GeneratedProtocolMessageType('TestInjectRequest', (_message.Message,), {
937
+ 'DESCRIPTOR' : _TESTINJECTREQUEST,
938
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
939
+ # @@protoc_insertion_point(class_scope:wandb_internal.TestInjectRequest)
940
+ })
941
+ _sym_db.RegisterMessage(TestInjectRequest)
942
+
943
+ TestInjectResponse = _reflection.GeneratedProtocolMessageType('TestInjectResponse', (_message.Message,), {
944
+ 'DESCRIPTOR' : _TESTINJECTRESPONSE,
945
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
946
+ # @@protoc_insertion_point(class_scope:wandb_internal.TestInjectResponse)
947
+ })
948
+ _sym_db.RegisterMessage(TestInjectResponse)
949
+
950
+ HistoryAction = _reflection.GeneratedProtocolMessageType('HistoryAction', (_message.Message,), {
951
+ 'DESCRIPTOR' : _HISTORYACTION,
952
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
953
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryAction)
954
+ })
955
+ _sym_db.RegisterMessage(HistoryAction)
956
+
957
+ PartialHistoryRequest = _reflection.GeneratedProtocolMessageType('PartialHistoryRequest', (_message.Message,), {
958
+ 'DESCRIPTOR' : _PARTIALHISTORYREQUEST,
959
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
960
+ # @@protoc_insertion_point(class_scope:wandb_internal.PartialHistoryRequest)
961
+ })
962
+ _sym_db.RegisterMessage(PartialHistoryRequest)
963
+
964
+ PartialHistoryResponse = _reflection.GeneratedProtocolMessageType('PartialHistoryResponse', (_message.Message,), {
965
+ 'DESCRIPTOR' : _PARTIALHISTORYRESPONSE,
966
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
967
+ # @@protoc_insertion_point(class_scope:wandb_internal.PartialHistoryResponse)
968
+ })
969
+ _sym_db.RegisterMessage(PartialHistoryResponse)
970
+
971
+ SampledHistoryRequest = _reflection.GeneratedProtocolMessageType('SampledHistoryRequest', (_message.Message,), {
972
+ 'DESCRIPTOR' : _SAMPLEDHISTORYREQUEST,
973
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
974
+ # @@protoc_insertion_point(class_scope:wandb_internal.SampledHistoryRequest)
975
+ })
976
+ _sym_db.RegisterMessage(SampledHistoryRequest)
977
+
978
+ SampledHistoryItem = _reflection.GeneratedProtocolMessageType('SampledHistoryItem', (_message.Message,), {
979
+ 'DESCRIPTOR' : _SAMPLEDHISTORYITEM,
980
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
981
+ # @@protoc_insertion_point(class_scope:wandb_internal.SampledHistoryItem)
982
+ })
983
+ _sym_db.RegisterMessage(SampledHistoryItem)
984
+
985
+ SampledHistoryResponse = _reflection.GeneratedProtocolMessageType('SampledHistoryResponse', (_message.Message,), {
986
+ 'DESCRIPTOR' : _SAMPLEDHISTORYRESPONSE,
987
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
988
+ # @@protoc_insertion_point(class_scope:wandb_internal.SampledHistoryResponse)
989
+ })
990
+ _sym_db.RegisterMessage(SampledHistoryResponse)
991
+
992
+ RunStatusRequest = _reflection.GeneratedProtocolMessageType('RunStatusRequest', (_message.Message,), {
993
+ 'DESCRIPTOR' : _RUNSTATUSREQUEST,
994
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
995
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunStatusRequest)
996
+ })
997
+ _sym_db.RegisterMessage(RunStatusRequest)
998
+
999
+ RunStatusResponse = _reflection.GeneratedProtocolMessageType('RunStatusResponse', (_message.Message,), {
1000
+ 'DESCRIPTOR' : _RUNSTATUSRESPONSE,
1001
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1002
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunStatusResponse)
1003
+ })
1004
+ _sym_db.RegisterMessage(RunStatusResponse)
1005
+
1006
+ RunStartRequest = _reflection.GeneratedProtocolMessageType('RunStartRequest', (_message.Message,), {
1007
+ 'DESCRIPTOR' : _RUNSTARTREQUEST,
1008
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1009
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunStartRequest)
1010
+ })
1011
+ _sym_db.RegisterMessage(RunStartRequest)
1012
+
1013
+ RunStartResponse = _reflection.GeneratedProtocolMessageType('RunStartResponse', (_message.Message,), {
1014
+ 'DESCRIPTOR' : _RUNSTARTRESPONSE,
1015
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1016
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunStartResponse)
1017
+ })
1018
+ _sym_db.RegisterMessage(RunStartResponse)
1019
+
1020
+ RunFinishWithoutExitRequest = _reflection.GeneratedProtocolMessageType('RunFinishWithoutExitRequest', (_message.Message,), {
1021
+ 'DESCRIPTOR' : _RUNFINISHWITHOUTEXITREQUEST,
1022
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1023
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunFinishWithoutExitRequest)
1024
+ })
1025
+ _sym_db.RegisterMessage(RunFinishWithoutExitRequest)
1026
+
1027
+ RunFinishWithoutExitResponse = _reflection.GeneratedProtocolMessageType('RunFinishWithoutExitResponse', (_message.Message,), {
1028
+ 'DESCRIPTOR' : _RUNFINISHWITHOUTEXITRESPONSE,
1029
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1030
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunFinishWithoutExitResponse)
1031
+ })
1032
+ _sym_db.RegisterMessage(RunFinishWithoutExitResponse)
1033
+
1034
+ CheckVersionRequest = _reflection.GeneratedProtocolMessageType('CheckVersionRequest', (_message.Message,), {
1035
+ 'DESCRIPTOR' : _CHECKVERSIONREQUEST,
1036
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1037
+ # @@protoc_insertion_point(class_scope:wandb_internal.CheckVersionRequest)
1038
+ })
1039
+ _sym_db.RegisterMessage(CheckVersionRequest)
1040
+
1041
+ CheckVersionResponse = _reflection.GeneratedProtocolMessageType('CheckVersionResponse', (_message.Message,), {
1042
+ 'DESCRIPTOR' : _CHECKVERSIONRESPONSE,
1043
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1044
+ # @@protoc_insertion_point(class_scope:wandb_internal.CheckVersionResponse)
1045
+ })
1046
+ _sym_db.RegisterMessage(CheckVersionResponse)
1047
+
1048
+ JobInfoRequest = _reflection.GeneratedProtocolMessageType('JobInfoRequest', (_message.Message,), {
1049
+ 'DESCRIPTOR' : _JOBINFOREQUEST,
1050
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1051
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInfoRequest)
1052
+ })
1053
+ _sym_db.RegisterMessage(JobInfoRequest)
1054
+
1055
+ JobInfoResponse = _reflection.GeneratedProtocolMessageType('JobInfoResponse', (_message.Message,), {
1056
+ 'DESCRIPTOR' : _JOBINFORESPONSE,
1057
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1058
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInfoResponse)
1059
+ })
1060
+ _sym_db.RegisterMessage(JobInfoResponse)
1061
+
1062
+ LogArtifactRequest = _reflection.GeneratedProtocolMessageType('LogArtifactRequest', (_message.Message,), {
1063
+ 'DESCRIPTOR' : _LOGARTIFACTREQUEST,
1064
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1065
+ # @@protoc_insertion_point(class_scope:wandb_internal.LogArtifactRequest)
1066
+ })
1067
+ _sym_db.RegisterMessage(LogArtifactRequest)
1068
+
1069
+ LogArtifactResponse = _reflection.GeneratedProtocolMessageType('LogArtifactResponse', (_message.Message,), {
1070
+ 'DESCRIPTOR' : _LOGARTIFACTRESPONSE,
1071
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1072
+ # @@protoc_insertion_point(class_scope:wandb_internal.LogArtifactResponse)
1073
+ })
1074
+ _sym_db.RegisterMessage(LogArtifactResponse)
1075
+
1076
+ DownloadArtifactRequest = _reflection.GeneratedProtocolMessageType('DownloadArtifactRequest', (_message.Message,), {
1077
+ 'DESCRIPTOR' : _DOWNLOADARTIFACTREQUEST,
1078
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1079
+ # @@protoc_insertion_point(class_scope:wandb_internal.DownloadArtifactRequest)
1080
+ })
1081
+ _sym_db.RegisterMessage(DownloadArtifactRequest)
1082
+
1083
+ DownloadArtifactResponse = _reflection.GeneratedProtocolMessageType('DownloadArtifactResponse', (_message.Message,), {
1084
+ 'DESCRIPTOR' : _DOWNLOADARTIFACTRESPONSE,
1085
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1086
+ # @@protoc_insertion_point(class_scope:wandb_internal.DownloadArtifactResponse)
1087
+ })
1088
+ _sym_db.RegisterMessage(DownloadArtifactResponse)
1089
+
1090
+ KeepaliveRequest = _reflection.GeneratedProtocolMessageType('KeepaliveRequest', (_message.Message,), {
1091
+ 'DESCRIPTOR' : _KEEPALIVEREQUEST,
1092
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1093
+ # @@protoc_insertion_point(class_scope:wandb_internal.KeepaliveRequest)
1094
+ })
1095
+ _sym_db.RegisterMessage(KeepaliveRequest)
1096
+
1097
+ KeepaliveResponse = _reflection.GeneratedProtocolMessageType('KeepaliveResponse', (_message.Message,), {
1098
+ 'DESCRIPTOR' : _KEEPALIVERESPONSE,
1099
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1100
+ # @@protoc_insertion_point(class_scope:wandb_internal.KeepaliveResponse)
1101
+ })
1102
+ _sym_db.RegisterMessage(KeepaliveResponse)
1103
+
1104
+ ArtifactInfo = _reflection.GeneratedProtocolMessageType('ArtifactInfo', (_message.Message,), {
1105
+ 'DESCRIPTOR' : _ARTIFACTINFO,
1106
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1107
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactInfo)
1108
+ })
1109
+ _sym_db.RegisterMessage(ArtifactInfo)
1110
+
1111
+ GitInfo = _reflection.GeneratedProtocolMessageType('GitInfo', (_message.Message,), {
1112
+ 'DESCRIPTOR' : _GITINFO,
1113
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1114
+ # @@protoc_insertion_point(class_scope:wandb_internal.GitInfo)
1115
+ })
1116
+ _sym_db.RegisterMessage(GitInfo)
1117
+
1118
+ GitSource = _reflection.GeneratedProtocolMessageType('GitSource', (_message.Message,), {
1119
+ 'DESCRIPTOR' : _GITSOURCE,
1120
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1121
+ # @@protoc_insertion_point(class_scope:wandb_internal.GitSource)
1122
+ })
1123
+ _sym_db.RegisterMessage(GitSource)
1124
+
1125
+ ImageSource = _reflection.GeneratedProtocolMessageType('ImageSource', (_message.Message,), {
1126
+ 'DESCRIPTOR' : _IMAGESOURCE,
1127
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1128
+ # @@protoc_insertion_point(class_scope:wandb_internal.ImageSource)
1129
+ })
1130
+ _sym_db.RegisterMessage(ImageSource)
1131
+
1132
+ Source = _reflection.GeneratedProtocolMessageType('Source', (_message.Message,), {
1133
+ 'DESCRIPTOR' : _SOURCE,
1134
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1135
+ # @@protoc_insertion_point(class_scope:wandb_internal.Source)
1136
+ })
1137
+ _sym_db.RegisterMessage(Source)
1138
+
1139
+ JobSource = _reflection.GeneratedProtocolMessageType('JobSource', (_message.Message,), {
1140
+ 'DESCRIPTOR' : _JOBSOURCE,
1141
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1142
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobSource)
1143
+ })
1144
+ _sym_db.RegisterMessage(JobSource)
1145
+
1146
+ PartialJobArtifact = _reflection.GeneratedProtocolMessageType('PartialJobArtifact', (_message.Message,), {
1147
+ 'DESCRIPTOR' : _PARTIALJOBARTIFACT,
1148
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1149
+ # @@protoc_insertion_point(class_scope:wandb_internal.PartialJobArtifact)
1150
+ })
1151
+ _sym_db.RegisterMessage(PartialJobArtifact)
1152
+
1153
+ UseArtifactRecord = _reflection.GeneratedProtocolMessageType('UseArtifactRecord', (_message.Message,), {
1154
+ 'DESCRIPTOR' : _USEARTIFACTRECORD,
1155
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1156
+ # @@protoc_insertion_point(class_scope:wandb_internal.UseArtifactRecord)
1157
+ })
1158
+ _sym_db.RegisterMessage(UseArtifactRecord)
1159
+
1160
+ UseArtifactResult = _reflection.GeneratedProtocolMessageType('UseArtifactResult', (_message.Message,), {
1161
+ 'DESCRIPTOR' : _USEARTIFACTRESULT,
1162
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1163
+ # @@protoc_insertion_point(class_scope:wandb_internal.UseArtifactResult)
1164
+ })
1165
+ _sym_db.RegisterMessage(UseArtifactResult)
1166
+
1167
+ CancelRequest = _reflection.GeneratedProtocolMessageType('CancelRequest', (_message.Message,), {
1168
+ 'DESCRIPTOR' : _CANCELREQUEST,
1169
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1170
+ # @@protoc_insertion_point(class_scope:wandb_internal.CancelRequest)
1171
+ })
1172
+ _sym_db.RegisterMessage(CancelRequest)
1173
+
1174
+ CancelResponse = _reflection.GeneratedProtocolMessageType('CancelResponse', (_message.Message,), {
1175
+ 'DESCRIPTOR' : _CANCELRESPONSE,
1176
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1177
+ # @@protoc_insertion_point(class_scope:wandb_internal.CancelResponse)
1178
+ })
1179
+ _sym_db.RegisterMessage(CancelResponse)
1180
+
1181
+ DiskInfo = _reflection.GeneratedProtocolMessageType('DiskInfo', (_message.Message,), {
1182
+ 'DESCRIPTOR' : _DISKINFO,
1183
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1184
+ # @@protoc_insertion_point(class_scope:wandb_internal.DiskInfo)
1185
+ })
1186
+ _sym_db.RegisterMessage(DiskInfo)
1187
+
1188
+ MemoryInfo = _reflection.GeneratedProtocolMessageType('MemoryInfo', (_message.Message,), {
1189
+ 'DESCRIPTOR' : _MEMORYINFO,
1190
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1191
+ # @@protoc_insertion_point(class_scope:wandb_internal.MemoryInfo)
1192
+ })
1193
+ _sym_db.RegisterMessage(MemoryInfo)
1194
+
1195
+ CpuInfo = _reflection.GeneratedProtocolMessageType('CpuInfo', (_message.Message,), {
1196
+ 'DESCRIPTOR' : _CPUINFO,
1197
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1198
+ # @@protoc_insertion_point(class_scope:wandb_internal.CpuInfo)
1199
+ })
1200
+ _sym_db.RegisterMessage(CpuInfo)
1201
+
1202
+ AppleInfo = _reflection.GeneratedProtocolMessageType('AppleInfo', (_message.Message,), {
1203
+ 'DESCRIPTOR' : _APPLEINFO,
1204
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1205
+ # @@protoc_insertion_point(class_scope:wandb_internal.AppleInfo)
1206
+ })
1207
+ _sym_db.RegisterMessage(AppleInfo)
1208
+
1209
+ GpuNvidiaInfo = _reflection.GeneratedProtocolMessageType('GpuNvidiaInfo', (_message.Message,), {
1210
+ 'DESCRIPTOR' : _GPUNVIDIAINFO,
1211
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1212
+ # @@protoc_insertion_point(class_scope:wandb_internal.GpuNvidiaInfo)
1213
+ })
1214
+ _sym_db.RegisterMessage(GpuNvidiaInfo)
1215
+
1216
+ GpuAmdInfo = _reflection.GeneratedProtocolMessageType('GpuAmdInfo', (_message.Message,), {
1217
+ 'DESCRIPTOR' : _GPUAMDINFO,
1218
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1219
+ # @@protoc_insertion_point(class_scope:wandb_internal.GpuAmdInfo)
1220
+ })
1221
+ _sym_db.RegisterMessage(GpuAmdInfo)
1222
+
1223
+ TrainiumInfo = _reflection.GeneratedProtocolMessageType('TrainiumInfo', (_message.Message,), {
1224
+ 'DESCRIPTOR' : _TRAINIUMINFO,
1225
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1226
+ # @@protoc_insertion_point(class_scope:wandb_internal.TrainiumInfo)
1227
+ })
1228
+ _sym_db.RegisterMessage(TrainiumInfo)
1229
+
1230
+ TPUInfo = _reflection.GeneratedProtocolMessageType('TPUInfo', (_message.Message,), {
1231
+ 'DESCRIPTOR' : _TPUINFO,
1232
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1233
+ # @@protoc_insertion_point(class_scope:wandb_internal.TPUInfo)
1234
+ })
1235
+ _sym_db.RegisterMessage(TPUInfo)
1236
+
1237
+ MetadataRequest = _reflection.GeneratedProtocolMessageType('MetadataRequest', (_message.Message,), {
1238
+
1239
+ 'DiskEntry' : _reflection.GeneratedProtocolMessageType('DiskEntry', (_message.Message,), {
1240
+ 'DESCRIPTOR' : _METADATAREQUEST_DISKENTRY,
1241
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1242
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetadataRequest.DiskEntry)
1243
+ })
1244
+ ,
1245
+
1246
+ 'SlurmEntry' : _reflection.GeneratedProtocolMessageType('SlurmEntry', (_message.Message,), {
1247
+ 'DESCRIPTOR' : _METADATAREQUEST_SLURMENTRY,
1248
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1249
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetadataRequest.SlurmEntry)
1250
+ })
1251
+ ,
1252
+ 'DESCRIPTOR' : _METADATAREQUEST,
1253
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1254
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetadataRequest)
1255
+ })
1256
+ _sym_db.RegisterMessage(MetadataRequest)
1257
+ _sym_db.RegisterMessage(MetadataRequest.DiskEntry)
1258
+ _sym_db.RegisterMessage(MetadataRequest.SlurmEntry)
1259
+
1260
+ PythonPackagesRequest = _reflection.GeneratedProtocolMessageType('PythonPackagesRequest', (_message.Message,), {
1261
+
1262
+ 'PythonPackage' : _reflection.GeneratedProtocolMessageType('PythonPackage', (_message.Message,), {
1263
+ 'DESCRIPTOR' : _PYTHONPACKAGESREQUEST_PYTHONPACKAGE,
1264
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1265
+ # @@protoc_insertion_point(class_scope:wandb_internal.PythonPackagesRequest.PythonPackage)
1266
+ })
1267
+ ,
1268
+ 'DESCRIPTOR' : _PYTHONPACKAGESREQUEST,
1269
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1270
+ # @@protoc_insertion_point(class_scope:wandb_internal.PythonPackagesRequest)
1271
+ })
1272
+ _sym_db.RegisterMessage(PythonPackagesRequest)
1273
+ _sym_db.RegisterMessage(PythonPackagesRequest.PythonPackage)
1274
+
1275
+ JobInputPath = _reflection.GeneratedProtocolMessageType('JobInputPath', (_message.Message,), {
1276
+ 'DESCRIPTOR' : _JOBINPUTPATH,
1277
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1278
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputPath)
1279
+ })
1280
+ _sym_db.RegisterMessage(JobInputPath)
1281
+
1282
+ JobInputSource = _reflection.GeneratedProtocolMessageType('JobInputSource', (_message.Message,), {
1283
+
1284
+ 'RunConfigSource' : _reflection.GeneratedProtocolMessageType('RunConfigSource', (_message.Message,), {
1285
+ 'DESCRIPTOR' : _JOBINPUTSOURCE_RUNCONFIGSOURCE,
1286
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1287
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputSource.RunConfigSource)
1288
+ })
1289
+ ,
1290
+
1291
+ 'ConfigFileSource' : _reflection.GeneratedProtocolMessageType('ConfigFileSource', (_message.Message,), {
1292
+ 'DESCRIPTOR' : _JOBINPUTSOURCE_CONFIGFILESOURCE,
1293
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1294
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputSource.ConfigFileSource)
1295
+ })
1296
+ ,
1297
+ 'DESCRIPTOR' : _JOBINPUTSOURCE,
1298
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1299
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputSource)
1300
+ })
1301
+ _sym_db.RegisterMessage(JobInputSource)
1302
+ _sym_db.RegisterMessage(JobInputSource.RunConfigSource)
1303
+ _sym_db.RegisterMessage(JobInputSource.ConfigFileSource)
1304
+
1305
+ JobInputRequest = _reflection.GeneratedProtocolMessageType('JobInputRequest', (_message.Message,), {
1306
+ 'DESCRIPTOR' : _JOBINPUTREQUEST,
1307
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1308
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputRequest)
1309
+ })
1310
+ _sym_db.RegisterMessage(JobInputRequest)
1311
+
1312
+ if _descriptor._USE_C_DESCRIPTORS == False:
1313
+
1314
+ DESCRIPTOR._options = None
1315
+ DESCRIPTOR._serialized_options = b'Z\031core/pkg/service_go_proto'
1316
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY._options = None
1317
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY._serialized_options = b'8\001'
1318
+ _METADATAREQUEST_DISKENTRY._options = None
1319
+ _METADATAREQUEST_DISKENTRY._serialized_options = b'8\001'
1320
+ _METADATAREQUEST_SLURMENTRY._options = None
1321
+ _METADATAREQUEST_SLURMENTRY._serialized_options = b'8\001'
1322
+ _RECORD._serialized_start=180
1323
+ _RECORD._serialized_end=1353
1324
+ _CONTROL._serialized_start=1356
1325
+ _CONTROL._serialized_end=1524
1326
+ _RESULT._serialized_start=1527
1327
+ _RESULT._serialized_end=2026
1328
+ _FINALRECORD._serialized_start=2028
1329
+ _FINALRECORD._serialized_end=2086
1330
+ _VERSIONINFO._serialized_start=2088
1331
+ _VERSIONINFO._serialized_end=2186
1332
+ _HEADERRECORD._serialized_start=2188
1333
+ _HEADERRECORD._serialized_end=2298
1334
+ _FOOTERRECORD._serialized_start=2300
1335
+ _FOOTERRECORD._serialized_end=2359
1336
+ _RUNRECORD._serialized_start=2362
1337
+ _RUNRECORD._serialized_end=2968
1338
+ _GITREPORECORD._serialized_start=2970
1339
+ _GITREPORECORD._serialized_end=3029
1340
+ _RUNUPDATERESULT._serialized_start=3031
1341
+ _RUNUPDATERESULT._serialized_end=3130
1342
+ _ERRORINFO._serialized_start=3133
1343
+ _ERRORINFO._serialized_end=3305
1344
+ _ERRORINFO_ERRORCODE._serialized_start=3214
1345
+ _ERRORINFO_ERRORCODE._serialized_end=3305
1346
+ _RUNEXITRECORD._serialized_start=3307
1347
+ _RUNEXITRECORD._serialized_end=3403
1348
+ _RUNEXITRESULT._serialized_start=3405
1349
+ _RUNEXITRESULT._serialized_end=3420
1350
+ _RUNPREEMPTINGRECORD._serialized_start=3422
1351
+ _RUNPREEMPTINGRECORD._serialized_end=3488
1352
+ _RUNPREEMPTINGRESULT._serialized_start=3490
1353
+ _RUNPREEMPTINGRESULT._serialized_end=3511
1354
+ _SETTINGSRECORD._serialized_start=3513
1355
+ _SETTINGSRECORD._serialized_end=3618
1356
+ _SETTINGSITEM._serialized_start=3620
1357
+ _SETTINGSITEM._serialized_end=3667
1358
+ _HISTORYSTEP._serialized_start=3669
1359
+ _HISTORYSTEP._serialized_end=3695
1360
+ _HISTORYRECORD._serialized_start=3698
1361
+ _HISTORYRECORD._serialized_end=3844
1362
+ _HISTORYITEM._serialized_start=3846
1363
+ _HISTORYITEM._serialized_end=3912
1364
+ _HISTORYRESULT._serialized_start=3914
1365
+ _HISTORYRESULT._serialized_end=3929
1366
+ _OUTPUTRECORD._serialized_start=3932
1367
+ _OUTPUTRECORD._serialized_end=4152
1368
+ _OUTPUTRECORD_OUTPUTTYPE._serialized_start=4116
1369
+ _OUTPUTRECORD_OUTPUTTYPE._serialized_end=4152
1370
+ _OUTPUTRESULT._serialized_start=4154
1371
+ _OUTPUTRESULT._serialized_end=4168
1372
+ _OUTPUTRAWRECORD._serialized_start=4171
1373
+ _OUTPUTRAWRECORD._serialized_end=4397
1374
+ _OUTPUTRAWRECORD_OUTPUTTYPE._serialized_start=4116
1375
+ _OUTPUTRAWRECORD_OUTPUTTYPE._serialized_end=4152
1376
+ _OUTPUTRAWRESULT._serialized_start=4399
1377
+ _OUTPUTRAWRESULT._serialized_end=4416
1378
+ _METRICRECORD._serialized_start=4419
1379
+ _METRICRECORD._serialized_end=4827
1380
+ _METRICRECORD_METRICGOAL._serialized_start=4761
1381
+ _METRICRECORD_METRICGOAL._serialized_end=4827
1382
+ _METRICRESULT._serialized_start=4829
1383
+ _METRICRESULT._serialized_end=4843
1384
+ _METRICOPTIONS._serialized_start=4845
1385
+ _METRICOPTIONS._serialized_end=4912
1386
+ _METRICCONTROL._serialized_start=4914
1387
+ _METRICCONTROL._serialized_end=4948
1388
+ _METRICSUMMARY._serialized_start=4950
1389
+ _METRICSUMMARY._serialized_end=5061
1390
+ _CONFIGRECORD._serialized_start=5064
1391
+ _CONFIGRECORD._serialized_end=5211
1392
+ _CONFIGITEM._serialized_start=5213
1393
+ _CONFIGITEM._serialized_end=5278
1394
+ _CONFIGRESULT._serialized_start=5280
1395
+ _CONFIGRESULT._serialized_end=5294
1396
+ _SUMMARYRECORD._serialized_start=5297
1397
+ _SUMMARYRECORD._serialized_end=5447
1398
+ _SUMMARYITEM._serialized_start=5449
1399
+ _SUMMARYITEM._serialized_end=5515
1400
+ _SUMMARYRESULT._serialized_start=5517
1401
+ _SUMMARYRESULT._serialized_end=5532
1402
+ _FILESRECORD._serialized_start=5534
1403
+ _FILESRECORD._serialized_end=5634
1404
+ _FILESITEM._serialized_start=5637
1405
+ _FILESITEM._serialized_end=5873
1406
+ _FILESITEM_POLICYTYPE._serialized_start=5768
1407
+ _FILESITEM_POLICYTYPE._serialized_end=5808
1408
+ _FILESITEM_FILETYPE._serialized_start=5810
1409
+ _FILESITEM_FILETYPE._serialized_end=5867
1410
+ _FILESRESULT._serialized_start=5875
1411
+ _FILESRESULT._serialized_end=5888
1412
+ _STATSRECORD._serialized_start=5891
1413
+ _STATSRECORD._serialized_end=6121
1414
+ _STATSRECORD_STATSTYPE._serialized_start=6098
1415
+ _STATSRECORD_STATSTYPE._serialized_end=6121
1416
+ _STATSITEM._serialized_start=6123
1417
+ _STATSITEM._serialized_end=6167
1418
+ _ARTIFACTRECORD._serialized_start=6170
1419
+ _ARTIFACTRECORD._serialized_end=6657
1420
+ _ARTIFACTMANIFEST._serialized_start=6660
1421
+ _ARTIFACTMANIFEST._serialized_end=6876
1422
+ _ARTIFACTMANIFESTENTRY._serialized_start=6879
1423
+ _ARTIFACTMANIFESTENTRY._serialized_end=7086
1424
+ _EXTRAITEM._serialized_start=7088
1425
+ _EXTRAITEM._serialized_end=7132
1426
+ _STORAGEPOLICYCONFIGITEM._serialized_start=7134
1427
+ _STORAGEPOLICYCONFIGITEM._serialized_end=7192
1428
+ _ARTIFACTRESULT._serialized_start=7194
1429
+ _ARTIFACTRESULT._serialized_end=7210
1430
+ _LINKARTIFACTRESULT._serialized_start=7212
1431
+ _LINKARTIFACTRESULT._serialized_end=7232
1432
+ _LINKARTIFACTREQUEST._serialized_start=7235
1433
+ _LINKARTIFACTREQUEST._serialized_end=7475
1434
+ _LINKARTIFACTRESPONSE._serialized_start=7477
1435
+ _LINKARTIFACTRESPONSE._serialized_end=7522
1436
+ _TBRECORD._serialized_start=7524
1437
+ _TBRECORD._serialized_end=7628
1438
+ _TBRESULT._serialized_start=7630
1439
+ _TBRESULT._serialized_end=7640
1440
+ _ALERTRECORD._serialized_start=7642
1441
+ _ALERTRECORD._serialized_end=7767
1442
+ _ALERTRESULT._serialized_start=7769
1443
+ _ALERTRESULT._serialized_end=7782
1444
+ _REQUEST._serialized_start=7785
1445
+ _REQUEST._serialized_end=9909
1446
+ _RESPONSE._serialized_start=9912
1447
+ _RESPONSE._serialized_end=11580
1448
+ _DEFERREQUEST._serialized_start=11583
1449
+ _DEFERREQUEST._serialized_end=11903
1450
+ _DEFERREQUEST_DEFERSTATE._serialized_start=11656
1451
+ _DEFERREQUEST_DEFERSTATE._serialized_end=11903
1452
+ _PAUSEREQUEST._serialized_start=11905
1453
+ _PAUSEREQUEST._serialized_end=11965
1454
+ _PAUSERESPONSE._serialized_start=11967
1455
+ _PAUSERESPONSE._serialized_end=11982
1456
+ _RESUMEREQUEST._serialized_start=11984
1457
+ _RESUMEREQUEST._serialized_end=12045
1458
+ _RESUMERESPONSE._serialized_start=12047
1459
+ _RESUMERESPONSE._serialized_end=12063
1460
+ _LOGINREQUEST._serialized_start=12065
1461
+ _LOGINREQUEST._serialized_end=12142
1462
+ _LOGINRESPONSE._serialized_start=12144
1463
+ _LOGINRESPONSE._serialized_end=12182
1464
+ _GETSUMMARYREQUEST._serialized_start=12184
1465
+ _GETSUMMARYREQUEST._serialized_end=12249
1466
+ _GETSUMMARYRESPONSE._serialized_start=12251
1467
+ _GETSUMMARYRESPONSE._serialized_end=12314
1468
+ _GETSYSTEMMETRICSREQUEST._serialized_start=12316
1469
+ _GETSYSTEMMETRICSREQUEST._serialized_end=12387
1470
+ _SYSTEMMETRICSAMPLE._serialized_start=12389
1471
+ _SYSTEMMETRICSAMPLE._serialized_end=12471
1472
+ _SYSTEMMETRICSBUFFER._serialized_start=12473
1473
+ _SYSTEMMETRICSBUFFER._serialized_end=12546
1474
+ _GETSYSTEMMETRICSRESPONSE._serialized_start=12549
1475
+ _GETSYSTEMMETRICSRESPONSE._serialized_end=12751
1476
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY._serialized_start=12662
1477
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY._serialized_end=12751
1478
+ _STATUSREQUEST._serialized_start=12753
1479
+ _STATUSREQUEST._serialized_end=12814
1480
+ _STATUSRESPONSE._serialized_start=12816
1481
+ _STATUSRESPONSE._serialized_end=12857
1482
+ _STOPSTATUSREQUEST._serialized_start=12859
1483
+ _STOPSTATUSREQUEST._serialized_end=12924
1484
+ _STOPSTATUSRESPONSE._serialized_start=12926
1485
+ _STOPSTATUSRESPONSE._serialized_end=12971
1486
+ _NETWORKSTATUSREQUEST._serialized_start=12973
1487
+ _NETWORKSTATUSREQUEST._serialized_end=13041
1488
+ _NETWORKSTATUSRESPONSE._serialized_start=13043
1489
+ _NETWORKSTATUSRESPONSE._serialized_end=13123
1490
+ _HTTPRESPONSE._serialized_start=13125
1491
+ _HTTPRESPONSE._serialized_end=13193
1492
+ _INTERNALMESSAGESREQUEST._serialized_start=13195
1493
+ _INTERNALMESSAGESREQUEST._serialized_end=13266
1494
+ _INTERNALMESSAGESRESPONSE._serialized_start=13268
1495
+ _INTERNALMESSAGESRESPONSE._serialized_end=13346
1496
+ _INTERNALMESSAGES._serialized_start=13348
1497
+ _INTERNALMESSAGES._serialized_end=13383
1498
+ _POLLEXITREQUEST._serialized_start=13385
1499
+ _POLLEXITREQUEST._serialized_end=13448
1500
+ _POLLEXITRESPONSE._serialized_start=13451
1501
+ _POLLEXITRESPONSE._serialized_end=13696
1502
+ _OPERATIONSTATS._serialized_start=13698
1503
+ _OPERATIONSTATS._serialized_end=13787
1504
+ _OPERATION._serialized_start=13790
1505
+ _OPERATION._serialized_end=13925
1506
+ _SYNCOVERWRITE._serialized_start=13927
1507
+ _SYNCOVERWRITE._serialized_end=13991
1508
+ _SYNCSKIP._serialized_start=13993
1509
+ _SYNCSKIP._serialized_end=14023
1510
+ _SENDERMARKREQUEST._serialized_start=14025
1511
+ _SENDERMARKREQUEST._serialized_end=14044
1512
+ _SYNCREQUEST._serialized_start=14047
1513
+ _SYNCREQUEST._serialized_end=14194
1514
+ _SYNCRESPONSE._serialized_start=14196
1515
+ _SYNCRESPONSE._serialized_end=14265
1516
+ _SENDERREADREQUEST._serialized_start=14267
1517
+ _SENDERREADREQUEST._serialized_end=14330
1518
+ _STATUSREPORTREQUEST._serialized_start=14332
1519
+ _STATUSREPORTREQUEST._serialized_end=14441
1520
+ _SUMMARYRECORDREQUEST._serialized_start=14443
1521
+ _SUMMARYRECORDREQUEST._serialized_end=14513
1522
+ _TELEMETRYRECORDREQUEST._serialized_start=14515
1523
+ _TELEMETRYRECORDREQUEST._serialized_end=14591
1524
+ _SERVERINFOREQUEST._serialized_start=14593
1525
+ _SERVERINFOREQUEST._serialized_end=14658
1526
+ _SERVERINFORESPONSE._serialized_start=14660
1527
+ _SERVERINFORESPONSE._serialized_end=14784
1528
+ _SERVERMESSAGES._serialized_start=14786
1529
+ _SERVERMESSAGES._serialized_end=14847
1530
+ _SERVERMESSAGE._serialized_start=14849
1531
+ _SERVERMESSAGE._serialized_end=14950
1532
+ _FILECOUNTS._serialized_start=14952
1533
+ _FILECOUNTS._serialized_end=15051
1534
+ _FILEPUSHERSTATS._serialized_start=15053
1535
+ _FILEPUSHERSTATS._serialized_end=15138
1536
+ _FILESUPLOADED._serialized_start=15140
1537
+ _FILESUPLOADED._serialized_end=15170
1538
+ _FILETRANSFERINFOREQUEST._serialized_start=15173
1539
+ _FILETRANSFERINFOREQUEST._serialized_end=15417
1540
+ _FILETRANSFERINFOREQUEST_TRANSFERTYPE._serialized_start=15377
1541
+ _FILETRANSFERINFOREQUEST_TRANSFERTYPE._serialized_end=15417
1542
+ _LOCALINFO._serialized_start=15419
1543
+ _LOCALINFO._serialized_end=15468
1544
+ _SHUTDOWNREQUEST._serialized_start=15470
1545
+ _SHUTDOWNREQUEST._serialized_end=15533
1546
+ _SHUTDOWNRESPONSE._serialized_start=15535
1547
+ _SHUTDOWNRESPONSE._serialized_end=15553
1548
+ _ATTACHREQUEST._serialized_start=15555
1549
+ _ATTACHREQUEST._serialized_end=15635
1550
+ _ATTACHRESPONSE._serialized_start=15637
1551
+ _ATTACHRESPONSE._serialized_end=15735
1552
+ _TESTINJECTREQUEST._serialized_start=15738
1553
+ _TESTINJECTREQUEST._serialized_end=16079
1554
+ _TESTINJECTRESPONSE._serialized_start=16081
1555
+ _TESTINJECTRESPONSE._serialized_end=16101
1556
+ _HISTORYACTION._serialized_start=16103
1557
+ _HISTORYACTION._serialized_end=16133
1558
+ _PARTIALHISTORYREQUEST._serialized_start=16136
1559
+ _PARTIALHISTORYREQUEST._serialized_end=16338
1560
+ _PARTIALHISTORYRESPONSE._serialized_start=16340
1561
+ _PARTIALHISTORYRESPONSE._serialized_end=16364
1562
+ _SAMPLEDHISTORYREQUEST._serialized_start=16366
1563
+ _SAMPLEDHISTORYREQUEST._serialized_end=16435
1564
+ _SAMPLEDHISTORYITEM._serialized_start=16437
1565
+ _SAMPLEDHISTORYITEM._serialized_end=16532
1566
+ _SAMPLEDHISTORYRESPONSE._serialized_start=16534
1567
+ _SAMPLEDHISTORYRESPONSE._serialized_end=16608
1568
+ _RUNSTATUSREQUEST._serialized_start=16610
1569
+ _RUNSTATUSREQUEST._serialized_end=16674
1570
+ _RUNSTATUSRESPONSE._serialized_start=16676
1571
+ _RUNSTATUSRESPONSE._serialized_end=16796
1572
+ _RUNSTARTREQUEST._serialized_start=16798
1573
+ _RUNSTARTREQUEST._serialized_end=16901
1574
+ _RUNSTARTRESPONSE._serialized_start=16903
1575
+ _RUNSTARTRESPONSE._serialized_end=16921
1576
+ _RUNFINISHWITHOUTEXITREQUEST._serialized_start=16923
1577
+ _RUNFINISHWITHOUTEXITREQUEST._serialized_end=16998
1578
+ _RUNFINISHWITHOUTEXITRESPONSE._serialized_start=17000
1579
+ _RUNFINISHWITHOUTEXITRESPONSE._serialized_end=17030
1580
+ _CHECKVERSIONREQUEST._serialized_start=17032
1581
+ _CHECKVERSIONREQUEST._serialized_end=17124
1582
+ _CHECKVERSIONRESPONSE._serialized_start=17126
1583
+ _CHECKVERSIONRESPONSE._serialized_end=17219
1584
+ _JOBINFOREQUEST._serialized_start=17221
1585
+ _JOBINFOREQUEST._serialized_end=17283
1586
+ _JOBINFORESPONSE._serialized_start=17285
1587
+ _JOBINFORESPONSE._serialized_end=17339
1588
+ _LOGARTIFACTREQUEST._serialized_start=17342
1589
+ _LOGARTIFACTREQUEST._serialized_end=17501
1590
+ _LOGARTIFACTRESPONSE._serialized_start=17503
1591
+ _LOGARTIFACTRESPONSE._serialized_end=17568
1592
+ _DOWNLOADARTIFACTREQUEST._serialized_start=17571
1593
+ _DOWNLOADARTIFACTREQUEST._serialized_end=17761
1594
+ _DOWNLOADARTIFACTRESPONSE._serialized_start=17763
1595
+ _DOWNLOADARTIFACTRESPONSE._serialized_end=17812
1596
+ _KEEPALIVEREQUEST._serialized_start=17814
1597
+ _KEEPALIVEREQUEST._serialized_end=17878
1598
+ _KEEPALIVERESPONSE._serialized_start=17880
1599
+ _KEEPALIVERESPONSE._serialized_end=17899
1600
+ _ARTIFACTINFO._serialized_start=17901
1601
+ _ARTIFACTINFO._serialized_end=18014
1602
+ _GITINFO._serialized_start=18016
1603
+ _GITINFO._serialized_end=18057
1604
+ _GITSOURCE._serialized_start=18060
1605
+ _GITSOURCE._serialized_end=18195
1606
+ _IMAGESOURCE._serialized_start=18197
1607
+ _IMAGESOURCE._serialized_end=18225
1608
+ _SOURCE._serialized_start=18228
1609
+ _SOURCE._serialized_end=18368
1610
+ _JOBSOURCE._serialized_start=18370
1611
+ _JOBSOURCE._serialized_end=18477
1612
+ _PARTIALJOBARTIFACT._serialized_start=18479
1613
+ _PARTIALJOBARTIFACT._serialized_end=18565
1614
+ _USEARTIFACTRECORD._serialized_start=18568
1615
+ _USEARTIFACTRECORD._serialized_end=18725
1616
+ _USEARTIFACTRESULT._serialized_start=18727
1617
+ _USEARTIFACTRESULT._serialized_end=18746
1618
+ _CANCELREQUEST._serialized_start=18748
1619
+ _CANCELREQUEST._serialized_end=18830
1620
+ _CANCELRESPONSE._serialized_start=18832
1621
+ _CANCELRESPONSE._serialized_end=18848
1622
+ _DISKINFO._serialized_start=18850
1623
+ _DISKINFO._serialized_end=18889
1624
+ _MEMORYINFO._serialized_start=18891
1625
+ _MEMORYINFO._serialized_end=18918
1626
+ _CPUINFO._serialized_start=18920
1627
+ _CPUINFO._serialized_end=18967
1628
+ _APPLEINFO._serialized_start=18970
1629
+ _APPLEINFO._serialized_end=19124
1630
+ _GPUNVIDIAINFO._serialized_start=19126
1631
+ _GPUNVIDIAINFO._serialized_end=19219
1632
+ _GPUAMDINFO._serialized_start=19222
1633
+ _GPUAMDINFO._serialized_end=19487
1634
+ _TRAINIUMINFO._serialized_start=19489
1635
+ _TRAINIUMINFO._serialized_end=19599
1636
+ _TPUINFO._serialized_start=19601
1637
+ _TPUINFO._serialized_end=19682
1638
+ _METADATAREQUEST._serialized_start=19685
1639
+ _METADATAREQUEST._serialized_end=20848
1640
+ _METADATAREQUEST_DISKENTRY._serialized_start=20733
1641
+ _METADATAREQUEST_DISKENTRY._serialized_end=20802
1642
+ _METADATAREQUEST_SLURMENTRY._serialized_start=20804
1643
+ _METADATAREQUEST_SLURMENTRY._serialized_end=20848
1644
+ _PYTHONPACKAGESREQUEST._serialized_start=20851
1645
+ _PYTHONPACKAGESREQUEST._serialized_end=20992
1646
+ _PYTHONPACKAGESREQUEST_PYTHONPACKAGE._serialized_start=20946
1647
+ _PYTHONPACKAGESREQUEST_PYTHONPACKAGE._serialized_end=20992
1648
+ _JOBINPUTPATH._serialized_start=20994
1649
+ _JOBINPUTPATH._serialized_end=21022
1650
+ _JOBINPUTSOURCE._serialized_start=21025
1651
+ _JOBINPUTSOURCE._serialized_end=21239
1652
+ _JOBINPUTSOURCE_RUNCONFIGSOURCE._serialized_start=21178
1653
+ _JOBINPUTSOURCE_RUNCONFIGSOURCE._serialized_end=21195
1654
+ _JOBINPUTSOURCE_CONFIGFILESOURCE._serialized_start=21197
1655
+ _JOBINPUTSOURCE_CONFIGFILESOURCE._serialized_end=21229
1656
+ _JOBINPUTREQUEST._serialized_start=21242
1657
+ _JOBINPUTREQUEST._serialized_end=21441
1658
+ # @@protoc_insertion_point(module_scope)