wandb 0.17.6__py3-none-macosx_11_0_arm64.whl → 0.17.8rc1__py3-none-macosx_11_0_arm64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. wandb/__init__.py +3 -16
  2. wandb/__init__.pyi +964 -0
  3. wandb/agents/pyagent.py +1 -2
  4. wandb/bin/apple_gpu_stats +0 -0
  5. wandb/bin/wandb-core +0 -0
  6. wandb/cli/cli.py +21 -0
  7. wandb/data_types.py +3 -3
  8. wandb/integration/kfp/wandb_logging.py +1 -1
  9. wandb/integration/lightning/fabric/logger.py +1 -1
  10. wandb/integration/openai/fine_tuning.py +13 -5
  11. wandb/integration/ultralytics/pose_utils.py +0 -1
  12. wandb/proto/v3/wandb_internal_pb2.py +24 -24
  13. wandb/proto/v4/wandb_internal_pb2.py +24 -24
  14. wandb/proto/v5/wandb_internal_pb2.py +24 -24
  15. wandb/sdk/artifacts/artifact.py +16 -18
  16. wandb/sdk/data_types/_dtypes.py +5 -5
  17. wandb/sdk/data_types/base_types/media.py +3 -1
  18. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +3 -1
  19. wandb/sdk/data_types/helper_types/image_mask.py +3 -1
  20. wandb/sdk/data_types/image.py +3 -1
  21. wandb/sdk/data_types/saved_model.py +3 -1
  22. wandb/sdk/data_types/video.py +2 -2
  23. wandb/sdk/interface/interface.py +17 -16
  24. wandb/sdk/interface/interface_shared.py +6 -9
  25. wandb/sdk/internal/datastore.py +1 -1
  26. wandb/sdk/internal/handler.py +5 -3
  27. wandb/sdk/internal/internal.py +1 -1
  28. wandb/sdk/internal/job_builder.py +5 -2
  29. wandb/sdk/internal/tb_watcher.py +2 -2
  30. wandb/sdk/internal/update.py +2 -2
  31. wandb/sdk/launch/builder/kaniko_builder.py +13 -5
  32. wandb/sdk/launch/create_job.py +2 -0
  33. wandb/sdk/lib/apikey.py +1 -1
  34. wandb/sdk/service/streams.py +2 -4
  35. wandb/sdk/wandb_config.py +4 -1
  36. wandb/sdk/wandb_init.py +55 -7
  37. wandb/sdk/wandb_run.py +137 -92
  38. wandb/sdk/wandb_settings.py +13 -1
  39. wandb/sdk/wandb_setup.py +66 -3
  40. wandb/sdk/wandb_sweep.py +5 -2
  41. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/METADATA +1 -1
  42. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/RECORD +45 -44
  43. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/WHEEL +0 -0
  44. {wandb-0.17.6.dist-info → wandb-0.17.8rc1.dist-info}/entry_points.txt +0 -0
  45. {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
  )