wandb 0.17.9__py3-none-win32.whl → 0.18.0rc1__py3-none-win32.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/wandb-core +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.1
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=l98RmjAb67Bg8obZQw8UzDVOCEWzBHYFNwZd6SMx4SQ,3953
2
- wandb/__init__.py,sha256=mdyBvunG4z8DdkdIl99zUXval_Smr3sToBHqELW_KvM,7357
3
- wandb/__init__.pyi,sha256=pyxWz3xFLD0M2GFBedLwvwJBMDD6hkc8oMoaCgLRbRs,42242
2
+ wandb/__init__.py,sha256=h3AM2V8zjhv_w9Nc2Ik5e8UB9DDOTlxnyNOFxoJj-dM,7155
3
+ wandb/__init__.pyi,sha256=vgOS87IyUntRH86405SANn3p5JB7_I0Cr4tSlryV2m8,43086
4
4
  wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
5
5
  wandb/_globals.py,sha256=NwgYSB2tl2Z5t1Tn1xpLtfkcmPy_dF01u-xxgnCbzoc,721
6
6
  wandb/data_types.py,sha256=STLXycfB0twDwS6ZhZjNm8KY7UQoX4Mu2lehs0hOfmc,75323
7
- wandb/env.py,sha256=vmSEMKZv8HW05hW9bfdj98feQF5urCqto4QpwL9S4aY,14514
8
- wandb/jupyter.py,sha256=k35p4hRr_lwMyyVO1ahDuB6EO9GmU4Lt8GGCWnMtDP0,17454
7
+ wandb/env.py,sha256=LsA177in6KjJjB_wFLFq3XA4MkASpVyPC_rAPBtXmVA,14148
8
+ wandb/jupyter.py,sha256=DYxWYu0IMSNeGoTcei1gr-HOAZyHurhj5qtR_tkxf1U,17849
9
9
  wandb/magic.py,sha256=grKCI_AKHF4vYtTXS-Ts7FeK3sdFB8t2JRqmFwjR-F0,62
10
10
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  wandb/trigger.py,sha256=d9TizmMPsvr0k9_3SBK2nq-Mb95bTzf9DZ1aE_F0ASo,644
@@ -17,7 +17,7 @@ wandb/wandb_torch.py,sha256=1_LOxzsgyWLhE2JEXwX6OwqKFS-ltusKixBWkJEjKRo,21826
17
17
  wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  wandb/agents/pyagent.py,sha256=ocUr8AZh5kFP3U_79peb-RbBLt3B9kzPWqKjcX7qHbU,13777
19
19
  wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,53
20
- wandb/analytics/sentry.py,sha256=f7S7XXH5BMxDNQyUh7So2gv8vHHjf-pHkmsA6xzT6Z8,8756
20
+ wandb/analytics/sentry.py,sha256=e1xKTvKM_sIwUhzUS8DoMB5Z7jDDWy8tbaBfJPpesGY,8766
21
21
  wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
22
22
  wandb/apis/attrs.py,sha256=j11iaNnVbjnDSYUBpSJvaOvO9q7hx4PqieKvWGumvHw,1300
23
23
  wandb/apis/internal.py,sha256=VNXFvIghrhfk_TnxaC3cqGT_qpeRL8i-VEFSjr2T9ww,7582
@@ -49,9 +49,9 @@ wandb/apis/reports/v1/__init__.py,sha256=dat5IoxIT4Ds0gJYh7kd_u01Lk2ArqgPtsF9PuV
49
49
  wandb/apis/reports/v2/__init__.py,sha256=z6cC7mTR35UPLYFwjnDZxodFoOO7KcFWOwePJqwH2iI,270
50
50
  wandb/apis/workspaces/__init__.py,sha256=l7rmQGzeR4XpAKiq5idMMPulve07fgDIMdl8MIQypFk,272
51
51
  wandb/beta/workflows.py,sha256=ENy_lmIyn3k_FHdD2ZO8HBaXdeoLrsPVbEfL_KYW8Ps,10527
