wandb 0.17.9__py3-none-any.whl → 0.18.0rc1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. wandb/__init__.py +1 -6
  2. wandb/__init__.pyi +27 -17
  3. wandb/analytics/sentry.py +1 -1
  4. wandb/bin/nvidia_gpu_stats +0 -0
  5. wandb/cli/cli.py +15 -10
  6. wandb/env.py +1 -13
  7. wandb/integration/tensorboard/log.py +0 -3
  8. wandb/jupyter.py +18 -3
  9. wandb/proto/v3/wandb_internal_pb2.py +230 -230
  10. wandb/proto/v3/wandb_settings_pb2.py +2 -2
  11. wandb/proto/v4/wandb_internal_pb2.py +230 -230
  12. wandb/proto/v4/wandb_settings_pb2.py +2 -2
  13. wandb/proto/v5/wandb_internal_pb2.py +230 -230
  14. wandb/proto/v5/wandb_settings_pb2.py +2 -2
  15. wandb/sdk/artifacts/_validators.py +45 -0
  16. wandb/sdk/artifacts/artifact.py +100 -45
  17. wandb/sdk/artifacts/artifact_saver.py +6 -0
  18. wandb/sdk/interface/interface.py +7 -4
  19. wandb/sdk/internal/internal_api.py +16 -6
  20. wandb/sdk/internal/sender.py +1 -0
  21. wandb/sdk/internal/system/assets/gpu_amd.py +11 -2
  22. wandb/sdk/launch/inputs/internal.py +2 -2
  23. wandb/sdk/lib/_settings_toposort_generated.py +1 -3
  24. wandb/sdk/service/server_sock.py +1 -1
  25. wandb/sdk/service/service.py +1 -2
  26. wandb/sdk/wandb_init.py +11 -6
  27. wandb/sdk/wandb_login.py +1 -0
  28. wandb/sdk/wandb_require.py +4 -20
  29. wandb/sdk/wandb_run.py +26 -10
  30. wandb/sdk/wandb_settings.py +1 -3
  31. {wandb-0.17.9.dist-info → wandb-0.18.0rc1.dist-info}/METADATA +1 -1
  32. {wandb-0.17.9.dist-info → wandb-0.18.0rc1.dist-info}/RECORD +35 -34
  33. {wandb-0.17.9.dist-info → wandb-0.18.0rc1.dist-info}/WHEEL +0 -0
  34. {wandb-0.17.9.dist-info → wandb-0.18.0rc1.dist-info}/entry_points.txt +0 -0
  35. {wandb-0.17.9.dist-info → wandb-0.18.0rc1.dist-info}/licenses/LICENSE +0 -0
wandb/sdk/wandb_init.py CHANGED
@@ -273,8 +273,9 @@ class _WandbInit:
273
273
 
274
274
  tensorboard = kwargs.pop("tensorboard", None)
275
275
  sync_tensorboard = kwargs.pop("sync_tensorboard", None)
276
- if tensorboard or sync_tensorboard and len(wandb.patched["tensorboard"]) == 0:
277
- wandb.tensorboard.patch() # type: ignore
276
+ if tensorboard or sync_tensorboard:
277
+ if len(wandb.patched["tensorboard"]) == 0:
278
+ wandb.tensorboard.patch() # type: ignore
278
279
  with telemetry.context(obj=self._init_telemetry_obj) as tel:
279
280
  tel.feature.tensorboard_sync = True
280
281
 
@@ -737,10 +738,7 @@ class _WandbInit:
737
738
  tel.feature.flow_control_disabled = True
738
739
  if self.settings._flow_control_custom:
739
740
  tel.feature.flow_control_custom = True
740
- if (
741
- self.settings._require_core
742
- and not self.settings._require_legacy_service
743
- ):
741
+ if not self.settings._require_legacy_service:
744
742
  tel.feature.core = True
745
743
  if self.settings._shared:
