wandb 0.17.1__py3-none-win_amd64.whl → 0.17.2__py3-none-win_amd64.whl

Sign up to get free protection for your applications and to get access to all the features.
wandb/__init__.py CHANGED
@@ -11,7 +11,7 @@ For scripts and interactive notebooks, see https://github.com/wandb/examples.
11
11
 
12
12
  For reference documentation, see https://docs.wandb.com/ref/python.
13
13
  """
14
- __version__ = "0.17.1"
14
+ __version__ = "0.17.2"
15
15
 
16
16
 
17
17
  # Used with pypi checks and other messages related to pip
@@ -214,9 +214,12 @@ from .analytics import Sentry as _Sentry
214
214
  if "dev" in __version__:
215
215
  import os
216
216
 
217
+ # disable error reporting in dev versions for the python client
217
218
  os.environ["WANDB_ERROR_REPORTING"] = os.environ.get(
218
219
  "WANDB_ERROR_REPORTING", "false"
219
220
  )
221
+ # turn on wandb-core for dev versions
222
+ os.environ["WANDB__REQUIRE_CORE"] = os.environ.get("WANDB__REQUIRE_CORE", "true")
220
223
 
221
224
  _sentry = _Sentry()
222
225
  _sentry.setup()
wandb/bin/wandb-core CHANGED
Binary file
wandb/cli/cli.py CHANGED
@@ -880,6 +880,14 @@ def sync(
880
880
  default=False,
881
881
  help="Resume a sweep to continue running new runs.",
882
882
  )
883
+ @click.option(
884
+ "--prior_run",
885
+ "-R",
886
+ "prior_runs",
887
+ multiple=True,
888
+ default=None,
889
+ help="ID of an existing run to add to this sweep",
890
+ )
883
891
  @click.argument("config_yaml_or_sweep_id")
884
892
  @click.pass_context
885
893
  @display_error
@@ -897,6 +905,7 @@ def sweep(
897
905
  cancel,
898
906
  pause,
899
907
  resume,
908
+ prior_runs,
900
909
  config_yaml_or_sweep_id,
901
910
  ):
902
911
  state_args = "stop", "cancel", "pause", "resume"
@@ -1038,6 +1047,7 @@ def sweep(
1038
1047
  project=project,
1039
1048
  entity=entity,
1040
1049
  obj_id=sweep_obj_id,
1050
+ prior_runs=prior_runs,
1041
1051
  )
1042
1052
  sweep_utils.handle_sweep_config_violations(warnings)
1043
1053
 
@@ -1104,6 +1114,14 @@ def sweep(
1104
1114
  default=None,
1105
1115
  help="Resume a launch sweep by passing an 8-char sweep id. Queue required",
1106
1116
  )
1117
+ @click.option(
1118
+ "--prior_run",
1119
+ "-R",
1120
+ "prior_runs",
1121
+ multiple=True,
1122
+ default=None,
1123
+ help="ID of an existing run to add to this sweep",
1124
+ )
1107
1125
  @click.argument("config", required=False, type=click.Path(exists=True))
1108
1126
  @click.pass_context
1109
1127
  @display_error
@@ -1114,6 +1132,7 @@ def launch_sweep(
1114
1132
  queue,
1115
1133
  config,
1116
1134
  resume_id,
1135
+ prior_runs,
1117
1136
  ):
1118
1137
  api = _get_cling_api()
1119
1138
  env = os.environ
@@ -1298,6 +1317,7 @@ def launch_sweep(
1298
1317
  obj_id=sweep_obj_id, # if resuming
1299
1318
  launch_scheduler=launch_scheduler_with_queue,
1300
1319
  state="PENDING",
1320
+ prior_runs=prior_runs,
1301
1321
  )
1302
1322
  sweep_utils.handle_sweep_config_violations(warnings)
1303
1323
  # Log nicely formatted sweep information
wandb/old/summary.py CHANGED
@@ -390,6 +390,11 @@ class HTTPSummary(Summary):
390
390
  self._client = client
391
391
  self._started = time.time()
392
392
 
393
+ def __delitem__(self, key):
394
+ if key not in self._json_dict:
395
+ raise KeyError(key)
396
+ del self._json_dict[key]
397
+
393
398
  def load(self):
394
399
  pass
395
400
 
@@ -2019,16 +2019,23 @@ class Artifact:
2019
2019
  def delete(self, delete_aliases: bool = False) -> None:
2020
2020
  """Delete an artifact and its files.
