wandb 0.19.0__py3-none-win32.whl → 0.19.1__py3-none-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. wandb/__init__.py +1 -7
  2. wandb/__init__.pyi +211 -209
  3. wandb/apis/attrs.py +15 -4
  4. wandb/apis/public/api.py +8 -4
  5. wandb/apis/public/files.py +65 -12
  6. wandb/apis/public/runs.py +52 -7
  7. wandb/apis/public/sweeps.py +1 -1
  8. wandb/bin/gpu_stats.exe +0 -0
  9. wandb/bin/wandb-core +0 -0
  10. wandb/cli/cli.py +2 -1
  11. wandb/env.py +1 -1
  12. wandb/errors/term.py +60 -1
  13. wandb/integration/keras/callbacks/tables_builder.py +3 -1
  14. wandb/integration/kfp/kfp_patch.py +25 -15
  15. wandb/integration/lightning/fabric/logger.py +3 -1
  16. wandb/integration/tensorboard/monkeypatch.py +3 -2
  17. wandb/jupyter.py +4 -5
  18. wandb/plot/bar.py +5 -6
  19. wandb/plot/histogram.py +1 -1
  20. wandb/plot/line_series.py +3 -3
  21. wandb/plot/pr_curve.py +7 -3
  22. wandb/plot/scatter.py +2 -1
  23. wandb/proto/v3/wandb_settings_pb2.py +25 -15
  24. wandb/proto/v4/wandb_settings_pb2.py +17 -15
  25. wandb/proto/v5/wandb_settings_pb2.py +17 -15
  26. wandb/sdk/artifacts/_validators.py +1 -3
  27. wandb/sdk/artifacts/artifact_manifest_entry.py +1 -1
  28. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +12 -2
  29. wandb/sdk/data_types/helper_types/image_mask.py +8 -2
  30. wandb/sdk/data_types/histogram.py +3 -3
  31. wandb/sdk/data_types/image.py +3 -1
  32. wandb/sdk/interface/interface.py +34 -5
  33. wandb/sdk/interface/interface_sock.py +2 -2
  34. wandb/sdk/internal/file_stream.py +4 -1
  35. wandb/sdk/internal/sender.py +4 -1
  36. wandb/sdk/internal/settings_static.py +17 -4
  37. wandb/sdk/launch/utils.py +1 -0
  38. wandb/sdk/lib/ipython.py +5 -27
  39. wandb/sdk/lib/printer.py +33 -20
  40. wandb/sdk/lib/progress.py +7 -1
  41. wandb/sdk/lib/sparkline.py +1 -2
  42. wandb/sdk/wandb_config.py +2 -2
  43. wandb/sdk/wandb_init.py +236 -243
  44. wandb/sdk/wandb_run.py +172 -231
  45. wandb/sdk/wandb_settings.py +104 -15
  46. {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/METADATA +1 -1
  47. {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/RECORD +50 -50
  48. {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/WHEEL +0 -0
  49. {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/entry_points.txt +0 -0
  50. {wandb-0.19.0.dist-info → wandb-0.19.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,11 +1,11 @@
1
1
  from __future__ import annotations
2
2
 
3
3
  import configparser
4
- import getpass
5
4
  import json
6
5
  import logging
7
6
  import multiprocessing
8
7
  import os
8
+ import pathlib
9
9
  import platform
10
10
  import re
11
11
  import shutil
@@ -65,6 +65,15 @@ class Settings(BaseModel, validate_assignment=True):
65
65
  # To revert to the old behavior, set this to False.
66
66
  allow_offline_artifacts: bool = True
67
67
  allow_val_change: bool = False
68
+ # Controls anonymous data logging. Possible values are:
69
+ # - "never": requires you to link your W&B account before
70
+ # tracking the run, so you don't accidentally create an anonymous
71
+ # run.
72
+ # - "allow": lets a logged-in user track runs with their account, but
73
+ # lets someone who is running the script without a W&B account see
74
+ # the charts in the UI.
75
+ # - "must": sends the run to an anonymous account instead of to a
76
+ # signed-up user account.
68
77
  anonymous: Literal["allow", "must", "never"] | None = None
69
78
  # The W&B API key.
70
79
  api_key: str | None = None
@@ -126,7 +135,10 @@ class Settings(BaseModel, validate_assignment=True):
126
135
  identity_token_file: str | None = None
127
136
  # Unix glob patterns relative to `files_dir` to not upload.
128
137
  ignore_globs: tuple[str, ...] = ()
138
+ # Time in seconds to wait for the wandb.init call to complete before timing out.
129
139
  init_timeout: float = 90.0
140
+ # Whether to insecurely disable SSL verification.
141
+ insecure_disable_ssl: bool = False
130
142
  job_name: str | None = None
131
143
  job_source: Literal["repo", "artifact", "image"] | None = None
132
144
  label_disable: bool = False
@@ -293,7 +305,7 @@ class Settings(BaseModel, validate_assignment=True):
293
305
  x_save_requirements: bool = True
294
306
  x_service_transport: str | None = None
295
307
  x_service_wait: float = 30.0
296
- x_show_operation_stats: bool = False
308
+ x_show_operation_stats: bool = True
297
309
  # The start time of the run in seconds since the Unix epoch.
298
310
  x_start_time: float | None = None
299
311
  # PID of the process that started the wandb-core process to collect system stats for.
@@ -320,6 +332,10 @@ class Settings(BaseModel, validate_assignment=True):
320
332
  if platform.system() == "Darwin"
321
333
  else ("/",)
322
334
  )
335
+ # GPU device indices to monitor (e.g. [0, 1, 2]).
336
+ # If not set, captures metrics for all GPUs.
337
+ # Assumes 0-based indexing matching CUDA/ROCm device enumeration.
338
+ x_stats_gpu_device_ids: Sequence[int] | None = None
323
339
  # Number of system metric samples to buffer in memory in the wandb-core process.
324
340
  # Can be accessed via run._system_metrics.
325
341
  x_stats_buffer_size: int = 0
@@ -400,6 +416,14 @@ class Settings(BaseModel, validate_assignment=True):
400
416
  raise ValueError("http is not secure, please use https://api.wandb.ai")
401
417
  return value.rstrip("/")
402
418
 
419
+ @field_validator("code_dir", mode="before")
420
+ @classmethod
421
+ def validate_code_dir(cls, value):
422
+ # TODO: add native support for pathlib.Path
423
+ if isinstance(value, pathlib.Path):
424
+ return str(value)
425
+ return value
426
+
403
427
  @field_validator("console", mode="after")
404
428
  @classmethod
405
429
  def validate_console(cls, value, info):
@@ -416,6 +440,14 @@ class Settings(BaseModel, validate_assignment=True):
416
440
  value = "redirect"
417
441
  return value
418
442
 
443
+ @field_validator("x_executable", mode="before")
444
+ @classmethod
445
+ def validate_x_executable(cls, value):
446
+ # TODO: add native support for pathlib.Path
447
+ if isinstance(value, pathlib.Path):
448
+ return str(value)
449
+ return value
450
+
419
451
  @field_validator("x_file_stream_max_line_bytes", mode="after")
420
452
  @classmethod
421
453
  def validate_file_stream_max_line_bytes(cls, value):
@@ -423,6 +455,14 @@ class Settings(BaseModel, validate_assignment=True):
423
455
  raise ValueError("File stream max line bytes must be greater than 0")
424
456
  return value
425
457
 
458
+ @field_validator("x_files_dir", mode="before")
459
+ @classmethod
460
+ def validate_x_files_dir(cls, value):
461
+ # TODO: add native support for pathlib.Path
462
+ if isinstance(value, pathlib.Path):
463
+ return str(value)
464
+ return value
465
+
426
466
  @field_validator("fork_from", mode="before")
427
467
  @classmethod
428
468
  def validate_fork_from(cls, value, info) -> RunMoment | None:
@@ -456,6 +496,30 @@ class Settings(BaseModel, validate_assignment=True):
456
496
  def validate_ignore_globs(cls, value):
457
497
  return tuple(value) if not isinstance(value, tuple) else value
458
498
 
499
+ @field_validator("program", mode="before")
500
+ @classmethod
501
+ def validate_program(cls, value):
502
+ # TODO: add native support for pathlib.Path
503
+ if isinstance(value, pathlib.Path):
504
+ return str(value)
505
+ return value
506
+
507
+ @field_validator("program_abspath", mode="before")
508
+ @classmethod
509
+ def validate_program_abspath(cls, value):
510
+ # TODO: add native support for pathlib.Path
511
+ if isinstance(value, pathlib.Path):
512
+ return str(value)
513
+ return value
514
+
515
+ @field_validator("program_relpath", mode="before")
516
+ @classmethod
517
+ def validate_program_relpath(cls, value):
518
+ # TODO: add native support for pathlib.Path
519
+ if isinstance(value, pathlib.Path):
520
+ return str(value)
521
+ return value
522
+
459
523
  @field_validator("project", mode="after")
460
524
  @classmethod
461
525
  def validate_project(cls, value, info):
@@ -492,6 +556,14 @@ class Settings(BaseModel, validate_assignment=True):
492
556
  )
493
557
  return run_moment
494
558
 
559
+ @field_validator("root_dir", mode="before")
560
+ @classmethod
561
+ def validate_root_dir(cls, value):
562
+ # TODO: add native support for pathlib.Path
563
+ if isinstance(value, pathlib.Path):
564
+ return str(value)
565
+ return value
566
+
495
567
  @field_validator("run_id", mode="after")
496
568
  @classmethod
497
569
  def validate_run_id(cls, value, info):
@@ -509,6 +581,8 @@ class Settings(BaseModel, validate_assignment=True):
509
581
  @field_validator("settings_system", mode="after")
510
582
  @classmethod
511
583
  def validate_settings_system(cls, value):
584
+ if isinstance(value, pathlib.Path):
585
+ return str(_path_convert(value))
512
586
  return _path_convert(value)
513
587
 
514
588
  @field_validator("x_service_wait", mode="after")
@@ -516,7 +590,7 @@ class Settings(BaseModel, validate_assignment=True):
516
590
  def validate_service_wait(cls, value):
517
591
  if value < 0:
518
592
  raise UsageError("Service wait time cannot be negative")
519
- return
593
+ return value
520
594
 
521
595
  @field_validator("start_method")
522
596
  @classmethod
@@ -532,11 +606,19 @@ class Settings(BaseModel, validate_assignment=True):
532
606
  )
533
607
  return value
534
608
 
535
- @field_validator("x_stats_sampling_interval", mode="after")
609
+ @field_validator("x_stats_gpu_device_ids", mode="before")
536
610
  @classmethod
537
- def validate_stats_sampling_interval(cls, value):
538
- if value < 0.1:
539
- raise UsageError("Stats sampling interval cannot be less than 0.1 seconds")
611
+ def validate_x_stats_gpu_device_ids(cls, value):
612
+ if isinstance(value, str):
613
+ return json.loads(value)
614
+ return value
615
+
616
+ @field_validator("x_stats_neuron_monitor_config_path", mode="before")
617
+ @classmethod
618
+ def validate_x_stats_neuron_monitor_config_path(cls, value):
619
+ # TODO: add native support for pathlib.Path
620
+ if isinstance(value, pathlib.Path):
621
+ return str(value)
540
622
  return value
541
623
 
542
624
  @field_validator("x_stats_open_metrics_endpoints", mode="before")
@@ -560,6 +642,13 @@ class Settings(BaseModel, validate_assignment=True):
560
642
  return json.loads(value)
561
643
  return value
562
644
 
645
+ @field_validator("x_stats_sampling_interval", mode="after")
646
+ @classmethod
647
+ def validate_stats_sampling_interval(cls, value):
648
+ if value < 0.1:
649
+ raise UsageError("Stats sampling interval cannot be less than 0.1 seconds")
650
+ return value
651
+
563
652
  @field_validator("sweep_id", mode="after")
564
653
  @classmethod
565
654
  def validate_sweep_id(cls, value):
@@ -573,6 +662,14 @@ class Settings(BaseModel, validate_assignment=True):
573
662
  raise UsageError("Sweep ID cannot contain only whitespace")
574
663
  return value
575
664
 
665
+ @field_validator("sweep_param_path", mode="before")
666
+ @classmethod
667
+ def validate_sweep_param_path(cls, value):
668
+ # TODO: add native support for pathlib.Path
669
+ if isinstance(value, pathlib.Path):
670
+ return str(value)
671
+ return value
672
+
576
673
  # Computed fields.
577
674
 
578
675
  @computed_field # type: ignore[prop-decorator]
@@ -957,14 +1054,6 @@ class Settings(BaseModel, validate_assignment=True):
957
1054
  if self.host is None:
958
1055
  self.host = socket.gethostname() # type: ignore
959
1056
 
960
- if self.username is None:
961
- try: # type: ignore
962
- self.username = getpass.getuser()
963
- except KeyError:
964
- # getuser() could raise KeyError in restricted environments like
965
- # chroot jails or docker containers. Return user id in these cases.
966
- self.username = str(os.getuid())
967
-
968
1057
  _executable = (
969
1058
  self.x_executable
970
1059
  or os.environ.get(env._EXECUTABLE)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wandb
3
- Version: 0.19.0
3
+ Version: 0.19.1
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=XGlaq8rMFcoBb21rCr2d5qeSM79ZI4WslLmXqRimTGQ,4395
2
- wandb/__init__.py,sha256=e2FCnd67kE0r8MtTlqfg4laROM0gbQ6DpJKbWBzPstU,7411
3
- wandb/__init__.pyi,sha256=LYDoAUXpG1F2uG5cYJuBaHe-pl3-PeWZ71MvU90s2q0,46766
2
+ wandb/__init__.py,sha256=aE0ObiD1U8U-1k347Rp3SwTC1W4TNPGFla6zdDmWkng,7234
3
+ wandb/__init__.pyi,sha256=KmBIerQ3zErUOF3GNOO1DKILf6db3tioBvRIJiHepk8,48100
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=4zXwzPgwHuMjyxzNbVQZANnHM0FoqEOn1jlLvnkdPAc,2342
7
- wandb/env.py,sha256=E7T1s-gxBoUFOhT2UEbKutGb-Y96CQoJJw-fPM57vAs,14004
8
- wandb/jupyter.py,sha256=fmG7QfwCS2zNJMW4kGlSEdm5tyP2lCog8uF9AyPxloE,17829
7
+ wandb/env.py,sha256=21A6cvix9XfFShOuEmc4mffaUpd6y1hk58AKYulS_e4,14018
8
+ wandb/jupyter.py,sha256=LG4Z-LCx-3v4eiftr8aSUGgByzLrkyhdRvNwfxPSc5A,17787
9
9
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  wandb/sklearn.py,sha256=8wlo8mLyekq6yRZBgluzPj4J-RP3wkLaEWm0yh7gvWw,838
11
11
  wandb/trigger.py,sha256=d9TizmMPsvr0k9_3SBK2nq-Mb95bTzf9DZ1aE_F0ASo,644
@@ -18,7 +18,7 @@ wandb/agents/pyagent.py,sha256=21nzVYM1aZAibNCQ3teFb2eCoNx9sMslF3cFAYD9zQc,13772
18
18
  wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,53
19
19
  wandb/analytics/sentry.py,sha256=R1KHNO0hG6Al76edXHv7oBCgcT4wxVdLbjysX2Yfoqk,8674
20
20
  wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
21
- wandb/apis/attrs.py,sha256=j11iaNnVbjnDSYUBpSJvaOvO9q7hx4PqieKvWGumvHw,1300
21
+ wandb/apis/attrs.py,sha256=Ao5h3bycrUFbswNl6kVOEQLHZsImYP1aHIl4QaEVc8o,1496
22
22
  wandb/apis/internal.py,sha256=Pl69givRVnUjkAExN7LddKWMv2kmhZ96Ctbf1yKOuZc,7693
23
23
  wandb/apis/normalize.py,sha256=TkLlsbRCr8hCMfMQq3x8N45XO3KDAxllsNDkiMInGUc,2469
24
24
  wandb/apis/paginator.py,sha256=h4I_W9EjjOBiOQS7bsxHJinZwSJ-Ha-HkFKt02MtU4s,2199
@@ -30,17 +30,17 @@ wandb/apis/importers/internals/internal.py,sha256=0HPjKvOfRZwdLKKhn_rdVKI5BA3D2S
30
30
  wandb/apis/importers/internals/protocols.py,sha256=PRnN66EtZPDtCiZomB_CtTtE0tMcebeG9aAK5OyDSGk,2988
31
31
  wandb/apis/importers/internals/util.py,sha256=2bTcLqJjG7MWj6qVvmrmjP5VVkPLOSq9zr7zPM0Z_Pc,2161
32
32
  wandb/apis/public/__init__.py,sha256=sVe4PFIojfDnw9mvVtQn1GHynb7UG7yIcPWrfNCoYP0,1104
33
- wandb/apis/public/api.py,sha256=H9_WW7c3nfTVTCcXhTwxzsC9AZX5nCvbOkweqVcKWcc,53036
33
+ wandb/apis/public/api.py,sha256=T338cHgvNKM7MPH5craQ02xsQ3UhLLla3XQqemt2UG4,53135
34
34
  wandb/apis/public/artifacts.py,sha256=w5MYyW1ZDH3ztcbkPxU6Uk0joS4L6_Mt01Ko3ZbaemY,34997
35
35
  wandb/apis/public/const.py,sha256=aK9Fcp1clmTHWj0C24fTRU3ecP5u91dPmp298kLiBdM,125
36
- wandb/apis/public/files.py,sha256=hkJG9pAOrS18yOMkMdGo3XUMKlDTfPXcl6Mc6LFT7Bk,6480
36
+ wandb/apis/public/files.py,sha256=Ll-5rBz--587laqB8SF144qu4l7iBhDqhe-PZvzEqjA,8741
37
37
  wandb/apis/public/history.py,sha256=Dapg1I0CRm1NDzzP9gfTDrs4-K8b8zZHMgjIlpo5NA4,4785
38
38
  wandb/apis/public/jobs.py,sha256=ZkdsxM6Uks-LsIvhJKL79sy5GEXsf1A_Gvje1xFnvug,23016
39
39
  wandb/apis/public/projects.py,sha256=TWTf_bvGJr-pTNKY_quNytP7KW0oimpDQ_FasOR-glA,4476
40
40
  wandb/apis/public/query_generator.py,sha256=2rTLP6xBphyVb4gexvO_rz1iN-2c4LVzaUk0_rmKxTc,6143
41
41
  wandb/apis/public/reports.py,sha256=QPSgVPB7SmexC-CQmRd6h50ZymSnvMZKPrlCgCx9G-o,15736
42
- wandb/apis/public/runs.py,sha256=UhdSidMP-UJ2KFNquamkax8UEUPnl8_WyT9TTPk7V14,34515
43
- wandb/apis/public/sweeps.py,sha256=sg94EiNI_QOc40TKGaY4rRjz3d74OeUKEGfjuuO6QnE,6783
42
+ wandb/apis/public/runs.py,sha256=72dJzX1UZeWN3r1HX_gzqVkal7NxKbwc9I7-gb4dxyA,36356
43
+ wandb/apis/public/sweeps.py,sha256=qulkX50YqvJbvrISkOk5NqeqM8z-MnXdyFtV-V9luMI,6787
44
44
  wandb/apis/public/teams.py,sha256=OZXEE6zcy8p_MVAAWx0wL7jpFvOmsiE6TozwIJm2SNI,5672
45
45
  wandb/apis/public/users.py,sha256=cr_j9nBbJQyXg5TZ_heYPdC2dJICffyy4HMyTzAG-g0,3932
46
46
  wandb/apis/public/utils.py,sha256=g-tMHWPeOZt-0qaxPH62I8ed2YG8BQIURTIGQXzdtZg,2171
@@ -49,11 +49,11 @@ 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/gpu_stats.exe,sha256=UQMq2xNRksZVQSxw1qoI8V7-EUIsvC3Vkw_xUvG-NzY,8170496
53
- wandb/bin/wandb-core,sha256=OP-_i_Cxefm77aphDNLIkl8PT8ZeD73T6EB09X-tM94,46748160
52
+ wandb/bin/gpu_stats.exe,sha256=IjThds_dK5oAyY8OAc1N_CUJhktAjg6dDHa0lEZ-FTM,8112640
53
+ wandb/bin/wandb-core,sha256=NSRYh9bXQ_wK5Djg7KnRdqz-illSektdCTFZGdwOFo4,46615040
54
54
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  wandb/cli/beta.py,sha256=SlPtEzMTPjBlAMheWvswNK-ctU4fje4_P8Qgtc75Yyo,5535
56
- wandb/cli/cli.py,sha256=MC30Z91zipTpPxjvCQVrJqNzVGn45kj5vhCugXFsYWg,95571
56
+ wandb/cli/cli.py,sha256=eEqiMwVdC8tNzbLgyKrxhN-YZtXuKoR2d-T0f2OdFC8,95641
57
57
  wandb/docker/__init__.py,sha256=0JmQE6mV9lBUpAuezj3-cbWjPQfLqkhkuZnxDYtHEl4,10881
58
58
  wandb/docker/auth.py,sha256=tynuijSUb1zRWVpSmNl8MpqaMsvLcVuqgB9_ljFqmgk,15444
59
59
  wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
@@ -61,7 +61,7 @@ wandb/docker/www_authenticate.py,sha256=eZleMjPqfGxy81QlyYVan2UTQkY3pxipgCenpIKW
61
61
  wandb/errors/__init__.py,sha256=7H7jJlXTFaoRMI3TxIw7ZZ4xWEtJsLI__YjGLV_X-NA,310
62
62
  wandb/errors/errors.py,sha256=HK1EcOt_adHsRJotyiKKr9YnvpGwzhBCPrNH2zu0LZg,934
63
63
  wandb/errors/links.py,sha256=-5_8WMsqH92N0bcYZk2aXXzYpTPDwm2nCtAgVNYCvNM,2593
64
- wandb/errors/term.py,sha256=Akf-U1IhBgtNsyxRnK8IZBolKvpTsvnpWU2b2n3ZIQk,10794
64
+ wandb/errors/term.py,sha256=i0Gwo_vMF13NzWPQ_0VUPYU6McvyW_z_I97Um8imvHQ,12622
65
65
  wandb/errors/util.py,sha256=DEdbUq-yD7AT_BxhWjAf08xGgKrPpKttYMlz0sp4Dx8,1769
66
66
  wandb/errors/warnings.py,sha256=MVBIm1GGlSo-v4Yusn0C9tRO2_hIkT4FEL-zmdf7UKY,59
67
67
  wandb/filesync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -93,17 +93,17 @@ wandb/integration/keras/keras.py,sha256=xITwv9NIL3PY2k3HX1WUhhYsmxRqNfal75V8ub6J
93
93
  wandb/integration/keras/callbacks/__init__.py,sha256=c9Wkvv3i-Xz40SDBWHHDhPod8y26HdO0vq1jF6tTlro,228
94
94
  wandb/integration/keras/callbacks/metrics_logger.py,sha256=VjnCUwdnLXqN7jo1n1z5QqHmR-BAuq64CsdRxDuGiUg,5048
95
95
  wandb/integration/keras/callbacks/model_checkpoint.py,sha256=pKbnpFsNwa1iZ-dNLf2WyL7dJYpKRw_w0GCWzXRf4Mk,8734
96
- wandb/integration/keras/callbacks/tables_builder.py,sha256=WZhGAZu0OVavItPLa8jBk3z94jeZCg70ASDsbwy5vMc,9066
96
+ wandb/integration/keras/callbacks/tables_builder.py,sha256=sAJZT7JdUxLHyYHu4xb08wnL7GwOTHE__AmGfXATPgA,9109
97
97
  wandb/integration/kfp/__init__.py,sha256=wXFFdr8IgU_YNGovusyQDuus09mgOiofLk4YRptvR2c,142
98
98
  wandb/integration/kfp/helpers.py,sha256=M_IacPmgELzwbfQZ3NFjQFuhm3lktZjgSeJGWJj1Etg,1044
99
- wandb/integration/kfp/kfp_patch.py,sha256=02fo7-lzlAt1vMpFFaHMKYKoorVFg9Jf1l2HHrn7Dzo,13401
99
+ wandb/integration/kfp/kfp_patch.py,sha256=gDSoy4vJlD2jVM5ycMSpudJIpJPm-Hr_cTUr26ZrSg4,13518
100
100
  wandb/integration/kfp/wandb_logging.py,sha256=ZpwRnpN63p88J7KWxQeMXo3puhF4uJBOGCW8XY5p9_0,6349
101
101
  wandb/integration/langchain/__init__.py,sha256=qd8J15XbCMtAB20rVJAbSp8NOkOYNITCVbb-htHwi0U,69
102
102
  wandb/integration/langchain/wandb_tracer.py,sha256=EyC_d6CjkDD2efwqizSpYy3tJWscy4NiwkOhuMT50jg,2265
103
103
  wandb/integration/lightgbm/__init__.py,sha256=rN1ybN9_mAU0_BVHOi_-QGNNrE2QFHclUu5vO4tGkzg,8220
104
104
  wandb/integration/lightning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
105
  wandb/integration/lightning/fabric/__init__.py,sha256=_KF_WmU4ynBy9WT8EVXZw0cwDtF2t1TQ_GzUDQLXeAg,97
106
- wandb/integration/lightning/fabric/logger.py,sha256=lz3uq5pDmruTuAv0CJ1X57KyjMpUF308Mpq8PmVo8Pc,27991
106
+ wandb/integration/lightning/fabric/logger.py,sha256=d-vODZybasjWRWfxgea2zt8M8fX54sx1jWu3FuxB0iQ,28015
107
107
  wandb/integration/metaflow/__init__.py,sha256=yoTkbO85zdlJwL5f8HmXXVVNDTcIPyYwuHNhysTzkv4,112
108
108
  wandb/integration/metaflow/metaflow.py,sha256=ZKBGli9QVrkkcWMAN956klmoTRUQ_jol0YgYu8r4RDQ,12275
109
109
  wandb/integration/openai/__init__.py,sha256=negbYxbmhe4hA7Zl41FA5FnZ1JP6G6IYUTK4lS4YSqs,69
@@ -141,7 +141,7 @@ wandb/integration/sklearn/plot/regressor.py,sha256=Z9jNUnOD2GrhEz1iszk-kLUyJAw8m
141
141
  wandb/integration/sklearn/plot/shared.py,sha256=1eJTV-hFOGqVWRtOHIvPNHo7rgYrlf-cjwIlJGSEIqc,2854
142
142
  wandb/integration/tensorboard/__init__.py,sha256=YhRPA469tZPMdQ5z0jxVYboGFvrBbe7OI7djfqh_veQ,223
143
143
  wandb/integration/tensorboard/log.py,sha256=--6sGia3MX-WcQk8X1eSE2N1jHnBbSi1C2GCjzk4jGo,14534
144
- wandb/integration/tensorboard/monkeypatch.py,sha256=Li7Wz9mXnY9CcvglXypLoJReOnSfWWNuFVtDlnfOrXk,7013
144
+ wandb/integration/tensorboard/monkeypatch.py,sha256=FpVKzvm8oMZSHFW90xWQfWzTvRJYZhqJfKkY3oPi3wU,7072
145
145
  wandb/integration/tensorflow/__init__.py,sha256=vc4iWvSGqgLhucdrUisgsA3Xy2KU63nkcYN0gKD_eZs,130
146
146
  wandb/integration/tensorflow/estimator_hook.py,sha256=hZn70hR-nZT3RspXqCFatQx3ePL7qpd0ZniQRqhn1eg,1810
147
147
  wandb/integration/torch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -163,15 +163,15 @@ wandb/old/core.py,sha256=3H_pBFnKcuAVOXJP_BIA5JP-ggfVVVPgkZaJ4FPRLb8,1554
163
163
  wandb/old/settings.py,sha256=K_yxF9YBnCoPJIn083ajPq7WAD_QIfOHqBa4RLwNk1c,6547
164
164
  wandb/old/summary.py,sha256=mGsyQufUIB-ivCIme5H93TM1LFmGRh6QyQfnXbD1rWY,14392
165
165
  wandb/plot/__init__.py,sha256=uA-_22EzRPHUN_WRcbfUgSruZU3vQwiImqPz5YhO2pY,841
166
- wandb/plot/bar.py,sha256=wCfMm-UbnBXOMbZr-OsrQBx0_uUI31pDyrfqAtzMxn4,2236
166
+ wandb/plot/bar.py,sha256=3DI6slbqNF3uiSEArhBem9wFsiVy7-KBlo3zTv8Uels,2234
167
167
  wandb/plot/confusion_matrix.py,sha256=jEfeDWY6XScGzMTB50DuimIvYWHJ3OXAENoNbrKuboU,6879
168
168
  wandb/plot/custom_chart.py,sha256=ZN5b4CNmdhsyANN1rxjKexXFhy65J67rNkoy8q3TTNc,4508
169
- wandb/plot/histogram.py,sha256=mymEx2lRnwc1617zhc8spxBb_mhc1tdzNnSnfGtYF-A,1876
169
+ wandb/plot/histogram.py,sha256=CBqbVYSMrim1d4yxIhpYUy2Ciac39CHm86Tq5mWwhGM,1876
170
170
  wandb/plot/line.py,sha256=iZkSD6se5gpvFiz5u5tsHNnrUqj82VfF2_cGSKuVzwY,2588
171
- wandb/plot/line_series.py,sha256=tBROxWUf8qLrTndXi-cKfFYGgRnTDoikiIJbbyu-FnY,6166
172
- wandb/plot/pr_curve.py,sha256=rzlKWkfT28Alck8CVT7DSaybcYvAaSLPbzE6RAFtmBY,6831
171
+ wandb/plot/line_series.py,sha256=cXHqmXJ6OCf2IoygKnI_2EzjNyPDlAOH91xq8U4PAPU,6156
172
+ wandb/plot/pr_curve.py,sha256=h6qBPoNEppIE5k7R2f66D6yATOKkMfYYl6jtwwOV7dg,6938
173
173
  wandb/plot/roc_curve.py,sha256=uoK7NOnYVTsvfXM1OSSdRk-P72Lhlw_vsLq5nrSBZaA,5987
174
- wandb/plot/scatter.py,sha256=Bncy0DXetAVliVfTV80RoQCif188rM9Wxzc_rHUtEek,2219
174
+ wandb/plot/scatter.py,sha256=Dt3hfUcJVgYrpiwam7q0yOr4cALtt-S_uouZ84OzH8g,2232
175
175
  wandb/plot/utils.py,sha256=VcEpRjRT9VVyYAjKRIyZVHCwypgmKtsciAMdi-TIqe4,6986
176
176
  wandb/plot/viz.py,sha256=aS-iWx4dzGs7rrI-xbantjGNey3zPiNrjDBsunUq7Wg,984
177
177
  wandb/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -187,43 +187,43 @@ wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
187
  wandb/proto/v3/wandb_base_pb2.py,sha256=zwma_gb3IOSfBJ1tvMIdmQtQQZLe29upb8Mqr4m9No4,2410
188
188
  wandb/proto/v3/wandb_internal_pb2.py,sha256=KcxYKkSC6M49eRstI2osUjIWU-q4fcdmc1gBv1vQHeg,113246
189
189
  wandb/proto/v3/wandb_server_pb2.py,sha256=PK2SpH2Jxc51AfFzDGqPoRzyy_TbdhPjq9UP5OzQ3tw,15670
190
- wandb/proto/v3/wandb_settings_pb2.py,sha256=IKcSwkbLBsUfEME1EbCyI-gt64VYgrTZZGtyTw4-Su8,20484
190
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=CA66EvSXFDvP9XgpomXN9TChxzWTLEGaj7fG3eOrzS8,21164
191
191
  wandb/proto/v3/wandb_telemetry_pb2.py,sha256=otf81tofwl3cagFWx0wa7n7h4_HLflf_LoYk-Tdb27Y,13911
192
192
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
193
193
  wandb/proto/v4/wandb_base_pb2.py,sha256=tl7f-74ItLSWCP_GDfAWm02sTEgUpWZGoP_vqEpvRE8,1452
194
194
  wandb/proto/v4/wandb_internal_pb2.py,sha256=xdSxpXUS9JNth7Pj_yeLbQgEs5k0k5PFlXOTf9CZU_k,51569
195
195
  wandb/proto/v4/wandb_server_pb2.py,sha256=0ayDQL3W_He8mfoFneJvGKlVRX8yoiKyNbHlrI_Ulkc,6972
196
- wandb/proto/v4/wandb_settings_pb2.py,sha256=JY42syKxY9od4JNHu9rvv6-TpQjpSxe4r0TN4a9BSwA,17148
196
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=3C_Gdfe0FLleAkaXr7XEOGVTf62nCIhb_RWtyaq_Og8,17464
197
197
  wandb/proto/v4/wandb_telemetry_pb2.py,sha256=NBSIJLsj4d0rMWnTi56xWJh0S_3U7KOWN52vaR9SFJs,11293
198
198
  wandb/proto/v5/wandb_base_pb2.py,sha256=ES3U80f2YCt-fwiqaIrz7BGHVywwx6ibEDAnlWpohig,1603
199
199
  wandb/proto/v5/wandb_internal_pb2.py,sha256=mgAZq-_4ivg4WQsjF9P8K2hkdJDDQYHBByT5LkwmcRI,55773
200
200
  wandb/proto/v5/wandb_server_pb2.py,sha256=AIYsjZedgtb54LsVHz1B-gOK3B-8tMmQgXduMisPMUY,7531
201
- wandb/proto/v5/wandb_settings_pb2.py,sha256=B6ZwCnA9rUzIdbGIEbvLJfvpoPSv160KeO7adLZMkXk,17481
201
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=aCzSM1oa_xU4SsIlwqz6yxf4rUeS0MO-ikzbSouzS30,17821
202
202
  wandb/proto/v5/wandb_telemetry_pb2.py,sha256=sZZ9EB2orpiZnvKSE0BRhIvNACQZQk66MvbTE8u-3Ok,11564
203
203
  wandb/sdk/__init__.py,sha256=6lzqckLZUs7GpFZIwpgxGJwJDvhuyo-XCQnSrtZqE1c,850
204
204
  wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
205
- wandb/sdk/wandb_config.py,sha256=TNfyIVPhWKMxBOwHndOGr44r_3VhdvdDo0ymelBXIqs,11176
205
+ wandb/sdk/wandb_config.py,sha256=TxH6SD8DCfFU3yhmy03yewXQ4Gvgn3avZ0qbwpZJKt8,11178
206
206
  wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
207
- wandb/sdk/wandb_init.py,sha256=7knOKYbspF8oVRI4xXLmtzgFZQMDlqNfMB0fNMALTIA,55025
207
+ wandb/sdk/wandb_init.py,sha256=zAbmtg09qBnTgHAFwdmq7ww5SAbzz-5ghFMKzFdEcds,55923
208
208
  wandb/sdk/wandb_login.py,sha256=aREm8VyfjZWrvwmS08UxH9maOY03Cd2UKmZjuozXjoA,11315
209
209
  wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
210
210
  wandb/sdk/wandb_require.py,sha256=06Mgqdd5r5u4UUpIU3T2JIAn0elkFfaWRtNwyaLu8jc,3044
211
211
  wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
212
- wandb/sdk/wandb_run.py,sha256=RUkRNbqG8zJrkBhnXeMI_XSIjiIRHUJwPTtI9uRKzN0,159033
213
- wandb/sdk/wandb_settings.py,sha256=ExeDN7dwWf0pwSouIKsa-8keGRUgkOpGFwHInODTBUA,47465
212
+ wandb/sdk/wandb_run.py,sha256=GjwHrK7_0-vgYqVHRsI2hjWAaVqCzPjCJqo0BoyoLs0,156519
213
+ wandb/sdk/wandb_settings.py,sha256=LVeoNIbWjnRrgDkq2JjrSDMAaKxr6gude25AoiX-kjY,50787
214
214
  wandb/sdk/wandb_setup.py,sha256=wYdcBC5leRCFGCcC8Ai68CavmpmdeqQljWSXU46in8A,13339
215
215
  wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
216
216
  wandb/sdk/wandb_sweep.py,sha256=sq0jk4uuygoxkIksrv0nvWyABcJHe8ZuA-kCv0tPyno,4119
217
217
  wandb/sdk/wandb_sync.py,sha256=ToZwbLaE9l4ZZ3PKmI5ISE8fryH3QmXHnQ938i08mts,2403
218
218
  wandb/sdk/wandb_watch.py,sha256=o3-DqwYJomujs25ZV9cur0UMDod-atsZd4PpDjDiWfU,4990
219
219
  wandb/sdk/artifacts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
- wandb/sdk/artifacts/_validators.py,sha256=Nctgb4_WLkIBt818pwIkqIkiuBUpbWt_ppvOwIsuqZM,4328
220
+ wandb/sdk/artifacts/_validators.py,sha256=nZ5mduNca9kELncaNIKHykJVpPpDaU8Ca0kFK4ftwRc,4292
221
221
  wandb/sdk/artifacts/artifact.py,sha256=2-GH5uBJqmSraQvkg3f7-qIZCwS-e6vkijrmFAlpeUk,90492
222
222
  wandb/sdk/artifacts/artifact_download_logger.py,sha256=ENR9uoGFakQzorsVHpHLdzuVElvI7L-RgPONHT1FJw4,1544
223
223
  wandb/sdk/artifacts/artifact_file_cache.py,sha256=SedT6WuFz04JHfLnDujl-kkyRehttOQnGLybN_hz-9Y,9993
224
224
  wandb/sdk/artifacts/artifact_instance_cache.py,sha256=Y86c2ph4Fz1p5mfTpWMEPh1VhRzi-OyLGswa-NQDuUw,518
225
225
  wandb/sdk/artifacts/artifact_manifest.py,sha256=2Ocn_6ANCt8pokJQ838q3l3EEl6hBOtxEILRNsxUxAo,2620
226
- wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=ON02mSix-yZp0mHoDVbpfxqT72h7gzAztQrPJ_Fzioo,8604
226
+ wandb/sdk/artifacts/artifact_manifest_entry.py,sha256=ktsG9sfTH3jscef_2JYmS-jwfuW6im69MS_rRZQKxrE,8604
227
227
  wandb/sdk/artifacts/artifact_saver.py,sha256=LX22bure4cY9xK0ZOQsVyG5a9kCo5feUSrHWS6Qk1AA,9594
228
228
  wandb/sdk/artifacts/artifact_state.py,sha256=4-89kUayoLpJ1EHQTnex_PEEh-Y2F8Aq5_yQ2il7Sao,247
229
229
  wandb/sdk/artifacts/artifact_ttl.py,sha256=5h2GzpVsw1uA3h3piuYr-qU4qcQZDAOz3X5QcSSxnfo,93
@@ -255,9 +255,9 @@ wandb/sdk/data_types/_private.py,sha256=vpatnpMcuWUtpSI-dY-YXs9zmffAgEXCoViIGS4y
255
255
  wandb/sdk/data_types/audio.py,sha256=La5azRNrzNKaZ6TKeYsC8_TEUJgffQIrTcFz2wt_esc,5529
256
256
  wandb/sdk/data_types/bokeh.py,sha256=rbOgTQn_JUWkChT9Fs9CB8OplVBTNks73Z_5nU1hqsg,2604
257
257
  wandb/sdk/data_types/graph.py,sha256=jH716KGY55IjZbPSy2rpwq1fxJdtthVRdnnOBLdpFg4,12466
258
- wandb/sdk/data_types/histogram.py,sha256=CcQe9EUKfKh_JwW3Th3rZK-NN6P2-3qS-47caj4fUIU,3259
258
+ wandb/sdk/data_types/histogram.py,sha256=Icb6ox2dXP_OjaXjU6rZzkk8AfRQevQE9BHdQiedELo,3239
259
259
  wandb/sdk/data_types/html.py,sha256=slGKLHF9mbY0Ydx_9hapWNEJCKFnOkOzGvrp-kbZi9k,3619
260
- wandb/sdk/data_types/image.py,sha256=XQCmKgzq-o30fA9uNuZ1f3PsBOSsRhwCTutv0da02tg,32177
260
+ wandb/sdk/data_types/image.py,sha256=dsiOnXbgQGeClhr5RCT5DV3R6qatxTEUpk81xaFTiBw,32217
261
261
  wandb/sdk/data_types/molecule.py,sha256=KtG2aj4z8p3xQfv-9u-0KBeGuvxb2wavlf0GWiNiTQk,8824
262
262
  wandb/sdk/data_types/object_3d.py,sha256=LvANAijnaQxvZHPurtQUfT3eN5GVkz0SrMoznRT9fPw,16418
263
263
  wandb/sdk/data_types/plotly.py,sha256=UNYwRUUCODSyGvD3WEiF0p6jEseNfYiGnm8mD_tOoiI,2995
@@ -271,19 +271,19 @@ wandb/sdk/data_types/base_types/json_metadata.py,sha256=idI3dNB1e348AefsQC1GNpVq
271
271
  wandb/sdk/data_types/base_types/media.py,sha256=i-4KALCfpvc7cXiYZ4Ih_0gTnqqIOlWVtN7gFRdqt28,14660
272
272
  wandb/sdk/data_types/base_types/wb_value.py,sha256=EZO2aLFmZuqFjX_PFWvZVU66W8Z5JChiWMURbyiCWss,11675
273
273
  wandb/sdk/data_types/helper_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=gK4x39U2pQeMDlr2IbHYclYreJf0KvYTbOlnFH5SxGk,13077
274
+ wandb/sdk/data_types/helper_types/bounding_boxes_2d.py,sha256=xCr-xLIX3k7EEWs31NPOc4H5e7mb94TxafrczwYhOXY,13405
275
275
  wandb/sdk/data_types/helper_types/classes.py,sha256=A59I1s4u7fdS68UoVQJgYqr1PTQdFpfqJA8lsKOmTNI,5679
276
- wandb/sdk/data_types/helper_types/image_mask.py,sha256=BSbBX1pxzpf_Pzv7YnmNcaeeGQLH1yxV-vwGobxjxU4,8806
276
+ wandb/sdk/data_types/helper_types/image_mask.py,sha256=k1LK_W33z6AtCTX1E9oUwR70aP4HWLztD1qtHyerfJA,8930
277
277
  wandb/sdk/integration_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
278
  wandb/sdk/integration_utils/auto_logging.py,sha256=143120qDwFrh7qsojhMvT4CddgHesODOMCbkE9aclhI,8465
279
279
  wandb/sdk/integration_utils/data_logging.py,sha256=DtSEZB-TzxQKhjm9IXNxDeOAUZyDXGYrfRvVh2Cju54,20008
280
280
  wandb/sdk/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
281
  wandb/sdk/interface/constants.py,sha256=GKZ2hATTBCt7yU8kloafZR34yLChiI36O_VtxZZbQyg,64
282
- wandb/sdk/interface/interface.py,sha256=pBoyYtF0QDpeiWDapr8OsyOWKBeSd9p9eekxzGBTMDU,36005
282
+ wandb/sdk/interface/interface.py,sha256=et4Ze84ZqFRvCVfgBoLyY3-sfeiz9nYL8abVvULn0uY,37546
283
283
  wandb/sdk/interface/interface_queue.py,sha256=RG_FfjVt3arcNSRFXCiwjkleUkpUYJZfUdp5oV-68Is,1753
284
284
  wandb/sdk/interface/interface_relay.py,sha256=R28bIhebZux7PwFeJmO8wOOkm_uCjmQ2T5lKKy3sL-Y,1567
285
285
  wandb/sdk/interface/interface_shared.py,sha256=yMu0JhE64ckfnjdmdPIeGWx2LG1Y97Mv-8JA7--zqys,21051
286
- wandb/sdk/interface/interface_sock.py,sha256=aurQAyibPjE19ZWi2lCCDsLjo4v3Pi5f59rL1VZ9J0w,2045
286
+ wandb/sdk/interface/interface_sock.py,sha256=Tle-Pu5Z1ECQnm47ra1DQ0mdxkqMmJ2atknvTlmqfnE,2063
287
287
  wandb/sdk/interface/message_future.py,sha256=SlMF8psfA1AW3iVuB_PVLo41bC4U-AAvek1Zlh31mdE,712
288
288
  wandb/sdk/interface/message_future_poll.py,sha256=8a7GcNtCyohHUnxoJ5sx6RRQa2Vu_hjiBqeQ-UQ0RTc,1460
289
289
  wandb/sdk/interface/router.py,sha256=ur0vqGqzUi-nafh-4KVHOk71DaqiHJnIWFUQjttQ724,3534
@@ -295,7 +295,7 @@ wandb/sdk/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
295
295
  wandb/sdk/internal/context.py,sha256=HNcOpyptz_03YGlZV3BVzPrBXDoMhtLBxvM2-Z_5xXs,2607
296
296
  wandb/sdk/internal/datastore.py,sha256=FwZE0QMiS5d-OQEtXv_HEokPK6FufnnjAQb_tAnJMDY,10135
297
297
  wandb/sdk/internal/file_pusher.py,sha256=AViL7Vc3d5Fb9G-DMBUijVha8jFv3iAQ5N52avjXrXg,6279
298
- wandb/sdk/internal/file_stream.py,sha256=NAVeakUFyWOhWP7jRTj6ms7LYNpurX9UgMwddsSSp9Y,26499
298
+ wandb/sdk/internal/file_stream.py,sha256=NE6KzWQMYoXBsUf6CMhC1FvmlZVZQ2b2ZGknNnkPYMQ,26561
299
299
  wandb/sdk/internal/flow_control.py,sha256=QjrV_SOwgay5VYA9SqwYKkeKWjHmqF41TNHNHq75G2g,8848
300
300
  wandb/sdk/internal/handler.py,sha256=3S9XLgTWTJ4sb3G33veUtVII_F8Z1SJ8lUe9zDyY5rA,34321
301
301
  wandb/sdk/internal/internal.py,sha256=uLgbZM03Uc01jqfYkhYBM-z4pmBaepeFjxq5IK0f1LA,12571
@@ -306,9 +306,9 @@ wandb/sdk/internal/profiler.py,sha256=QM5R8-0oWE7WhllhpPEAEwCyB6Uk62HATz8e2F5qIU
306
306
  wandb/sdk/internal/progress.py,sha256=jZjltXC_0Fqn80l4ceT7pznmV_CzpeUeLS6nonwUWvg,2418
307
307
  wandb/sdk/internal/run.py,sha256=rkEwqdaYPUh_oB-gdCnQ1JIpSHTMoOVadV9CJEgy-kA,707
308
308
  wandb/sdk/internal/sample.py,sha256=QE80NZeW-UsUZBlnf9hG_2KNIZWmLzEpZStYTuL4fOI,2512
309
- wandb/sdk/internal/sender.py,sha256=xvW-HPVNAEXVuG51PhRqxq90Wwj_Mw_IyRliSND7WvY,66903
309
+ wandb/sdk/internal/sender.py,sha256=GmqnsH6o2FXYQg8XSKUj2arh5ZpMUP-JnnsFB57bLqU,67047
310
310
  wandb/sdk/internal/sender_config.py,sha256=LZaQY4_bzb9003D2j6aynGqv-Mr2GwUGcNmnQrhJOJw,6964
311
- wandb/sdk/internal/settings_static.py,sha256=Z7MhxxotmeUAsU8bM1tmouOfLJiprYMiKyXxA8IXnIw,3363
311
+ wandb/sdk/internal/settings_static.py,sha256=VPlVlR-fzSQmNNbDqVjpmMRVSG5e2hm3KPpKPWzp5eA,3731
312
312
  wandb/sdk/internal/tb_watcher.py,sha256=ZM14ExyJfa9LS7_ElM2bUoaR8AIzg94eWSvnCQDiN4M,19222
313
313
  wandb/sdk/internal/thread_local_settings.py,sha256=f6uzjTa0d6twZ9aFHzdUlUqv3gy6AnbOZoWYm95DxKA,545
314
314
  wandb/sdk/internal/writer.py,sha256=D2vQe-2yEfUuGwqYxMvu7iZgo3rpsjUxCgrH8YwNSeA,7471
@@ -338,7 +338,7 @@ wandb/sdk/launch/create_job.py,sha256=3Gn_0sMCK8m4g6PhnDiRSGICfpPfp-r1MmScApM8PF
338
338
  wandb/sdk/launch/errors.py,sha256=qE6PTcZilrIMBLOy5v3I5xp4Ex-Nf0HxsiVrnJ99AlE,288
339
339
  wandb/sdk/launch/git_reference.py,sha256=5pswecUCOOo2UUrfA5I9q6zrFe80M5IGODLNzXxDlgo,3867
340
340
  wandb/sdk/launch/loader.py,sha256=gka4OPM9Co3xyjNXFkrHW2IgRHrAMZqqqkiLx4E-YpE,9176
341
- wandb/sdk/launch/utils.py,sha256=MvOiOgJtKNVSyUQ8PTZ41KGeQhr-8murXytP2IIQNMA,26435
341
+ wandb/sdk/launch/utils.py,sha256=9V8Gb0dXayArC1ApgZKBrO9kGhqqW0nLQOGWsWXPeiI,26437
342
342
  wandb/sdk/launch/wandb_reference.py,sha256=lTPdDlCkx2jTgQBRbXcHR1A1vXKshOYM-_hscqvDzeQ,4391
343
343
  wandb/sdk/launch/agent/__init__.py,sha256=J5t86fGK2bptnn6SDIxgSGssQ19dIzjSptFZ1lXnYsc,90
344
344
  wandb/sdk/launch/agent/agent.py,sha256=Ztu-FttV0Egs6tf3N_Me9vACiPrxj2itRjeM_pQGJhw,37424
@@ -398,15 +398,15 @@ wandb/sdk/lib/gql_request.py,sha256=NnOuP2yWqqb85ALrmGx6vA5IpcmRarxn2NvFxdksW6U,
398
398
  wandb/sdk/lib/handler_util.py,sha256=FizfOj-9I-sY92H84uwGInUe7wE8vlU_uQl7-SGI01Y,610
399
399
  wandb/sdk/lib/hashutil.py,sha256=lQp2LNV7VTbfK-i-7PC-TTv3nANhpJVaTGLDgIVRyks,2847
400
400
  wandb/sdk/lib/import_hooks.py,sha256=oJBolf3pWRGdzpeG9VErDYbhicHsTDWdOgNxauvuCqw,10546
401
- wandb/sdk/lib/ipython.py,sha256=PGJ2ajfLTdhEa6sQSLGK26I3RkA4uXrA9WX1lYdJ8d8,4685
401
+ wandb/sdk/lib/ipython.py,sha256=TTdmGbWNX0YkBHgTOcijyiB7eRhBNQpI7AgU3LvGegA,3908
402
402
  wandb/sdk/lib/json_util.py,sha256=a3TtH5QIrVNeORPpblGvZvaF5VDItkD5luN_iwDpohQ,2664
403
403
  wandb/sdk/lib/lazyloader.py,sha256=FSmLyrVc7r36bERkmllcX3wJ2zso7Q1oKJ3pQ9wV0VA,1940
404
404
  wandb/sdk/lib/mailbox.py,sha256=O8PrCUJXzJRcGq875CF7xS6fIXIMWdxb6GxySSzYQC8,14684
405
405
  wandb/sdk/lib/module.py,sha256=EB0yg1HMApnuCEfQboQXj9a0YUozWwiLXa7u23nC6Js,2176
406
406
  wandb/sdk/lib/paths.py,sha256=Knkww9wdMK4wqsj5B9aMEJDvIFoCf80xXl28It3FIG4,4635
407
407
  wandb/sdk/lib/preinit.py,sha256=IDK_WXbcrfzXUNWZur505lHIY_cYs1IEWp26HMpIf74,1492
408
- wandb/sdk/lib/printer.py,sha256=0lo5Scbe-CWfD_v941hj-DoE2ppDrSvUSRm9mAWdk1o,15596
409
- wandb/sdk/lib/progress.py,sha256=xtcnxD1pKQhohX0fntnmtQ-dg0NLCzXJprycYxyxano,8719
408
+ wandb/sdk/lib/printer.py,sha256=PDksgOU1wCxSh2RMIdfzmwSdEJPu7E7p8vpNMl7dhUo,15837
409
+ wandb/sdk/lib/progress.py,sha256=ei6pN9IZEeXpMr6OT7Z7xolF5ihz6sgJPjtD2FfLkYE,8888
410
410
  wandb/sdk/lib/proto_util.py,sha256=YaGg9FoKtWmgQD8SkkKN630gyG93WoYY5JHqwdWaQKg,2984
411
411
  wandb/sdk/lib/redirect.py,sha256=zMu3jBTLkH5_VMDqPxcRTchTMzUYuGakv5D0xvPdjGI,26977
412
412
  wandb/sdk/lib/retry.py,sha256=2h1AB9xzNth93ADYJ2g1zlUcmjcEd-bp6UoZAvs5_Yg,10381
@@ -416,7 +416,7 @@ wandb/sdk/lib/server.py,sha256=ArqpZ-N7EWqNhkXE9E3IDe4N40oJBNwGXhHpI5yGcTs,1148
416
416
  wandb/sdk/lib/service_connection.py,sha256=J7_9zM9vVMrpXJDema-CZY6hyi9xEuQrDOcfalz6bbc,6682
417
417
  wandb/sdk/lib/service_token.py,sha256=GC8onzk44uphA5l5hHs8RZmQ7Auo7-Dx-KhCWOFYH9g,2565
418
418
  wandb/sdk/lib/sock_client.py,sha256=K0gIbhFkW7qkPuPDx-AG4cd08HnDCz9Bp_M99zI34BA,10641
419
- wandb/sdk/lib/sparkline.py,sha256=x5XSsLn0bV8hLuy54K4TToRcEZtRHUugK8VDiHFo93o,1418
419
+ wandb/sdk/lib/sparkline.py,sha256=CivfHHGPrbnnacpfjsoYUrCtX6Xz7AHoybEeOuWeEI0,1407
420
420
  wandb/sdk/lib/telemetry.py,sha256=1_QPck47Zj0b5dA37lIfpev1tHaHJHoNaiXKjyvdPoA,2852
421
421
  wandb/sdk/lib/timed_input.py,sha256=XF03SXTQj0AysHiIV-LKtbwxtSUx0E7xts7zDPs9kJQ,3362
422
422
  wandb/sdk/lib/timer.py,sha256=Ar1t8f3OFAA4PB2fB2MT9D41y3g2Or56wSAYezvdXqo,459
@@ -815,8 +815,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
815
815
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
816
816
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
817
817
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
818
- wandb-0.19.0.dist-info/METADATA,sha256=lo_P4z27OJQZrSTDbN0cnn_80RTsB3f5opQbh9wb2q8,10226
819
- wandb-0.19.0.dist-info/WHEEL,sha256=F7luzo77gHneG2SMTaD6iIlqNT8oVz1uotn5Zigp4o8,89
820
- wandb-0.19.0.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
821
- wandb-0.19.0.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
822
- wandb-0.19.0.dist-info/RECORD,,
818
+ wandb-0.19.1.dist-info/METADATA,sha256=M8RhSoSLgPFnZQo25Op8NQujM6G3tv3ckKWt4H38iQQ,10226
819
+ wandb-0.19.1.dist-info/WHEEL,sha256=F7luzo77gHneG2SMTaD6iIlqNT8oVz1uotn5Zigp4o8,89
820
+ wandb-0.19.1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
821
+ wandb-0.19.1.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
822
+ wandb-0.19.1.dist-info/RECORD,,
File without changes