746
744
  wandb.termwarn(
@@ -1157,6 +1155,7 @@ def init(
1157
1155
  mode if a user isn't logged in to W&B. (default: `False`)
1158
1156
  sync_tensorboard: (bool, optional) Synchronize wandb logs from tensorboard or
1159
1157
  tensorboardX and save the relevant events file. (default: `False`)
1158
+ tensorboard: (bool, optional) Alias for `sync_tensorboard`, deprecated.
1160
1159
  monitor_gym: (bool, optional) Automatically log videos of environment when
1161
1160
  using OpenAI Gym. (default: `False`)
1162
1161
  See [our guide to this integration](https://docs.wandb.com/guides/integrations/openai-gym).
@@ -1170,6 +1169,12 @@ def init(
1170
1169
  a moment in a previous run to fork a new run from. Creates a new run that picks up
1171
1170
  logging history from the specified run at the specified moment. The target run must
1172
1171
  be in the current project. Example: `fork_from="my-run-id?_step=1234"`.
1172
+ resume_from: (str, optional) A string with the format {run_id}?_step={step} describing
1173
+ a moment in a previous run to resume a run from. This allows users to truncate
1174
+ the history logged to a run at an intermediate step and resume logging from that step.
1175
+ It uses run forking under the hood. The target run must be in the
1176
+ current project. Example: `resume_from="my-run-id?_step=1234"`.
1177
+ settings: (dict, wandb.Settings, optional) Settings to use for this run. (default: None)
1173
1178
 
1174
1179
  Examples:
1175
1180
  ### Set where the run is logged
wandb/sdk/wandb_login.py CHANGED
@@ -64,6 +64,7 @@ def login(
64
64
  "allow", only create an anonymous user if the user
65
65
  isn't already logged in. If set to "never", never log a
66
66
  user anonymously. Default set to "never".
67
+ key: (string, optional) The API key to use.
67
68
  relogin: (bool, optional) If true, will re-prompt for API key.
68
69
  host: (string, optional) The host to connect to.
69
70
  force: (bool, optional) If true, will force a relogin.
@@ -13,12 +13,7 @@ import os
13
13
  from typing import Optional, Sequence, Union
14
14
 
15
15
  import wandb
16
- from wandb.env import (
17
- _REQUIRE_CORE,
18
- _REQUIRE_LEGACY_SERVICE,
19
- is_require_core,
20
- is_require_legacy_service,
21
- )
16
+ from wandb.env import _REQUIRE_LEGACY_SERVICE
22
17
  from wandb.errors import UnsupportedError
23
18
  from wandb.sdk import wandb_run
24
19
  from wandb.sdk.lib.wburls import wburls
@@ -46,22 +41,11 @@ class _Requires:
46
41
  self._require_service()
47
42
 
48
43
  def require_core(self) -> None:
49
- if is_require_legacy_service():
50
- raise UnsupportedError(
51
- 'Cannot use wandb.require("core") because legacy-service'
52
- " is already required--did you use"
53
- ' wandb.require("legacy-service") or set the'
54
- " WANDB__REQUIRE_LEGACY_SERVICE environment variable?"
55
- )
56
- os.environ[_REQUIRE_CORE] = "true"
44
+ wandb.termwarn(
45
+ "`wandb.require('core')` is redundant as it is now the default behavior."
46
+ )
57
47
 
58
48
  def require_legacy_service(self) -> None:
59
- if is_require_core():
60
- raise UnsupportedError(
61
- 'Cannot use wandb.require("legacy-service") because core'
62
- ' is already required--did you use wandb.require("core")'
63
- " or set the WANDB__REQUIRE_CORE environment variable?"
64
- )
65
49
  os.environ[_REQUIRE_LEGACY_SERVICE] = "true"
66
50
 
67
51
  def apply(self) -> None:
wandb/sdk/wandb_run.py CHANGED
@@ -69,6 +69,7 @@ from wandb.util import (
69
69
  )
70
70
 
71
71
  from . import wandb_config, wandb_metric, wandb_summary
72
+ from .artifacts._validators import validate_aliases, validate_tags
72
73
  from .data_types._dtypes import TypeRegistry
73
74
  from .interface.interface import FilesDict, GlobStr, InterfaceBase, PolicyName
74
75
  from .interface.summary_record import SummaryRecord
@@ -3111,6 +3112,7 @@ class Run:
3111
3112
  name: Optional[str] = None,
3112
3113
  type: Optional[str] = None,
3113
3114
  aliases: Optional[List[str]] = None,
3115
+ tags: Optional[List[str]] = None,
3114
3116
  ) -> Artifact:
3115
3117
  """Declare an artifact as an output of a run.
3116
3118
 
@@ -3131,12 +3133,17 @@ class Run:
3131
3133
  type: (str) The type of artifact to log, examples include `dataset`, `model`
3132
3134
  aliases: (list, optional) Aliases to apply to this artifact,
3133
3135
  defaults to `["latest"]`
3136
+ tags: (list, optional) Tags to apply to this artifact, if any.
3134
3137
 
3135
3138
  Returns:
3136
3139
  An `Artifact` object.
3137
3140
  """
3138
3141
  return self._log_artifact(
3139
- artifact_or_path, name=name, type=type, aliases=aliases
3142
+ artifact_or_path,
3143
+ name=name,
3144
+ type=type,
3145
+ aliases=aliases,
3146
+ tags=tags,
3140
3147
  )
3141
3148
 
3142
3149
  @_run_decorator._noop_on_finish()
@@ -3253,6 +3260,7 @@ class Run:
3253
3260
  name: Optional[str] = None,
3254
3261
  type: Optional[str] = None,
3255
3262
  aliases: Optional[List[str]] = None,
3263
+ tags: Optional[List[str]] = None,
3256
3264
  distributed_id: Optional[str] = None,
3257
3265
  finalize: bool = True,
3258
3266
  is_user_created: bool = False,
@@ -3263,13 +3271,17 @@ class Run:
3263
3271
  wandb.termwarn(
3264
3272
  "Artifacts logged anonymously cannot be claimed and expire after 7 days."
3265
3273
  )
3274
+
3266
3275
  if not finalize and distributed_id is None:
3267
3276
  raise TypeError("Must provide distributed_id if artifact is not finalize")
3277
+
3268
3278
  if aliases is not None:
3269
- if any(invalid in alias for alias in aliases for invalid in ["/", ":"]):
3270
- raise ValueError(
3271
- "Aliases must not contain any of the following characters: /, :"
3272
- )
3279
+ aliases = validate_aliases(aliases)
3280
+
3281
+ # Check if artifact tags are supported
3282
+ if tags is not None:
3283
+ tags = validate_tags(tags)
3284
+
3273
3285
  artifact, aliases = self._prepare_artifact(
3274
3286
  artifact_or_path, name, type, aliases
3275
3287
  )
@@ -3281,6 +3293,7 @@ class Run:
3281
3293
  self,
3282
3294
  artifact,
3283
3295
  aliases,
3296
+ tags,
3284
3297
  self.step,
3285
3298
  finalize=finalize,
3286
3299
  is_user_created=is_user_created,
@@ -3292,6 +3305,7 @@ class Run:
3292
3305
  self,
3293
3306
  artifact,
3294
3307
  aliases,
3308
+ tags,
3295
3309
  finalize=finalize,
3296
3310
  is_user_created=is_user_created,
3297
3311
  use_after_commit=use_after_commit,
@@ -3301,6 +3315,7 @@ class Run:
3301
3315
  self,
3302
3316
  artifact,
3303
3317
  aliases,
3318
+ tags,
3304
3319
  finalize=finalize,
3305
3320
  is_user_created=is_user_created,
3306
3321
  use_after_commit=use_after_commit,
@@ -3374,6 +3389,7 @@ class Run:
3374
3389
  "You must pass an instance of wandb.Artifact or a "
3375
3390
  "valid file path to log_artifact"
3376
3391
  )
3392
+
3377
3393
  artifact.finalize()
3378
3394
  return artifact, _resolve_aliases(aliases)
3379
3395
 
@@ -3512,7 +3528,7 @@ class Run:
3512
3528
  registered_model_name: (str) - the name of the registered model that the model is to be linked to.
3513
3529
  A registered model is a collection of model versions linked to the model registry, typically representing a
3514
3530
  team's specific ML Task. The entity that this registered model belongs to will be derived from the run
3515
- name: (str, optional) - the name of the model artifact that files in 'path' will be logged to. This will
3531
+ name: (str, optional) - the name of the model artifact that files in 'path' will be logged to. This will
3516
3532
  default to the basename of the path prepended with the current run id if not specified.
3517
3533
  aliases: (List[str], optional) - alias(es) that will only be applied on this linked artifact
3518
3534
  inside the registered model.
@@ -4244,13 +4260,13 @@ class Run:
4244
4260
  printer: Union["PrinterTerm", "PrinterJupyter"],
4245
4261
  ) -> None:
4246
4262
  """Prints a message advertising the upcoming core release."""
4247
- if quiet or settings._require_core:
4263
+ if quiet or not settings._require_legacy_service:
4248
4264
  return
4249
4265
 
4250
4266
  printer.display(
4251
- "The new W&B backend becomes opt-out in version 0.18.0;"
4252
- ' try it out with `wandb.require("core")`!'
4253
- " See https://wandb.me/wandb-core for more information.",
4267
+ "The legacy backend is deprecated. In future versions, `wandb-core` will become "
4268
+ "the sole backend service, and the `wandb.require('legacy-service')` flag will be removed. "
4269
+ "For more information, visit https://wandb.me/wandb-core",
4254
4270
  level="warn",
4255
4271
  )
4256
4272
 
@@ -355,7 +355,6 @@ class SettingsData:
355
355
  ] # custom proxy servers for the requests to W&B [scheme -> url]
356
356
  _python: str
357
357
  _runqueue_item_id: str
358
- _require_core: bool
359
358
  _require_legacy_service: bool
360
359
  _save_requirements: bool
361
360
  _service_transport: str
@@ -719,7 +718,6 @@ class Settings(SettingsData):
719
718
  # TODO: deprecate and ask the user to use http_proxy and https_proxy instead
720
719
  "preprocessor": _str_as_json,
721
720
  },