52
- wandb/bin/wandb-core,sha256=ve0HukJDZUVqHyuEn1ciRZd-rP1qmlatumaWG8YTOG8,11382784
52
+ wandb/bin/wandb-core,sha256=LJ-y5Z2P3p70EVtNw5Zf8PMxh-71um1Mcg8GzWrbO9Q,11575296
53
53
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- wandb/cli/cli.py,sha256=KH4tpD9x8Kpt8sg_FaGnP2Xr4huvoVNiApzVLijlhJw,101301
54
+ wandb/cli/cli.py,sha256=QBfYSGuJOFqb9afUiJjuSN6pPe5KgiNIJRQbmSPDn-M,101461
55
55
  wandb/docker/__init__.py,sha256=Wkv5q5xCf9MAzLjGzg_QpuatP6pURCoKsiWpTj7G1jM,10894
56
56
  wandb/docker/auth.py,sha256=Qaf7C5t4mrGyswNTXKsxV3QBydY_RWqwP5teA8XZ_2I,15468
57
57
  wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
@@ -117,7 +117,7 @@ wandb/integration/sagemaker/resources.py,sha256=4pbopJBHyTXn1RuwsGeHyYIluQnBzOGv
117
117
  wandb/integration/sb3/__init__.py,sha256=X919ypvknbvlmHJrSMGnTk81f9bUH3eil8Ac6l8vXRA,63
118
118
  wandb/integration/sb3/sb3.py,sha256=lFx5P3KCpE4MfFfE-Dy7cSa0vkk4hC3Bxwo_JmKOqPc,5063
119
119
  wandb/integration/tensorboard/__init__.py,sha256=YhRPA469tZPMdQ5z0jxVYboGFvrBbe7OI7djfqh_veQ,223
120
- wandb/integration/tensorboard/log.py,sha256=B2qhv0SUlbzZeEKxdri-nXK9LuMHfJN9cf_NRFZVL1E,14670
120
+ wandb/integration/tensorboard/log.py,sha256=HWArjweckdyJIBZgYAlWh9gxeimaDEVb6JK-aMt4uzE,14574
121
121
  wandb/integration/tensorboard/monkeypatch.py,sha256=Li7Wz9mXnY9CcvglXypLoJReOnSfWWNuFVtDlnfOrXk,7013
122
122
  wandb/integration/tensorflow/__init__.py,sha256=vc4iWvSGqgLhucdrUisgsA3Xy2KU63nkcYN0gKD_eZs,130
123
123
  wandb/integration/tensorflow/estimator_hook.py,sha256=hZn70hR-nZT3RspXqCFatQx3ePL7qpd0ZniQRqhn1eg,1810
@@ -159,46 +159,47 @@ wandb/proto/wandb_settings_pb2.py,sha256=Aq7nH9PsYXcPKFOPi0Oh2CAaCUpDoPfedycOleI
159
159
  wandb/proto/wandb_telemetry_pb2.py,sha256=bNLhk5I9SDqNvzxi_anYorfvZjv8nG4cMZQvDS0BT9Q,332
160
160
  wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
161
  wandb/proto/v3/wandb_base_pb2.py,sha256=TfmnqqxmajAojyOq2NgCBbyybb0DZQViQCw1H0WzXo4,2302
162
- wandb/proto/v3/wandb_internal_pb2.py,sha256=x3_fAxq6PyXI5EC8WulHd2VpzaMMZyjgIsTWl_qnLqo,109366
162
+ wandb/proto/v3/wandb_internal_pb2.py,sha256=Ez8pa-BBk45TJ8DZU0SP_HcvVMT9xde781rrf28IfDs,109400
163
163
  wandb/proto/v3/wandb_server_pb2.py,sha256=_UR_gBIiHMYiG4CjU2zTKD16Qrd0dXqslA_7VeqXpb8,13838