2021
2021
 
2022
+ If called on a linked artifact (i.e. a member of a portfolio collection): only the link is deleted, and the
2023
+ source artifact is unaffected.
2024
+
2022
2025
  Arguments:
2023
2026
  delete_aliases: If set to `True`, deletes all aliases associated with the artifact.
2024
2027
  Otherwise, this raises an exception if the artifact has existing
2025
2028
  aliases.
2029
+ This parameter is ignored if the artifact is linked (i.e. a member of a portfolio collection).
2026
2030
 
2027
2031
  Raises:
2028
2032
  ArtifactNotLoggedError: If the artifact is not logged.
2029
2033
  """
2030
2034
  self._ensure_logged("delete")
2031
- self._delete(delete_aliases)
2035
+ if self.collection.is_sequence():
2036
+ self._delete(delete_aliases)
2037
+ else:
2038
+ self._unlink()
2032
2039
 
2033
2040
  @normalize_exceptions
2034
2041
  def _delete(self, delete_aliases: bool = False) -> None:
@@ -390,10 +390,13 @@ if np:
390
390
  NumberType.types.append(np.uintp)
391
391
  NumberType.types.append(np.float32)
392
392
  NumberType.types.append(np.float64)
393
- NumberType.types.append(np.float_)
394
393
  NumberType.types.append(np.complex64)
395
394
  NumberType.types.append(np.complex128)
396
- NumberType.types.append(np.complex_)
395
+
396
+ numpy_major_version = np.__version__.split(".")[0]
397
+ if int(numpy_major_version) < 2:
398
+ NumberType.types.append(np.float_)
399
+ NumberType.types.append(np.complex_)
397
400
 
398
401
 
399
402
  class TimestampType(Type):
@@ -33,7 +33,7 @@ class Html(BatchableMedia):
33
33
  if data_is_path:
34
34
  assert isinstance(data, str)
35
35
  data_path = data
36
- with open(data_path) as file:
36
+ with open(data_path, encoding="utf-8") as file:
37
37
  self.html = file.read()
38
38
  elif isinstance(data, str):
39
39
  self.html = data
@@ -36,7 +36,7 @@ if TYPE_CHECKING: # pragma: no cover
36
36
 
37
37
  from ..wandb_run import Run as LocalRun
38
38
 
39
- numeric = Union[int, float, np.integer, np.float_]
39
+ numeric = Union[int, float, np.integer, np.float64]
40
40
  FileFormat3D = Literal[
41
41
  "obj",
42
42
  "gltf",
@@ -1180,6 +1180,7 @@ class Api:
1180
1180
  project_name (str): The project to download, (can include bucket)
1181
1181
  name (str): The run to download
1182
1182
  """