722
- _require_core={"value": False, "preprocessor": _str_as_bool},
723
721
  _require_legacy_service={"value": False, "preprocessor": _str_as_bool},
724
722
  _save_requirements={"value": True, "preprocessor": _str_as_bool},
725
723
  _service_wait={
@@ -1183,7 +1181,7 @@ class Settings(SettingsData):
1183
1181
  value = _str_as_bool(value)
1184
1182
  if value:
1185
1183
  wandb.termwarn(
1186
- "Disabling the wandb service is deprecated as of version 0.18.0 and will be removed in version 0.19.0.",
1184
+ "Disabling the wandb service is deprecated as of version 0.18.0 and will be removed in future versions. ",
1187
1185
  repeat=False,
1188
1186
  )
1189
1187
  return value
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wandb
3
- Version: 0.17.9
3
+ Version: 0.18.0rc1
4
4
  Summary: A CLI and library for interacting with the Weights & Biases API.
5
5
  Project-URL: Source, https://github.com/wandb/wandb
6
6
  Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
@@ -1,11 +1,11 @@
1
1
  package_readme.md,sha256=1v4WgKja-54kllY4clEr85vGFQAGaCo-JrtTZfsG4zM,3864
2
- wandb/__init__.py,sha256=VyVVTimB1ukcDAvgRhsnUFFU7UbKbd85YfqWDYcER-0,7107
3
- wandb/__init__.pyi,sha256=GRt4nYNWE3POD8vzOBdzvSh9DRskiwhLHULdzIOOdOo,41168
2
+ wandb/__init__.py,sha256=04MkuhvJOOwuZP3pYXBMqAFIRp-I0Xq2jn-VanrBp1I,6910
3
+ wandb/__init__.pyi,sha256=3N9itUL3DrxEEI6d4lZYgxECkGNzLwJjN13us9BMbMY,42002
4
4
  wandb/__main__.py,sha256=gripuDgB7J8wMMeJt4CIBRjn1BMSFr5zvsrt585Pnj4,64
5
5
  wandb/_globals.py,sha256=CccwOAls5bxJArYHg12b08ZeKR8Qu9u57GtYWjBH0o0,702
6
6
  wandb/data_types.py,sha256=PB9sFue9cT6W-eZ2HwQrIoaJ5LLhdMICNAYlXjKboZs,73250
7
- wandb/env.py,sha256=IMnRFsZtV2ySzi7K1yaAurqk91Hoy79Dc8hQLQ96to8,13983
8
- wandb/jupyter.py,sha256=tPnqX9kvAOpWpyz1f-uXrmUvj2V3hx0ANHKeXNxGF1o,16954
7
+ wandb/env.py,sha256=LpH2do2jGUAwTTluibhMqripkq29uD0Qvuw3twk_99U,13629
8
+ wandb/jupyter.py,sha256=YK4N55NVrekAO-Ykk0OerHq5xjHYZggNJxFeyTiQmps,17334
9
9
  wandb/magic.py,sha256=YVSQmkrtlQ56p-VqkwjiPGNBa694UvPALxc4yp6RiLk,59
10
10
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  wandb/trigger.py,sha256=PaitU3sX6ekGkd2R8iD6d_VtI72ypF7LaPBXh3rXY7Q,615
@@ -17,7 +17,7 @@ wandb/wandb_torch.py,sha256=DGY0jsWashL02iXGce-5XypfSJIbBWfLsCrmixqNTCY,21276
17
17
  wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  wandb/agents/pyagent.py,sha256=Ee9IDQhfy0-CyH7erTYq64bA-M1jJCIv35j327cvJHU,13414
19
19
  wandb/analytics/__init__.py,sha256=WG_Mh20Hr8d3vDmGMcfDXCMEIew3uzDYZAJwFsrbAug,50
20
- wandb/analytics/sentry.py,sha256=Bdx6GLuruzabyaH7XAtSzyNhbeElKTP-3FQJdyO-qq8,8490
20
+ wandb/analytics/sentry.py,sha256=yED3kScIGmuk_NfsK837Z5UW_20VNGfGXe8tJ7ngKzY,8500
21
21
  wandb/apis/__init__.py,sha256=uPZKqlX8Y9YcHoERJshWRGS3ukMOIVWi4sDnkO5_CYY,1338
22
22
  wandb/apis/attrs.py,sha256=08cRZIoH-kKrGjpXNF8erFWHW9pUXCOo-HHDM4DVS0w,1260
23
23
  wandb/apis/internal.py,sha256=0Bew5qD8OM-qfuGvsSnnA7Uqjg8vXnzi0q5__W9yTBM,7353
@@ -49,9 +49,9 @@ wandb/apis/reports/v1/__init__.py,sha256=x4CDMwUYT3FwgdQnaj0ZA5gc0e6c5JjboChrnXP
49
49
  wandb/apis/reports/v2/__init__.py,sha256=KFrIs_vw2k49bTUHZCkqx9CzXcbNl192cYBWViKdPc0,262
50
50
  wandb/apis/workspaces/__init__.py,sha256=ZLuZVu1MTNZ9ZWFMk-t6TXGQWDhiaI5liEl-5WN1mi4,264
51
51
  wandb/beta/workflows.py,sha256=bk12HDWnxI4uuP0KyUbfclrTSoRVXrJibAuO_QBB5tI,10239
52
- wandb/bin/nvidia_gpu_stats,sha256=Oi40uwumAZdXXFRhfW7B0tXgRUyT91LIVrmozDylDTM,7293720
52
+ wandb/bin/nvidia_gpu_stats,sha256=Bg2QcJvBtMH8pfC_SM46amlXMRdy_QEjKyVY-rrQfP0,7296944
53
53
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- wandb/cli/cli.py,sha256=MlMkNpr6m62E6mEGkmXgFUKBYCSmdMRv-93rSM2SISw,98297
54
+ wandb/cli/cli.py,sha256=FoX-SpOXjkjnNc9SV_anAJgby2ibwd7ThhudfkQiwmI,98452
55
55
  wandb/docker/__init__.py,sha256=1NktT5nl7XJ35vj7Pq71p49_Vwet2HBLBc2_D7e86sM,10552
56
56
  wandb/docker/auth.py,sha256=I68SFCcbmZr18XqVxVCM75eTB7YhCebgb3dcsFiIYHQ,15032
57
57
  wandb/docker/wandb-entrypoint.sh,sha256=P4eTMG7wYsgTfJIws_HT7QFlYBI70ZLnNlDGTZdmYVE,989
@@ -117,7 +117,7 @@ wandb/integration/sagemaker/resources.py,sha256=C0HTpXo0l3leohzY8Uu7VvsBchKwIZov
117
117
  wandb/integration/sb3/__init__.py,sha256=w_VX7C6qAE1vK7xb24JchQtORxzfpXvl6YmZHUIskJM,60
118
118
  wandb/integration/sb3/sb3.py,sha256=U3P6e3-fGOFoJdik5XCQipqfxSDpMPs619SXsO1g5Fo,4910
119
119
  wandb/integration/tensorboard/__init__.py,sha256=Ivj8-XV4lGLg1JK2LdNxWlaLkqrJmXdyWTXf41ysib8,213
120
- wandb/integration/tensorboard/log.py,sha256=PPa-NviytycxE7CYA1VWvgjZsFcH5RAdArLFcisck_g,14312
120
+ wandb/integration/tensorboard/log.py,sha256=twk7iRo6ac2fjjtso9tjStRd_I7aIVmg08odYa8fYho,14219
121
121
  wandb/integration/tensorboard/monkeypatch.py,sha256=7S3i2vcmmIjEpY4f2Ro8OxfS5b2zgXYoTDoLmwcm7fw,6828
122
122
  wandb/integration/tensorflow/__init__.py,sha256=8y7Acc7EAxKF-4vGXuZH6tsXeNNzqXisE2blNz9RNQk,125
123
123
  wandb/integration/tensorflow/estimator_hook.py,sha256=fi-UtjNZxUnDkzfbNP09iH074z5x0ItZiB4dkvwMGNI,1756
@@ -159,46 +159,47 @@ wandb/proto/wandb_settings_pb2.py,sha256=g5NT8BLXrE1Y7zWMM768zRoW98dBLE9TNuwttXn
159
159
  wandb/proto/wandb_telemetry_pb2.py,sha256=ReY9N2qSt46o7m1ou1khvYSYYImrzo5ro90g_9m8QsM,322
160
160
  wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
161
  wandb/proto/v3/wandb_base_pb2.py,sha256=0Ixr7LeEOTdIU_pewdbhRZOrFqRtgsOsWcyC_Tw4Nzw,2248
162
- wandb/proto/v3/wandb_internal_pb2.py,sha256=lLt7VzP8Euzbed4jHvVfC0VgutnJXV0AKUBvuLoVecE,107759
162
+ wandb/proto/v3/wandb_internal_pb2.py,sha256=DxU2LYD7qGx3SzCle1sUGIWOg-xq8no5NNeeHr4v0CU,107793
163
163
  wandb/proto/v3/wandb_server_pb2.py,sha256=u7p14fy4XjKVcDnE54U1WwgC1Gpy6VWGA4MGU3aXyg4,13631
164
- wandb/proto/v3/wandb_settings_pb2.py,sha256=M5Z7ATiAolFX-g1aVL_MyRLAyaDawiHDj0mtTpm_Z2c,19763
164
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=3LRZoy1pfoZRvW6cUz0acj-8PhdeEvK77FfjTPTT0vA,19707
165
165
  wandb/proto/v3/wandb_telemetry_pb2.py,sha256=V2pidQIG-U1i9f4ojjiB4_KOHfWS8zoit0LAgk3QY3g,13649
166
166
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
167
  wandb/proto/v4/wandb_base_pb2.py,sha256=fF312_OnXSKQTjMW0Pwdo-yZBmFURWH-n4XJ_sEaExY,1315
168
- wandb/proto/v4/wandb_internal_pb2.py,sha256=y-7fmh5BGgQ9ayRTM5Kg9s4yany25UxCTwTYY8RjFs0,49304
168
+ wandb/proto/v4/wandb_internal_pb2.py,sha256=W4XJZSu5x7Ihpiis8JbJhzOT9lEfQhJmleBDTuLOlhU,49338
169
169
  wandb/proto/v4/wandb_server_pb2.py,sha256=YkapN5k621amFmIYKtV5xLww3TaB-6EeGI8Qq2_UY94,5991
170
- wandb/proto/v4/wandb_settings_pb2.py,sha256=xVNtv7RSeQnENLMjBo6Mw6d0ptDvO0Lkmqgyz7PrgnQ,16494
170
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=30JsnWlT9z5uIOyZKFQGYje02mE5mNU1OvvzdRflc20,16438
171
171
  wandb/proto/v4/wandb_telemetry_pb2.py,sha256=q0Lt4IehdwFaLtEwJ6phh9BLJU0E_d5odmsN_grRJ2U,11096
172
172
  wandb/proto/v5/wandb_base_pb2.py,sha256=_RqGlyLs6WbBXyh2m6xke8OQyjQeRFKDwh8Brn9PAN4,1441
173
- wandb/proto/v5/wandb_internal_pb2.py,sha256=jelnVMvxb8x1uAhWtm427p5C9MClAGKfBlBo5-shmhA,53363
173
+ wandb/proto/v5/wandb_internal_pb2.py,sha256=BiMPtknv0tiBFm4nJMrLr7oQDjcizrAPKMD-MemLt1c,53397
174
174
  wandb/proto/v5/wandb_server_pb2.py,sha256=8uKB9qS4F3QjKSlj1aL8eEXZiBIVuTGIZWvCsbs2qEQ,6477
175
- wandb/proto/v5/wandb_settings_pb2.py,sha256=eg3NI4DH_MTK4X2q0Yo0vnUDtG9unYqFD9d2zcnp9uI,16802
175
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=LFRcsKNfKeIFMiNiLwufKmP50dYVtVVFUnlyTo49AzI,16746
176
176
  wandb/proto/v5/wandb_telemetry_pb2.py,sha256=dk1TfWfDFOJqpvYzHdNjbCh_nUEEH1NrD1F_YKOD3G8,11342
177
177
  wandb/sdk/__init__.py,sha256=82sn75Iewvnbxx6_Idixcjac1igG5H6LdCI6H6iWmOM,809
178
178
  wandb/sdk/wandb_alerts.py,sha256=SwBPBiXRxknMTMGbsVoMMWqWK65UWMcKAdTWZtdwAeo,193
179
179
  wandb/sdk/wandb_config.py,sha256=TCddmgheDApOE-OXcZdgihhCnTpoR5jj4zeohs-9Q8M,10854
180
180
  wandb/sdk/wandb_helper.py,sha256=IbJ7opO8UkfwCDekSjRYIrGBblUxnTPBfp1EdesfF4U,1824
181
- wandb/sdk/wandb_init.py,sha256=8bFzJZXNxpIjbd71Q9GvRHWwe0bYr4UG4t4Z1LkqTnI,51463
182
- wandb/sdk/wandb_login.py,sha256=HnjrtkZRO3yoYBWkrCxEzM2jsIejYOxHz7VoENYeGqI,11191
181
+ wandb/sdk/wandb_init.py,sha256=WJOo0muRL9AqFGbMqphr9k9lzm1YmsyA4yC_csuHRSI,52015
182
+ wandb/sdk/wandb_login.py,sha256=aoP4bhSpTcDkngyBomcIimSmhvYFo12IlT86PLXhFA8,11243
183
183
  wandb/sdk/wandb_manager.py,sha256=CW2rRta519DcUTBqWMiu90L8nHaT_7S-Iq2jFA9N4ck,6884
184
184
  wandb/sdk/wandb_metric.py,sha256=a3GiQXr6H18m81uobYjlJaC8CL8iANzI42qxkxfZsDs,3268
185
- wandb/sdk/wandb_require.py,sha256=gHx6stH3AZi5OoY5IlBJhgwxhniT90A4F6z8Wy5u3Zw,3697
185
+ wandb/sdk/wandb_require.py,sha256=mQ8igzUVENY0Qj94cTA_GWVGAuTETul6PMSBbUU-bFw,3045
186
186
  wandb/sdk/wandb_require_helpers.py,sha256=ZmKv5aXXHDTTU6nYHMLKW4_pt9X-PlaMtbRJl77kHX8,1331
187
- wandb/sdk/wandb_run.py,sha256=FGDVWbTnZ4SrMfo7dmrz7xoIpNF_hhNi1ktL9P_ccOk,164278
188
- wandb/sdk/wandb_settings.py,sha256=-rdmQyIrvWrC-5C1W3dmvBFM77IO5GeJQ8Ot1p2PCj4,76243
187
+ wandb/sdk/wandb_run.py,sha256=tw0VprjbZeSCxj7KjgmLBQEc7lO0wSoEUV8ClkknISY,164669
188
+ wandb/sdk/wandb_settings.py,sha256=BTfU4XkeHQkin_SfVVqCM2dRlHHUItSdNm4Qk70NH_o,76147
189
189
  wandb/sdk/wandb_setup.py,sha256=uHG5bp4IcJxFVrQboM3m-VIUqe845TLqATiB-nbv0ew,13204
190
190
  wandb/sdk/wandb_summary.py,sha256=yQdOVIPrZaZanhBQ7yuSfPLX0x6dxwkN_KAn4SgjSZU,4536
191
191
  wandb/sdk/wandb_sweep.py,sha256=cboZB5qvLigAY3UeYifDTX1me_-Q4Y0EJ5UVEzYCXac,4000
192
192
  wandb/sdk/wandb_sync.py,sha256=KhxDOHR7x8q54hAlsEx4ta1dAW1ZnzTUMr7VwJyCL5c,2273
193
193
  wandb/sdk/wandb_watch.py,sha256=2LGjshxCywHhlxHU3-APmgWsoQjMSxJdqA8J75KAmIU,3898
194
194
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- wandb/sdk/artifacts/artifact.py,sha256=E336yad5FRb51H3xQcAQcOR2UpZKHsfi27Z_7Um54Q4,88887
195
+ wandb/sdk/artifacts/_validators.py,sha256=R6sFrnEnOSxCS6ByjA8XXd3COO8tI1-ODmkoEK9fB90,1440
196
+ wandb/sdk/artifacts/artifact.py,sha256=A2_KYp7LVkpE-4r3m-kzWQNq6txYTxqCxP3xs4Fi59E,91255
196
197
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=XEVxmktMInrd1p2z86CKt3QyTA9vscxJL5-8_eupknI,1501
197
198
  wandb/sdk/artifacts/artifact_file_cache.py,sha256=EsXD2bQyFhFYK2NICUZ3jtXf-r0hC63-6lqyU_cHcPw,9840
198
199
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=8dnqz8ri-3zAygk-ihn9JQsRaeYUwF7Av_pUqUoJxt0,473
199
200
  wandb/sdk/artifacts/artifact_manifest.py,sha256=eSx_51ETukZ3PehIJkrNBd_Q1E6CowEZSbrLmaWiwiY,2503
200
201
  wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=SfjfdzAIHEpbvQ1tOorfOMpITPgIyEnsJyUARgrnS7I,8424
201
- wandb/sdk/artifacts/artifact_saver.py,sha256=tG3QiqB-CUrEC_2Qus1AsJHCInhgaFDqdDmZQ1ja798,9285
202
+ wandb/sdk/artifacts/artifact_saver.py,sha256=JBhlnHW5hx0v6ya2O7dFhI6uUbUwgjyPRq1iCJbTkto,9485
202
203
  wandb/sdk/artifacts/artifact_state.py,sha256=6fxISSPsK62VeMau_5CI4a9lQXTaUJXcruzk74WUIBE,236
203
204
  wandb/sdk/artifacts/artifact_ttl.py,sha256=kNRr9JZ5P2iuo0ofoNKlSddGJkIQXRUjwgO8YUdyN4g,86
204
205
  wandb/sdk/artifacts/exceptions.py,sha256=2rVhtgZixcnjcMkR2Mr_sGp9KnqTDILwcqecyZDDwWY,1852
@@ -249,7 +250,7 @@ wandb/sdk/integration_utils/auto_logging.py,sha256=evcVXab1KoC1THdHpCb5RhL14DJKs
249
250
  wandb/sdk/integration_utils/data_logging.py,sha256=DDFtDaUu50aeTTgxCHHYd2f85guqqf2xfEOburRlwwQ,19533
250
251
  wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
252
  wandb/sdk/interface/constants.py,sha256=NJNBFr7LkshLI837D3LU3JuEURLzBwza9H-kxcy4ihw,60
252
- wandb/sdk/interface/interface.py,sha256=0ThfutXXoBqUyLJ19-evmj5olcs5ORn9Es1d2Ilfqcs,35304
253
+ wandb/sdk/interface/interface.py,sha256=wlEbwco99A2YHRBhZflgO8mk7Gh2SKTc9t5N59E_Ptg,35439
253
254
  wandb/sdk/interface/interface_queue.py,sha256=eCvNpvwMe1GHJv_5M8R3ZSspmEvE02mXMstBDBEZy8A,1967
254
255
  wandb/sdk/interface/interface_relay.py,sha256=vQUrk5KESKInZsXpOxWF4YcWRZFLJjNz1mdNywbWbbE,1514
255
256
  wandb/sdk/interface/interface_shared.py,sha256=gisOvCIOZjZkO8-T3UYs4S8e42lu-j16mw5fZgJl9k0,20479
@@ -269,14 +270,14 @@ wandb/sdk/internal/file_stream.py,sha256=MNWY5xAPHonGGMTDwQxS4PEZk0ZZRp16I_OOaUo
269
270
  wandb/sdk/internal/flow_control.py,sha256=LO3iDyBbI4WGoDuVLjA_iv62PyiupdYkpSjxPIMGI7E,8584
270
271
  wandb/sdk/internal/handler.py,sha256=kARUdsmcfD8T4STnx7VQppuPG0w8r0gUqdejxXkQ5Gw,33754
271
272
  wandb/sdk/internal/internal.py,sha256=3JnUaCA5zx48kjgXqpFy8h5LRwVzvY2YCFUibZZfNOc,12738
272
- wandb/sdk/internal/internal_api.py,sha256=_dqVnH5JkCS1_X05j_bzam8kSEjInLsPHsylLSImPig,147139
273
+ wandb/sdk/internal/internal_api.py,sha256=1FSya4BJxa2YLwn84Zx9_Zf7Apnd_xGJdM-zQAKVdeQ,147537
273
274
  wandb/sdk/internal/internal_util.py,sha256=RMBAsnVimA9UpC-qlT862nqxIXDAPm6KfonNmpvlRfc,2654
274
275
  wandb/sdk/internal/job_builder.py,sha256=ivwKg2VnJg1ynpSZaukJbC3umnbYnbKITngeS4Q7x4I,22903
275
276
  wandb/sdk/internal/profiler.py,sha256=C8-mPrAhPS6_l-Fj_zCOwmXaEqhjI9Wd0EAPXS9GAEI,2348
276
277
  wandb/sdk/internal/progress.py,sha256=0nARkPJ4eVaElpjBl_UQAXeiPtujqcJkMz6OxuJJkps,2446
277
278
  wandb/sdk/internal/run.py,sha256=8OhVy2vfgPC8pNFq0tJ4CkQHETOBfQsFDghw50ccSXc,682
278
279
  wandb/sdk/internal/sample.py,sha256=_bB-tLsYKayL0h1rJ-Na1aI-aHDPHXb1jSMb0nCDmfo,2442
279
- wandb/sdk/internal/sender.py,sha256=0xpKjGk4Iu7kakuOM8APiIPF6g9GDOgfK6iSwbSzrdk,67039
280
+ wandb/sdk/internal/sender.py,sha256=-I6NKd_9NcJo97pZ80xZEOdICeI24nFcl4xEpqilago,67071
280
281
  wandb/sdk/internal/sender_config.py,sha256=qEuXwOskca3sYyDIRsswlXmj9StCCS0WKQ1qrBXbIjw,6767
281
282
  wandb/sdk/internal/settings_static.py,sha256=m97hST3YWmpkmgnXbso0gfPFZ7k7Y4SJSM7NbJIZKTc,3526
282
283
  wandb/sdk/internal/tb_watcher.py,sha256=yBM_cYtxEF12Tdz1a99kgUKhYNOEJHbHWuYngJr1sGc,18728
@@ -293,7 +294,7 @@ wandb/sdk/internal/system/assets/asset_registry.py,sha256=NYSoCDya3Wh7ytBJOE-tNy
293
294
  wandb/sdk/internal/system/assets/cpu.py,sha256=6I06hsCmsPt2tjfj0hrFQdlXfUwKKhI3DBg2L6cFbuc,4574
294
295
  wandb/sdk/internal/system/assets/disk.py,sha256=HXZFhCh4guL6u5XkRRD2EWeganbLAeZ3hvQyM4ncrWg,6295
295
296
  wandb/sdk/internal/system/assets/gpu.py,sha256=IniAgV7fcwVuvbbQu-eVmWjBwzVKi2bNFkfwWLpYqXw,13714
296
- wandb/sdk/internal/system/assets/gpu_amd.py,sha256=bM5usw4qdKHQGQnqFFi-ObOfS3YZg7oDjzeA7eBiLHY,7171
297
+ wandb/sdk/internal/system/assets/gpu_amd.py,sha256=AoVyBIOqePaxbZno1ypaAv3c032K8ZkZbxRIxUGi5EY,7475
297
298
  wandb/sdk/internal/system/assets/gpu_apple.py,sha256=1NbkBcnX5fcgUUootdXbC5ntiXZp1YJ07LNXMTm4BlI,5279
298
299
  wandb/sdk/internal/system/assets/interfaces.py,sha256=Re0sm_UQdi5Z4szfNowtk81szzzobv7jSmbth-tfCag,6548
299
300
  wandb/sdk/internal/system/assets/ipu.py,sha256=qYENDcFSxLcx7Cpfm8hqE4p9fXnH00rV2OPGLCgZ9zk,5313
@@ -332,7 +333,7 @@ wandb/sdk/launch/environment/azure_environment.py,sha256=2Yt-NVD-_eXR73-pp6CAneK
332
333
  wandb/sdk/launch/environment/gcp_environment.py,sha256=0US6TKVKlvVl_Y_R17xm_j_MuJdiS-L31rkHZ4O4AIo,12734
333
334
  wandb/sdk/launch/environment/local_environment.py,sha256=mO35r8XgxRvqxhmmkBx3xIymz1M2lKYGtnltRB1c9mM,2258
334
335
  wandb/sdk/launch/inputs/files.py,sha256=BWGDmAfDPLja7zz0bUzYLaF3wH4cTPesD9LqDuJRUoU,4685
335
- wandb/sdk/launch/inputs/internal.py,sha256=Pn5wry7IUtj7rITEYPZ7pcVTXb90G_5T0nUPrOSiSFs,10055
336
+ wandb/sdk/launch/inputs/internal.py,sha256=vWY4nP5gcDhY1w5OiDoO-CDlkeJgHX_B_Mp7H-F6DAE,10058
336
337
  wandb/sdk/launch/inputs/manage.py,sha256=O0IsTWhjUftihohRfK7DkT186LjHMMcE2NSMeG8IFBY,5003
337
338
  wandb/sdk/launch/inputs/schema.py,sha256=Fs4CcxI0ifFagazbNp47uJP15JL3v43PAvVNO93f9XY,1418
338
339
  wandb/sdk/launch/registry/abstract.py,sha256=eTiuMPEm0NnrTkU6M8UteZQfK50BN-n7tyev4nMA1oQ,1146
@@ -355,7 +356,7 @@ wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=NUMvKJYSdtrW5KGf0GsLBZWJL0vJbC
355
356
  wandb/sdk/launch/sweeps/utils.py,sha256=TbsAvn3eQnp5js0SvMmPVoP5vaT5bXMPL-ISWyZvVlQ,9837
356
357
  wandb/sdk/lib/__init__.py,sha256=53BA5lIOtUXciXZcPpNsFbp-iUPzI5gQFxplTykNmOE,183
357
358
  wandb/sdk/lib/_settings_toposort_generate.py,sha256=FQZPNGKnUcApOHjT_SYFC5APLxniN2aJJ8UnvdS2dV4,4843
358
- wandb/sdk/lib/_settings_toposort_generated.py,sha256=1P9Uj-QZaK8Y1Vt0HS6xaYRfH1miImPOI1r-YAt-EcM,5401
359
+ wandb/sdk/lib/_settings_toposort_generated.py,sha256=RzO65e29YLvbBC2ZOxUVUSDux0cCC_PLct7AhXuAAT8,5272
359
360
  wandb/sdk/lib/_wburls_generate.py,sha256=ROOCtjLN6LVcS_vgUf1IOQe0RU-FWUsECeAhww9Eg64,440
360
361
  wandb/sdk/lib/_wburls_generated.py,sha256=xK2udBlEmJFNH1WD5VHQKfKIWijlb7zAR0mqC5sa47k,428
361
362
  wandb/sdk/lib/apikey.py,sha256=O9kdOEVAa9EedVZyCsh-CdSKo6T-FjhqGk7-n-jXPYY,9211
@@ -402,8 +403,8 @@ wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
402
403
  wandb/sdk/service/_startup_debug.py,sha256=0-evSjgwjb2LiOP952eScrfSWL8PrAXPOKPgZbio5_M,588
403
404
  wandb/sdk/service/port_file.py,sha256=_VeftD2LjNBeQH6nfzd9Dyq2u4fT2YRLE7D1ikIhYmU,1546
404
405
  wandb/sdk/service/server.py,sha256=FOWWSk6xxknnATKdi9zkmG4N9rk6BCMpFit7hMV0qOw,4009
405
- wandb/sdk/service/server_sock.py,sha256=QIA-2_qdZKmcJSnbaw5ofxKllaW17NXalCUozV_ItmQ,9656
406
- wandb/sdk/service/service.py,sha256=wsxS6vRgXku2ZXocWqB6pRkN82pLtg4HMlqqX-OiptE,9520
406
+ wandb/sdk/service/server_sock.py,sha256=c66bBF1_BSLDb3A_L3UDx5t-s2fZLSkJsnLQGYU5Vs4,9656
407
+ wandb/sdk/service/service.py,sha256=8PLXx1Q32tOlwI8X4p_0YzfC3kF7Op9QlhZlKa213TU,9477
407
408
  wandb/sdk/service/service_base.py,sha256=S6et2dWmlHgHvXyHfAiMyU_7cfHwE8ZJp4JhqTpDffM,1288
408
409
  wandb/sdk/service/service_sock.py,sha256=CGpZ3JWG9FQiUkpb-oZCBlv9lX700eYzZ0PaVPzPH9A,2274
409
410
  wandb/sdk/service/streams.py,sha256=Vgg1Zk5dYGZYo2sgwwZDaGy8H7qZSlNJN5bVGXjasmU,14822
@@ -814,8 +815,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=cJIaJ2EQso
814
815
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=UORYTNVcUSE2NpFcq9UVLIS-tsS0TS_Qw8akhKxn2eY,1506
815
816
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=UWX8DB97ygkEeSxWQUYCHR4MahNilux7vl5TCTQtPPk,2190
816
817
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=ZOevOTbSo8NRiIxkuBVGaG4yigWnPoO0goxAi-jsBkM,3828
817
- wandb-0.17.9.dist-info/METADATA,sha256=y-qSncqTKlyFUV9oRdxswE5owXRQhtLGEJvKt4MXKlY,9581
818
- wandb-0.17.9.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
819
- wandb-0.17.9.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
820
- wandb-0.17.9.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
821
- wandb-0.17.9.dist-info/RECORD,,
818
+ wandb-0.18.0rc1.dist-info/METADATA,sha256=O56WmyvMfBWROi41i1OeZ330k6C2Sv06Mg1MgKpt8m8,9584
819
+ wandb-0.18.0rc1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
820
+ wandb-0.18.0rc1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
821
+ wandb-0.18.0rc1.dist-info/licenses/LICENSE,sha256=izOKRJpGOx1PrJiGOKR0HsNdlB5JdH2d0Z4P7a7ssTc,1081
822
+ wandb-0.18.0rc1.dist-info/RECORD,,