164
- wandb/proto/v3/wandb_settings_pb2.py,sha256=b5uILaS8eDJF7-p-UFszf5jT_faUZDz-tF9rebrMQhY,19874
164
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=jdJs9TCgaC6fK9gROdksA6WDZnRnkgKdmtOYdgK2LkU,19818
165
165
  wandb/proto/v3/wandb_telemetry_pb2.py,sha256=8cxU3RwyBdBne9jOgr55Q7fNNkC87WvU3ueF9wY5aEA,13754
166
166
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
167
  wandb/proto/v4/wandb_base_pb2.py,sha256=C-hDafnFQQtkzyq4MkgwenHl4CJqJ6z7itKjLnFis54,1344
168
- wandb/proto/v4/wandb_internal_pb2.py,sha256=rc4HmI207IXzQC0sGUflen2ut_TBBpd_-qugYw8dGt8,49663
168
+ wandb/proto/v4/wandb_internal_pb2.py,sha256=LTMuD5n2WSOggvAaDQh18KfeM-RU5_S0-CLdgyQuBrY,49697
169
169
  wandb/proto/v4/wandb_server_pb2.py,sha256=0m6kJn4oG2RAdi1WFR9g6baiZfeB25F3snCIFhl90k8,6053
170
- wandb/proto/v4/wandb_settings_pb2.py,sha256=pARfKFz6YOqgFw5Z0wc5BHH-rcZ18da91l-BHW6onLs,16538
170
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=t3UMGFy-S1agG83xiLP_zpI8jR2ynuGuVnmqQHkmMeA,16482
171
171
  wandb/proto/v4/wandb_telemetry_pb2.py,sha256=yCQmotRThmnjbravlbl900QlLKL0sihGgIQ5W099QSU,11136
172
172
  wandb/proto/v5/wandb_base_pb2.py,sha256=JegTdMe2YWCrglu-GpI2lVqFxRHoP8hQc2n8bPpv1zE,1471
173
- wandb/proto/v5/wandb_internal_pb2.py,sha256=qy20Wxyez04afy8uf3tOh10Wkc6eEVOfcbRF_rA6M-g,53723
173
+ wandb/proto/v5/wandb_internal_pb2.py,sha256=Wwaxg99XFl8S2rFr7L6VzroSTfFZJQ0mLhMeK_CVhTo,53757
174
174
  wandb/proto/v5/wandb_server_pb2.py,sha256=icyGXLmqZLS6gDQsdYO_G75pXVII_JweUNIa_HOaWnA,6540
175
- wandb/proto/v5/wandb_settings_pb2.py,sha256=7MmEMDpZDR1-MeqA62Zwt4Qrnr-dGVPrVad7L9OequM,16847
175
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=TWlkOW3HPZrQCDJ_AhzwKtyFwCl4cQxa_Kvi_d7Qm08,16791
176
176
  wandb/proto/v5/wandb_telemetry_pb2.py,sha256=q31eyUWPnxpGWRF809HWou6Qu4l6UjxPJScF44-OXrE,11383
177
177
  wandb/sdk/__init__.py,sha256=Xfy69O6Lk3HgzSA03Q6CYVx3J_TJEQcuwISGsOTwXzs,846
178
178
  wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
179
179
  wandb/sdk/wandb_config.py,sha256=TNfyIVPhWKMxBOwHndOGr44r_3VhdvdDo0ymelBXIqs,11176
180
180
  wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
181
- wandb/sdk/wandb_init.py,sha256=SOxKzNHec7i1_n5-2Jed0lOKqoyB_huyJ8-jYWCf-70,52707
182
- wandb/sdk/wandb_login.py,sha256=j_ElYf9eBgMGTfQ1X0HCe_DDiO8eejbDUJ18JwW8IEM,11539
181
+ wandb/sdk/wandb_init.py,sha256=fVnDy8DDnlTgw8SB1rKDUJE9jl-n-TpbrBl7K_fO1NI,53264
182
+ wandb/sdk/wandb_login.py,sha256=ede31MmCVjh8f8Q69bOa9QFzdEwyhePV_HFTE5xtfeA,11592
183
183
  wandb/sdk/wandb_manager.py,sha256=PyNwmr6R23l4e2afUfAwcw1zIRghYRR_N4Y6HKROfxY,7116
