wandb 0.17.6__py3-none-win32.whl → 0.17.8rc1__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 (44) hide show
  1. wandb/__init__.py +3 -16
  2. wandb/__init__.pyi +964 -0
  3. wandb/agents/pyagent.py +1 -2
  4. wandb/bin/wandb-core +0 -0
  5. wandb/cli/cli.py +21 -0
  6. wandb/data_types.py +3 -3
  7. wandb/integration/kfp/wandb_logging.py +1 -1
  8. wandb/integration/lightning/fabric/logger.py +1 -1
  9. wandb/integration/openai/fine_tuning.py +13 -5
  10. wandb/integration/ultralytics/pose_utils.py +0 -1
  11. wandb/proto/v3/wandb_internal_pb2.py +24 -24
  12. wandb/proto/v4/wandb_internal_pb2.py +24 -24
  13. wandb/proto/v5/wandb_internal_pb2.py +24 -24
  14. wandb/sdk/artifacts/artifact.py +16 -18
  15. wandb/sdk/data_types/_dtypes.py +5 -5
  16. wandb/sdk/data_types/base_types/media.py +3 -1
  17. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +3 -1
  18. wandb/sdk/data_types/helper_types/image_mask.py +3 -1
  19. wandb/sdk/data_types/image.py +3 -1
  20. wandb/sdk/data_types/saved_model.py +3 -1
  21. wandb/sdk/data_types/video.py +2 -2
  22. wandb/sdk/interface/interface.py +17 -16
  23. wandb/sdk/interface/interface_shared.py +6 -9
  24. wandb/sdk/internal/datastore.py +1 -1
  25. wandb/sdk/internal/handler.py +5 -3
  26. wandb/sdk/internal/internal.py +1 -1
  27. wandb/sdk/internal/job_builder.py +5 -2
  28. wandb/sdk/internal/tb_watcher.py +2 -2
  29. wandb/sdk/internal/update.py +2 -2
  30. wandb/sdk/launch/builder/kaniko_builder.py +13 -5
  31. wandb/sdk/launch/create_job.py +2 -0
  32. wandb/sdk/lib/apikey.py +1 -1
  33. wandb/sdk/service/streams.py +2 -4
  34. wandb/sdk/wandb_config.py +4 -1
  35. wandb/sdk/wandb_init.py +55 -7
  36. wandb/sdk/wandb_run.py +137 -92
  37. wandb/sdk/wandb_settings.py +13 -1
  38. wandb/sdk/wandb_setup.py +66 -3
  39. wandb/sdk/wandb_sweep.py +5 -2
  40. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/METADATA +1 -1
  41. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/RECORD +44 -43
  42. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/WHEEL +0 -0
  43. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/entry_points.txt +0 -0
  44. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/licenses/LICENSE +0 -0
wandb/__init__.py CHANGED
@@ -1,9 +1,6 @@
1
1
  """Use wandb to track machine learning work.
2
2
 
3
- The most commonly used functions/objects are:
4
- - wandb.init — initialize a new run at the top of your training script
5
- - wandb.config — track hyperparameters and metadata
6
- - wandb.log — log metrics and media over time within your training loop
3
+ Train and fine-tune models, manage models from experimentation to production.
7
4
 
8
5
  For guides and examples, see https://docs.wandb.ai.
9
6
 
@@ -11,11 +8,7 @@ For scripts and interactive notebooks, see https://github.com/wandb/examples.
11
8
 
12
9
  For reference documentation, see https://docs.wandb.com/ref/python.
13
10
  """
14
- __version__ = "0.17.6"
15
-
16
-
17
- # Used with pypi checks and other messages related to pip
18
- _wandb_module = "wandb"
11
+ __version__ = "0.17.8rc1"
19
12
 
20
13
  from typing import Optional
21
14
 
@@ -118,13 +111,6 @@ def _assert_is_user_process():
118
111
  assert not _IS_INTERNAL_PROCESS
119
112
 
120
113
 
121
- # toplevel:
122
- # save()
123
- # restore()
124
- # login()
125
- # sweep()
126
- # agent()
127
-
128
114
  # globals
129
115
  Api = PublicApi
130
116
  api = InternalApi()
@@ -254,4 +240,5 @@ __all__ = (
254
240
  "log_model",
255
241
  "use_model",
256
242
  "link_model",
243
+ "define_metric",
257
244
  )