1183
+ # Pulling wandbConfig.start_time is required so that we can determine if a run has actually started
1183
1184
  query = gql(
1184
1185
  """
1185
1186
  query RunResumeStatus($project: String, $entity: String, $name: String!) {
@@ -1203,6 +1204,7 @@ class Api:
1203
1204
  eventsTail
1204
1205
  config
1205
1206
  tags
1207
+ wandbConfig(keys: ["t"])
1206
1208
  }
1207
1209
  }
1208
1210
  }
@@ -3036,6 +3038,7 @@ class Api:
3036
3038
  project: Optional[str] = None,
3037
3039
  entity: Optional[str] = None,
3038
3040
  state: Optional[str] = None,
3041
+ prior_runs: Optional[List[str]] = None,
3039
3042
  ) -> Tuple[str, List[str]]:
3040
3043
  """Upsert a sweep object.
3041
3044
 
@@ -3048,6 +3051,7 @@ class Api:
3048
3051
  project (str): project to use
3049
3052
  entity (str): entity to use
3050
3053
  state (str): state
3054
+ prior_runs (list): IDs of existing runs to add to the sweep
3051
3055
  """
3052
3056
  project_query = """
3053
3057
  project {
@@ -3068,7 +3072,8 @@ class Api:
3068
3072
  $projectName: String,
3069
3073
  $controller: JSONString,
3070
3074
  $scheduler: JSONString,
3071
- $state: String
3075
+ $state: String,
3076
+ $priorRunsFilters: JSONString,
3072
3077
  ) {
3073
3078
  upsertSweep(input: {
3074
3079
  id: $id,
@@ -3078,7 +3083,8 @@ class Api:
3078
3083
  projectName: $projectName,
3079
3084
  controller: $controller,
3080
3085
  scheduler: $scheduler,
3081
- state: $state
3086
+ state: $state,
3087
+ priorRunsFilters: $priorRunsFilters,
3082
3088
  }) {
3083
3089
  sweep {
3084
3090
  name
@@ -3127,6 +3133,9 @@ class Api:
3127
3133
  config_str = yaml.dump(
3128
3134
  json.loads(json.dumps(config)), Dumper=util.NonOctalStringDumper
3129
3135
  )
3136
+ filters = None
3137
+ if prior_runs:
3138
+ filters = json.dumps({"$or": [{"name": r} for r in prior_runs]})
3130
3139
 
3131
3140
  err: Optional[Exception] = None
3132
3141
  for mutation in mutations:
@@ -3140,6 +3149,7 @@ class Api:
3140
3149
  "controller": controller,
3141
3150
  "launchScheduler": launch_scheduler,
3142
3151
  "scheduler": scheduler,
3152
+ "priorRunsFilters": filters,
3143
3153
  }
3144
3154
  if state:
3145
3155
  variables["state"] = state
@@ -754,14 +754,14 @@ class SendManager:
754
754
  project_name=run.project,
755
755
  name=run.run_id,
756
756
  )
757
-
758
- if not resume_status:
757
+ # No resume status = run does not exist; No t key in wandbConfig = run exists but hasn't been inited
758
+ if not resume_status or '"t":' not in resume_status.get("wandbConfig", ""):
759
759
  if self._settings.resume == "must":
760
760
  error = wandb_internal_pb2.ErrorInfo()
761
761
  error.code = wandb_internal_pb2.ErrorInfo.ErrorCode.USAGE
762
762
  error.message = (
763
763
  "You provided an invalid value for the `resume` argument."
764
- f" The value 'must' is not a valid option for resuming a run ({run.run_id}) that does not exist."
764
+ f" The value 'must' is not a valid option for resuming a run ({run.run_id}) that has not been initialized."
765
765
  " Please check your inputs and try again with a valid run ID."
766
766
  " If you are trying to start a new run, please omit the `resume` argument or use `resume='allow'`."
767
767
  )
@@ -410,5 +410,7 @@ class GPU:
410
410
 
411
411
  except pynvml.NVMLError:
412
412
  pass
413
+ except Exception as e:
414
+ logger.error(f"Error Probing GPU: {e}")
413
415
 
414
416
  return info
@@ -141,7 +141,7 @@ class LaunchProject:
141
141
  elif self.job is not None:
142
142
  self.source = LaunchSource.JOB
143
143
  self.project_dir = tempfile.mkdtemp()
144
- if self.uri and self.uri.startswith("placeholder"):
144
+ elif self.uri and self.uri.startswith("placeholder"):
145
145
  self.source = LaunchSource.SCHEDULER
146
146
  self.project_dir = os.getcwd()
147
147
  self._entry_point = self.override_entrypoint
wandb/sdk/wandb_run.py CHANGED
@@ -2614,11 +2614,6 @@ class Run:
2614
2614
  exit_handle = self._backend.interface.deliver_exit(self._exit_code)
2615
2615
  exit_handle.add_probe(on_probe=self._on_probe_exit)
2616
2616
 
2617
- # this message is confusing, we should remove it
2618
- # self._footer_exit_status_info(
2619
- # self._exit_code, settings=self._settings, printer=self._printer
2620
- # )
2621
-
2622
2617
  # wait for the exit to complete
2623
2618
  _ = exit_handle.wait(timeout=-1, on_progress=self._on_progress_exit)
2624
2619
 
@@ -3764,6 +3759,11 @@ class Run:
3764
3759
  settings=settings,
3765
3760
  printer=printer,
3766
3761
  )
3762
+ Run._footer_notify_wandb_core(
3763
+ quiet=quiet,
3764
+ settings=settings,
3765
+ printer=printer,
3766
+ )
3767
3767
  Run._footer_local_warn(
3768
3768
  server_info_response=server_info_response,
3769
3769
  quiet=quiet,
@@ -3786,26 +3786,6 @@ class Run:
3786
3786
  printer=printer,
3787
3787
  )
3788
3788
 
3789
- @staticmethod
3790
- def _footer_exit_status_info(
3791
- exit_code: Optional[int],
3792
- *,
3793
- settings: "Settings",
3794
- printer: Union["PrinterTerm", "PrinterJupyter"],
3795
- ) -> None:
3796
- if settings.silent:
3797
- return
3798
-
3799
- status = "(success)." if not exit_code else f"(failed {exit_code})."
3800
- info = [
3801
- f"Waiting for W&B process to finish... {printer.status(status, bool(exit_code))}"
3802
- ]
3803
-
3804
- if not settings._offline and exit_code:
3805
- info.append(f"Press {printer.abort()} to abort syncing.")
3806
-
3807
- printer.display(f'{" ".join(info)}')
3808
-
3809
3789
  # fixme: Temporary hack until we move to rich which allows multiple spinners
3810
3790
  @staticmethod
3811
3791
  def _footer_file_pusher_status_info(
@@ -4154,6 +4134,24 @@ class Run:
4154
4134
  if package_problem and check_version.upgrade_message:
4155
4135
  printer.display(check_version.upgrade_message)
4156
4136
 
4137
+ @staticmethod
4138
+ def _footer_notify_wandb_core(
4139
+ *,
4140
+ quiet: Optional[bool] = None,
4141
+ settings: "Settings",
4142
+ printer: Union["PrinterTerm", "PrinterJupyter"],
4143
+ ) -> None:
4144
+ """Prints a message advertising the upcoming core release."""
4145
+ if quiet or settings._require_core:
4146
+ return
4147
+
4148
+ printer.display(
4149
+ "The new W&B backend becomes opt-out in version 0.18.0;"
4150
+ ' try it out with `wandb.require("core")`!'
4151
+ " See https://wandb.me/wandb-core for more information.",
4152
+ level="warn",
4153
+ )
4154
+
4157
4155
  @staticmethod
4158
4156
  def _footer_reporter_warn_err(
4159
4157
  reporter: Optional[Reporter] = None,
wandb/util.py CHANGED
@@ -1,6 +1,7 @@
1
1
  import colorsys
2
2
  import contextlib
3
3
  import dataclasses
4
+ import enum
4
5
  import functools
5
6
  import gzip
6
7
  import importlib
@@ -637,6 +638,8 @@ def json_friendly( # noqa: C901
637
638
  elif isinstance(obj, set):
638
639
  # set is not json serializable, so we convert it to tuple
639
640
  obj = tuple(obj)
641
+ elif isinstance(obj, enum.Enum):
642
+ obj = obj.name
640
643
  else:
641
644
  converted = False
642
645
  if getsizeof(obj) > VALUE_BYTES_LIMIT:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wandb
3
- Version: 0.17.1
3
+ Version: 0.17.2
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,5 +1,5 @@
1
1
  package_readme.md,sha256=7MrccgnqmTcd7_bEs_vUZ_OpN-nfniSlgAzeJkzNw7g,4477
2
- wandb/__init__.py,sha256=9AuaOFlAy6orpKIRTI1spsKVgRbEUXwLrFBUgQMq3tI,7285
2
+ wandb/__init__.py,sha256=Odpfh5OVJaXx6_LiJ2G-nNwhThTvokMh0lQZPUY1d7w,7484
3
3
  wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
4
4
  wandb/_globals.py,sha256=NwgYSB2tl2Z5t1Tn1xpLtfkcmPy_dF01u-xxgnCbzoc,721
5
5
  wandb/data_types.py,sha256=kClN3cbqn7cHK34VB0IrsL4aeQzJlH6JByTfXaU9jao,75220
@@ -8,7 +8,7 @@ wandb/jupyter.py,sha256=k35p4hRr_lwMyyVO1ahDuB6EO9GmU4Lt8GGCWnMtDP0,17454
8
8
  wandb/magic.py,sha256=grKCI_AKHF4vYtTXS-Ts7FeK3sdFB8t2JRqmFwjR-F0,62
9
9
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  wandb/trigger.py,sha256=d9TizmMPsvr0k9_3SBK2nq-Mb95bTzf9DZ1aE_F0ASo,644
11
- wandb/util.py,sha256=oMaBCS3MpGF4LueSQVLLMdYdEVNEWs-OOWMiWp03K18,62867
11
+ wandb/util.py,sha256=p4zNxORIs5g6rWtMRoa_4WKdMTTHD2GYlZ0cAVNOmrw,62942
12
12
  wandb/viz.py,sha256=o5K7rLL1we5qw9XIxfzk1nyNmf-Y6bKS0UKpWpQAUGw,3578
13
13
  wandb/wandb_agent.py,sha256=BJOMNNmpkS7snPh9sPaWMMdKnfKmg5YK64kmHjUaIeA,21617
14
14
  wandb/wandb_controller.py,sha256=mIwttTH5-b0O_kxlcpZRxI17L5PbB1KkKWFDwgbi0Xg,25525
@@ -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=_qI6Y0wAeERrX6cr0Dfk-vWVogA4v_cEXV0XF9WBfi0,11856384
52
+ wandb/bin/wandb-core,sha256=DAAfhR-tWv7OmdIpvp9ZCLQfTp2EXwPqUHQXJHfztxk,11911680
53
53
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- wandb/cli/cli.py,sha256=zK_3N8eMTQw8akXxVMriBKDbCm-Jgg8pUGzY86Tk_Ps,100200
54
+ wandb/cli/cli.py,sha256=8Pm9jnHjS8iv6h5PXt8wqojI1-KAHHYVjNSsKt1j5bw,100626
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
@@ -137,7 +137,7 @@ wandb/mpmain/__main__.py,sha256=N6Zydl_eEQRlb48wJ5dFvBhwB_obaMO8am2Y6lx0c_w,58
137
137
  wandb/old/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
138
  wandb/old/core.py,sha256=ms5108fC_7fZD5sQs2BsDd5xhLpZjN5E5kd84qBDHtE,3889
139
139
  wandb/old/settings.py,sha256=K_yxF9YBnCoPJIn083ajPq7WAD_QIfOHqBa4RLwNk1c,6547
140
- wandb/old/summary.py,sha256=NzZBuLLdbMs-ezE8uSEu1ZgiRoaSMPK1esNojiO3H8c,14250
140
+ wandb/old/summary.py,sha256=mGsyQufUIB-ivCIme5H93TM1LFmGRh6QyQfnXbD1rWY,14392
141
141
  wandb/plot/__init__.py,sha256=vA2rngwd8ggs0z28JFVdi98q9izgfHYU0CMe4p2aGQY,499
142
142
  wandb/plot/bar.py,sha256=pkuzh7ilnBxZLrR8hZwALa0SrimtPj9CXzCOX08WPUY,1210
143
143
  wandb/plot/confusion_matrix.py,sha256=hckeqncNfdhV9KWo4LoTBMXbR0P3S23VRBYvZvWRcWY,3513
@@ -184,7 +184,7 @@ wandb/sdk/wandb_manager.py,sha256=dnV3vFFrXwxgbi_l73UVo28Uf5pRj_-UjxN26rfbMxE,68
184
184
  wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
185
185
  wandb/sdk/wandb_require.py,sha256=ecGIPaRLUemYuCPNpeJKqZtpG_gieMfpQEd9mfqiB44,2950
186
186
  wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
187
- wandb/sdk/wandb_run.py,sha256=Ld7vzzP24zzSiKkO5vx47iF_XlvMqGvV1Ly2Dgvf0FA,165130
187
+ wandb/sdk/wandb_run.py,sha256=keAyTRmp8WboNep3kb6o74o44nl8p0qsFa59H-tOEFA,165057
188
188
  wandb/sdk/wandb_settings.py,sha256=cZozw0hpGjuaeLF3ShaAimTlaxkAOuKbSn17x73Fil4,75552
189
189
  wandb/sdk/wandb_setup.py,sha256=z7-VK52ezzCkLubW7lVXu-D9IA3q9GJg5AMlGW1vePo,11413
190
190
  wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
@@ -192,7 +192,7 @@ wandb/sdk/wandb_sweep.py,sha256=MF8UdjqO1nG8Xgi1_cl58b2K90QpjW_7kSRfzobaGyU,3860
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=B3-aj0DzKCP4MccROlZ3sk5B-N845tiz7Qme5jHRHzk,90821
195
+ wandb/sdk/artifacts/artifact.py,sha256=YJaURctUZUMR-VyyxK8tvVIIsKinDm-YNyH5oLP-jKs,91182
196
196
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
197
197
  wandb/sdk/artifacts/artifact_file_cache.py,sha256=c7eDit1XH-zj4MjAKwnIyZ6yEN7kDo4ZbpufIPrYhMM,8980
198
198
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=6k5VvyWyRfMCJsBDST3IBs91uctfIZdxZ74DJg-Pa00,488
@@ -224,13 +224,13 @@ wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=J6uaBu3HOS9x
224
224
  wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
225
225
  wandb/sdk/backend/backend.py,sha256=zdW9iehb6PRRdQ_vfftUa5naOgWwjV1QFDWijoysQ0c,8548
226
226
  wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
227
- wandb/sdk/data_types/_dtypes.py,sha256=QvKULB6zuxmDOVoABWIGdXPYxKKedUgI5ATM5dlgL4o,30848
227
+ wandb/sdk/data_types/_dtypes.py,sha256=16wNOtvfvlBHGKkWR3BuxtzTSzJUXiuM5ZcksoH7FuU,30952
228
228
  wandb/sdk/data_types/_private.py,sha256=vpatnpMcuWUtpSI-dY-YXs9zmffAgEXCoViIGS4yVT8,309
229
229
  wandb/sdk/data_types/histogram.py,sha256=7Rym2_9mIXPJPwINeDRuGHWJOYS3bzQCUCRp64VxKA4,3298
230
- wandb/sdk/data_types/html.py,sha256=ane_YZpe3_K0z_gEjSnk1yJegQL0Az3bbHZ0YWSpq-g,3606
230
+ wandb/sdk/data_types/html.py,sha256=WJAkfrSjoP3KQwTOo6u8fmPIz8V8iX6DIKalXgubFWk,3624
231
231
  wandb/sdk/data_types/image.py,sha256=Bhf4KLuMGNDcnUX5oyOBdke8bMlAaChLDmM6LbhVDbw,26302
232
232
  wandb/sdk/data_types/molecule.py,sha256=x6s_8xBStCrEsHsaQR5lAmslx4TCX8qqOWxEt-KmuDY,8839
233
- wandb/sdk/data_types/object_3d.py,sha256=CxmfXfD8YFzM8pP00sM7c5PavxTWqFyrdoPPnGrsMjk,12879
233
+ wandb/sdk/data_types/object_3d.py,sha256=ydNTRJg2UMd22v9MLDtom1cJL8gSkajWxR2AFNRkK18,12880
234
234
  wandb/sdk/data_types/plotly.py,sha256=TqVQIDzOdG9o5zavzkG0tvhVS9AqCEG8wKqqi0gkoMA,3000
235
235
  wandb/sdk/data_types/saved_model.py,sha256=UOeqBApyxvZEvLhjg5qvkUC1_4bL5HLc7oAGJx5FiRM,16806
236
236
  wandb/sdk/data_types/trace_tree.py,sha256=hL8DU_MMvq6Au6dz32RpqnzqwAw10KmZjgefyrxzvg8,15132
@@ -269,14 +269,14 @@ wandb/sdk/internal/file_stream.py,sha256=-euEOevpl32WiFyruJv3zgeIqAMKd2Owe9GUM5U
269
269
  wandb/sdk/internal/flow_control.py,sha256=RL1lKVRwxV9vDwIMBz9L07p25eZgDi5XSDanHfbNzF8,8847
270
270
  wandb/sdk/internal/handler.py,sha256=HRcHGiPcNIL4-5Ty0_-tZy396QXHQEyISe1npuxlz5I,34589
271
271
  wandb/sdk/internal/internal.py,sha256=b-oc7U7P7xKiL8s-HqTPScDJpYvilyCOEnnBIt9-Clo,13139
272
- wandb/sdk/internal/internal_api.py,sha256=qkowwxj3K2_RHdfCEqBp5tOlhGcQgmtSe6lHOW1JU-Y,148488
272
+ wandb/sdk/internal/internal_api.py,sha256=fhbS33JPMjkaIA3b4BxyE87R2mprmsb6U58xv4Dpqj8,149041
273
273
  wandb/sdk/internal/internal_util.py,sha256=LtusH3QYE12A4vH-7-gHXX0O7TfJ2haESf0_MYdYe50,2754
274
274
  wandb/sdk/internal/job_builder.py,sha256=9iMyyEmUfe3-WE-bVpR5X5ci-67kYX1VwG1n2SK7ukA,23326
275
275
  wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIUk,2426
276
276
  wandb/sdk/internal/progress.py,sha256=Tfz1DJNlIj80-Ghb2b7TzHBftgXkfPWwwHlO2NK8UyA,2529
277
277
  wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
278
278
  wandb/sdk/internal/sample.py,sha256=QE80NZeW-UsUZBlnf9hG_2KNIZWmLzEpZStYTuL4fOI,2512
279
- wandb/sdk/internal/sender.py,sha256=NIusN5M0UcI4NSNUvVp2Iwk9VLqJjgtwZG6c6lG0o0s,67526
279
+ wandb/sdk/internal/sender.py,sha256=Xb7nJovZ5rjbVBd9r6CfMboz1-8oMhOtmWs3iWQaj00,67698
280
280
  wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
281
281
  wandb/sdk/internal/settings_static.py,sha256=tUieif_B36dCFqJKwfcr4bLF0KVgFhGN6q-vg3orRzw,3616
282
282
  wandb/sdk/internal/tb_watcher.py,sha256=_lOVLuxKBB8EFXdDpwBB6pcS5nC6B3Q2B5jKqsJ8fYU,19206
@@ -292,7 +292,7 @@ wandb/sdk/internal/system/assets/aggregators.py,sha256=I5RTmTc73Af6gFbJwQC86JVBs
292
292
  wandb/sdk/internal/system/assets/asset_registry.py,sha256=08uPqgNQDyLTiKrW73Q6hQmd0a9YQ79mZRzkvdXRynY,498
293
293
  wandb/sdk/internal/system/assets/cpu.py,sha256=a8KChZZt05nJk4JxPhKDQCVwEU74vQzLIoR_0gh1au4,4737
294
294
  wandb/sdk/internal/system/assets/disk.py,sha256=KcWyQtYX7C4zKRmJr6vpbRDqJ9B-MSM_PJs3IRNvO9w,6505
295
- wandb/sdk/internal/system/assets/gpu.py,sha256=dryXkjiOhv631GoMmvCDpilKOj6PfTOlSP3aSCcnYxI,14045
295
+ wandb/sdk/internal/system/assets/gpu.py,sha256=BMHlst1D7QxCDKihC_p-3MSmG8VgahGMxbVd59-9EhE,14130
296
296
  wandb/sdk/internal/system/assets/gpu_amd.py,sha256=nX8j-8uRoPvzuCnhxQgQRsB7aaqLjBZyXjFgXbSjoGE,7401
297
297
  wandb/sdk/internal/system/assets/gpu_apple.py,sha256=htF5aUCT555uGNfmjPANHNwjqSe0qr9QqiZvrYC6fI4,5456
298
298
  wandb/sdk/internal/system/assets/interfaces.py,sha256=0rT0O6CEnzYr5ZDfHB2qdFgF4V8pvjOmEj2N1lXKD5o,6755
@@ -305,7 +305,7 @@ wandb/sdk/internal/system/assets/trainium.py,sha256=a--LqSbGeNYcU8rwIDMEKwxktQLG
305
305
  wandb/sdk/launch/__init__.py,sha256=tsiLFVElWgdxjfRWGj0V2MOi0oaggmHpYwzc_Ful1qw,363
306
306
  wandb/sdk/launch/_launch.py,sha256=0TC5h02R3Q8-MmzoJNmCow1ER4CrkkuGlUdwd58SblU,12052
307
307
  wandb/sdk/launch/_launch_add.py,sha256=gHZZX0jmSYxm4b0ffJBaSBxDQTJZL-hG1cY-FJt-MiU,9051
308
- wandb/sdk/launch/_project_spec.py,sha256=AxS-QUDzIS6ed6gGnWweokUPBtVKNseefQuGkuMu3H4,21425
308
+ wandb/sdk/launch/_project_spec.py,sha256=b3XaZRwp7TycuyBlYVTs_kzSnM7F54PGvVlEQqdquzM,21427
309
309
  wandb/sdk/launch/create_job.py,sha256=_KuukcrT2_TeCsz13dEJsSD7xUJWUY7N4DTFdxz6mPg,17824
310
310
  wandb/sdk/launch/errors.py,sha256=ry-q97_2vU_aWtTJPCOgqly2TgIJsCiKnywpdXXjnw8,324
311
311
  wandb/sdk/launch/git_reference.py,sha256=5pswecUCOOo2UUrfA5I9q6zrFe80M5IGODLNzXxDlgo,3867
@@ -812,8 +812,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
812
812
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
813
813
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
814
814
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
815
- wandb-0.17.1.dist-info/METADATA,sha256=y_JXWZlwY77S0B_bElgWLRNRtN8RziD3xfphm_c4Czc,10047
816
- wandb-0.17.1.dist-info/WHEEL,sha256=M1tmngCHfER8pIPuS8Dt7mqF1TawUl-fJoa23auO3MM,93
817
- wandb-0.17.1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
818
- wandb-0.17.1.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
819
- wandb-0.17.1.dist-info/RECORD,,
815
+ wandb-0.17.2.dist-info/METADATA,sha256=G0L6wFjIqd0ZUqsF7w1MbpA1mVBBB-kAMp5aYdyAr8Y,10047
816
+ wandb-0.17.2.dist-info/WHEEL,sha256=M1tmngCHfER8pIPuS8Dt7mqF1TawUl-fJoa23auO3MM,93
817
+ wandb-0.17.2.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
818
+ wandb-0.17.2.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
819
+ wandb-0.17.2.dist-info/RECORD,,
File without changes