184
184
  wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
185
- wandb/sdk/wandb_require.py,sha256=wcdFbi0aT6z0QjjMr8Rm4VLm_4Td3dDM1nsLFZ43YKE,3810
185
+ wandb/sdk/wandb_require.py,sha256=zGaCREn4PM0s1BfcY5EOGu9ftnCVxvigkkVCxrb42dU,3142
186
186
  wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
187
- wandb/sdk/wandb_run.py,sha256=nd8O0Ur33QkSz27g8jVclDjmgJHkyt0P6F8wHpP72q0,168639
188
- wandb/sdk/wandb_settings.py,sha256=lbUfy4J4T4UlfRSoCFVcTvk2oEtUvZPrFS4IIRJTdSw,78244
187
+ wandb/sdk/wandb_run.py,sha256=AlQt2iFxBW7GE3MMaplbJoEIBccgEB60AL7d6D7DXKE,169046
188
+ wandb/sdk/wandb_settings.py,sha256=Vgps9h3NUbIMhsO9YlTHaC1TDgP7xk38sdx_S12JZRA,78146
189
189
  wandb/sdk/wandb_setup.py,sha256=s3KlYrIp4BU0Tsv3lD8pl9zfv4zNIsRHPBx3Y4tsglg,13604
190
190
  wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
191
191
  wandb/sdk/wandb_sweep.py,sha256=sq0jk4uuygoxkIksrv0nvWyABcJHe8ZuA-kCv0tPyno,4119
192
192
  wandb/sdk/wandb_sync.py,sha256=Y_eZ_xW3q9oRAlFUo7s9n2V55z6SP-rd5xr5g6HDKR0,2348
193
193
  wandb/sdk/wandb_watch.py,sha256=--65AwGFLLj1sSUvI4cZunjvhdxXnFTktpzaxEFtdJk,4026
194
194
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- wandb/sdk/artifacts/artifact.py,sha256=Sscbfn2rGGTyDsCNfbT4YAjLBxc8vVq18MGafsjrq1A,91247
195
+ wandb/sdk/artifacts/_validators.py,sha256=ABXtYx9x8JrKXC2ijtLUKOdTBLUS6H3yQDl9arq1eKY,1485
196
+ wandb/sdk/artifacts/artifact.py,sha256=KVAGTFnfwbwI1_GAQe2gozHD-feJ1UHhVEP6vsQREmk,93670
196
197
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
197
198
  wandb/sdk/artifacts/artifact_file_cache.py,sha256=rjIKi5oBrev_NVgI60oydvWGl95KsBmYGYeax1XsKFY,10091
198
199
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=6k5VvyWyRfMCJsBDST3IBs91uctfIZdxZ74DJg-Pa00,488
199
200
  wandb/sdk/artifacts/artifact_manifest.py,sha256=Pdm08YTD-73vsqZRTT0cpFejRkdZJkG0lQYlUwv4HJ8,2575
200
201
  wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=zEO7-V4uEDMqIcHUNhy795e1R8WXE8RHH-mawBSQ9lw,8671
201
- wandb/sdk/artifacts/artifact_saver.py,sha256=lGy_3NwreN53_q7cmdiiXJL5yTA2QEQXidWO5vHTxGc,9546
202
+ wandb/sdk/artifacts/artifact_saver.py,sha256=fskkWKXBgu3MVurm3Xi3ybsaFknisOkMv37HIPDoTNg,9752
202
203
  wandb/sdk/artifacts/artifact_state.py,sha256=4-89kUayoLpJ1EHQTnex_PEEh-Y2F8Aq5_yQ2il7Sao,247
203
204
  wandb/sdk/artifacts/artifact_ttl.py,sha256=5h2GzpVsw1uA3h3piuYr-qU4qcQZDAOz3X5QcSSxnfo,93
204
205
  wandb/sdk/artifacts/exceptions.py,sha256=9640Af_1gF8HJHc-FUliW3USR8Mhi1iib1PuEi-_t5Y,1908
@@ -249,7 +250,7 @@ wandb/sdk/integration_utils/auto_logging.py,sha256=veVzow8oICc0MzGj2_HkyAVPAbW6r
249
250
  wandb/sdk/integration_utils/data_logging.py,sha256=DtSEZB-TzxQKhjm9IXNxDeOAUZyDXGYrfRvVh2Cju54,20008
250
251
  wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
252
  wandb/sdk/interface/constants.py,sha256=GKZ2hATTBCt7yU8kloafZR34yLChiI36O_VtxZZbQyg,64
252
- wandb/sdk/interface/interface.py,sha256=ePE7Ktb8rr6eK_QyYH2s5ezzirxUes3wgm0Dmq65APA,36297
253
+ wandb/sdk/interface/interface.py,sha256=SCMw2DWgEx3t7lieyqlYKo22d8yFDzwB7ZCr59JcOn8,36435
253
254
  wandb/sdk/interface/interface_queue.py,sha256=QxHmramXIHs4rQEzIk3qzF9ui5BPEAcXSGPt8TZjaEE,2026
254
255
  wandb/sdk/interface/interface_relay.py,sha256=R28bIhebZux7PwFeJmO8wOOkm_uCjmQ2T5lKKy3sL-Y,1567
255
256
  wandb/sdk/interface/interface_shared.py,sha256=fKWiRPcs7TGGUZa0xAU1gqRWnoA-DmFEC9uXFZihens,21028
@@ -269,14 +270,14 @@ wandb/sdk/internal/file_stream.py,sha256=-euEOevpl32WiFyruJv3zgeIqAMKd2Owe9GUM5U
269
270
  wandb/sdk/internal/flow_control.py,sha256=RL1lKVRwxV9vDwIMBz9L07p25eZgDi5XSDanHfbNzF8,8847
270
271
  wandb/sdk/internal/handler.py,sha256=uT1ea5igLQ2vJPA4QiFhNMmawdGoEgZzw4z4ndDO93E,34665
271
272
  wandb/sdk/internal/internal.py,sha256=HpClwL_Yq0eHGjqJ0D-VaGUv8eEKRlGbPuh8Hxep06w,13155
272
- wandb/sdk/internal/internal_api.py,sha256=5k7sHeYEdhFJde3Ilx_j6N3T5ATrBCCju054MQN90Sk,151416
273
+ wandb/sdk/internal/internal_api.py,sha256=Z-Q22GkaXeXDAn4J5vPY728Oyxu_vlLtE7jxNJ0lX-o,151824
273
274
  wandb/sdk/internal/internal_util.py,sha256=LtusH3QYE12A4vH-7-gHXX0O7TfJ2haESf0_MYdYe50,2754
274
275
  wandb/sdk/internal/job_builder.py,sha256=d034H4nE3H2BbtDAxcxftiDgdbBye9ljeZuDh_AjHyI,23532
275
276
  wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIUk,2426
276
277
  wandb/sdk/internal/progress.py,sha256=Tfz1DJNlIj80-Ghb2b7TzHBftgXkfPWwwHlO2NK8UyA,2529
277
278
  wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
278
279
  wandb/sdk/internal/sample.py,sha256=QE80NZeW-UsUZBlnf9hG_2KNIZWmLzEpZStYTuL4fOI,2512
279
- wandb/sdk/internal/sender.py,sha256=FYvi9I7jAEXINGs8N1GoU6b485T6YgijkahNKgpNlB8,68767
280
+ wandb/sdk/internal/sender.py,sha256=VNPzLuajHbUkpEWQ3KqUh3NKEHVaLc4tY6qbv62P0YQ,68800
280
281
  wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
281
282
  wandb/sdk/internal/settings_static.py,sha256=tUieif_B36dCFqJKwfcr4bLF0KVgFhGN6q-vg3orRzw,3616
282
283
  wandb/sdk/internal/tb_watcher.py,sha256=8nWGmp0mR2TBa_ZjJgo5VWlYKnR76Sifm7tGpOYwYG8,19246
@@ -293,7 +294,7 @@ wandb/sdk/internal/system/assets/asset_registry.py,sha256=08uPqgNQDyLTiKrW73Q6hQ
293
294
  wandb/sdk/internal/system/assets/cpu.py,sha256=a8KChZZt05nJk4JxPhKDQCVwEU74vQzLIoR_0gh1au4,4737
294
295
  wandb/sdk/internal/system/assets/disk.py,sha256=KcWyQtYX7C4zKRmJr6vpbRDqJ9B-MSM_PJs3IRNvO9w,6505
295
296
  wandb/sdk/internal/system/assets/gpu.py,sha256=BMHlst1D7QxCDKihC_p-3MSmG8VgahGMxbVd59-9EhE,14130
296
- wandb/sdk/internal/system/assets/gpu_amd.py,sha256=nX8j-8uRoPvzuCnhxQgQRsB7aaqLjBZyXjFgXbSjoGE,7401
297
+ wandb/sdk/internal/system/assets/gpu_amd.py,sha256=nvLK4g_8YBR3fDKLgJRyAQ2_eBW2SidtzESp2ts7zwI,7714
297
298
  wandb/sdk/internal/system/assets/gpu_apple.py,sha256=htF5aUCT555uGNfmjPANHNwjqSe0qr9QqiZvrYC6fI4,5456
298
299
  wandb/sdk/internal/system/assets/interfaces.py,sha256=0rT0O6CEnzYr5ZDfHB2qdFgF4V8pvjOmEj2N1lXKD5o,6755
299
300
  wandb/sdk/internal/system/assets/ipu.py,sha256=WCOfXLjX69DB10DoeoHPjCNfiPvlgG9x0MqKFhxbwzw,5490
@@ -332,7 +333,7 @@ wandb/sdk/launch/environment/azure_environment.py,sha256=75Wamar_QS4lr0RSjdsrENR
332
333
  wandb/sdk/launch/environment/gcp_environment.py,sha256=68PDJaYlT_YXXqbFseXg_AlTR7CDF4R3Qonp6AXfs2g,13069
333
334
  wandb/sdk/launch/environment/local_environment.py,sha256=UeG3fL5w4kbN9SCOvKlJaQwYYne0sB2dymwwcCxbi_s,2324
334
335
  wandb/sdk/launch/inputs/files.py,sha256=wLBb6riNplCtUY_p0uVwyCYH8La7H6naUpB5RVGiMUU,4833
335
- wandb/sdk/launch/inputs/internal.py,sha256=2fp8g4D8RbRG1OV9AlcvF1iRxIEtAeiZvsBGFqihbqA,10370
336
+ wandb/sdk/launch/inputs/internal.py,sha256=OCvNGpr5admeeiNY5A-i3h90cmyRreCw0A8RJ5iqvh4,10373
336
337
  wandb/sdk/launch/inputs/manage.py,sha256=OeU9nx_NnpCG2qxXsQgZRQiZBDGiW6046j0RUD9lYI8,5116
337
338
  wandb/sdk/launch/inputs/schema.py,sha256=VUPQY6MDaF-zCiBjh66-MB52nGTY5DyI-FAHl-fNz-0,1457
338
339
  wandb/sdk/launch/registry/abstract.py,sha256=rpPQlTfOTA6wWTU1DdtbnM9myJxQAwXrg4SQPbo9ORY,1194
@@ -355,7 +356,7 @@ wandb/sdk/launch/sweeps/scheduler_sweep.py,sha256=KeRVj_cjabVR6ZY4Qx5IqiH3nQHeT8
355
356
  wandb/sdk/launch/sweeps/utils.py,sha256=MJCKDZY7SQ2Wrv1EWUCFo1YflMkuJAYIZFAswP0VCDw,10153
356
357
  wandb/sdk/lib/__init__.py,sha256=_sOt85qPxtPyM_LaN0IE6dO1CImzwXJXzVHC7R24VBE,188
357
358
  wandb/sdk/lib/_settings_toposort_generate.py,sha256=eA4xFE750evX-Upox1SpXvAoNffNAy7_C-9ydyeC4Qw,5002
358
- wandb/sdk/lib/_settings_toposort_generated.py,sha256=gcd_y4jnW8P9ZN770Smp1KQ8uHa4P6dWS29YxmcgG2o,5652
359
+ wandb/sdk/lib/_settings_toposort_generated.py,sha256=shTqsWw3q-guimJcdwUu7TAAVbGSrIIAy77gVAheyeI,5521
359
360
  wandb/sdk/lib/_wburls_generate.py,sha256=qW6UXaZOHKT_z13MW_Lt3KVhfswutNoNydFs69OwgqI,465
360
361
  wandb/sdk/lib/_wburls_generated.py,sha256=ZDmX_ZYGg5Ag3WNu_Ti-vLB3ctN0NNr-dYkiCiXPQW4,450
361
362
  wandb/sdk/lib/apikey.py,sha256=DxCVjZQ8mCgxfxAojREqzDhn1Y4PTIMAlSGj0Qm6H8Y,9484
@@ -402,8 +403,8 @@ wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
402
403
  wandb/sdk/service/_startup_debug.py,sha256=piYn6Jg-uR5W-EkablqikEpenyYPQuoQynrPq-iccdo,610
403
404
  wandb/sdk/service/port_file.py,sha256=aYA40Y8d78NMwKuJRbG3aL4J4-xH8l8UvzPFFfrwQCY,1599
404
405
  wandb/sdk/service/server.py,sha256=C_HDOBV8-SIB6pZrTUCR1lDGsd3ih5LSYw_BAAFjrmw,4128
405
- wandb/sdk/service/server_sock.py,sha256=jG3ZCQcVUdr4LnTgF0j6Gds1M_wKrPbvjZUocSSWQT8,9932
406
- wandb/sdk/service/service.py,sha256=QFTvIZIdxPX1dckBo7aADsvEYA1rjiIbMhgvXbJ7E0g,9792
406
+ wandb/sdk/service/server_sock.py,sha256=l8YjXcUKmHptvZN4d29NubU0cBYzZWD3pMIDlOrqVbo,9932
407
+ wandb/sdk/service/service.py,sha256=YvJupj5Y0PY6UBUgC_ChFEmXfUKV_RM33SNVojpcc-8,9748
407
408
  wandb/sdk/service/service_base.py,sha256=Mg2zpiOUOEo5T0rZIuZIkwxEIL_ZNO5Pjbgi9lctFPA,1338
408
409
  wandb/sdk/service/service_sock.py,sha256=-zhAl031NNWwsBkOataxfKrBZdlJPttcHb2ujcgySxE,2344
409
410
  wandb/sdk/service/streams.py,sha256=LtBxli28GEKeK7fMXmqivt_ru2Ofn9Gmr76yPwcus3Y,15246
@@ -814,8 +815,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
814
815
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
815
816
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
816
817
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
817
- wandb-0.17.9.dist-info/METADATA,sha256=Da1MFZptfseTdoVTr_L-cI8IeXlUTOdZeBPhgyz74J8,9581
818
- wandb-0.17.9.dist-info/WHEEL,sha256=2DRd_I5Nluwhn03SIbdmN0V_7r9FqkBQixEKn2cGyEA,89
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=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
821
- wandb-0.17.9.dist-info/RECORD,,
818
+ wandb-0.18.0rc1.dist-info/METADATA,sha256=sQ6YXsOjiht1V6pXUD48B0bZQ_H6HuJRZAOtIqwVkUg,9584
819
+ wandb-0.18.0rc1.dist-info/WHEEL,sha256=2DRd_I5Nluwhn03SIbdmN0V_7r9FqkBQixEKn2cGyEA,89
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=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
822
+ wandb-0.18.0rc1.dist-info/RECORD,,