wandb 0.19.7__py3-none-any.whl → 0.19.9__py3-none-any.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 (90) hide show
  1. wandb/__init__.py +5 -1
  2. wandb/__init__.pyi +43 -9
  3. wandb/_pydantic/__init__.py +23 -0
  4. wandb/_pydantic/base.py +113 -0
  5. wandb/_pydantic/v1_compat.py +262 -0
  6. wandb/apis/paginator.py +82 -38
  7. wandb/apis/public/api.py +10 -64
  8. wandb/apis/public/artifacts.py +73 -17
  9. wandb/apis/public/files.py +2 -2
  10. wandb/apis/public/projects.py +3 -2
  11. wandb/apis/public/reports.py +2 -2
  12. wandb/apis/public/runs.py +19 -11
  13. wandb/bin/gpu_stats +0 -0
  14. wandb/data_types.py +1 -1
  15. wandb/filesync/dir_watcher.py +2 -1
  16. wandb/integration/metaflow/metaflow.py +19 -17
  17. wandb/integration/sacred/__init__.py +1 -1
  18. wandb/jupyter.py +18 -15
  19. wandb/proto/v3/wandb_internal_pb2.py +7 -3
  20. wandb/proto/v3/wandb_settings_pb2.py +2 -2
  21. wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
  22. wandb/proto/v4/wandb_internal_pb2.py +3 -3
  23. wandb/proto/v4/wandb_settings_pb2.py +2 -2
  24. wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
  25. wandb/proto/v5/wandb_internal_pb2.py +3 -3
  26. wandb/proto/v5/wandb_settings_pb2.py +2 -2
  27. wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
  28. wandb/proto/wandb_deprecated.py +2 -0
  29. wandb/sdk/artifacts/_graphql_fragments.py +18 -20
  30. wandb/sdk/artifacts/_validators.py +1 -0
  31. wandb/sdk/artifacts/artifact.py +81 -46
  32. wandb/sdk/artifacts/artifact_saver.py +16 -2
  33. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +23 -2
  34. wandb/sdk/backend/backend.py +16 -5
  35. wandb/sdk/data_types/audio.py +1 -3
  36. wandb/sdk/data_types/base_types/media.py +11 -4
  37. wandb/sdk/data_types/image.py +44 -25
  38. wandb/sdk/data_types/molecule.py +1 -5
  39. wandb/sdk/data_types/object_3d.py +2 -1
  40. wandb/sdk/data_types/saved_model.py +7 -9
  41. wandb/sdk/data_types/video.py +1 -4
  42. wandb/sdk/interface/interface.py +65 -43
  43. wandb/sdk/interface/interface_queue.py +0 -7
  44. wandb/sdk/interface/interface_relay.py +6 -16
  45. wandb/sdk/interface/interface_shared.py +47 -40
  46. wandb/sdk/interface/interface_sock.py +1 -8
  47. wandb/sdk/interface/router.py +22 -54
  48. wandb/sdk/interface/router_queue.py +11 -10
  49. wandb/sdk/interface/router_relay.py +24 -12
  50. wandb/sdk/interface/router_sock.py +6 -11
  51. wandb/{apis/public → sdk/internal}/_generated/__init__.py +0 -6
  52. wandb/sdk/internal/_generated/base.py +226 -0
  53. wandb/{apis/public → sdk/internal}/_generated/server_features_query.py +3 -3
  54. wandb/{apis/public → sdk/internal}/_generated/typing_compat.py +1 -1
  55. wandb/sdk/internal/internal_api.py +138 -47
  56. wandb/sdk/internal/sender.py +5 -1
  57. wandb/sdk/internal/sender_config.py +8 -11
  58. wandb/sdk/internal/settings_static.py +24 -2
  59. wandb/sdk/lib/apikey.py +15 -16
  60. wandb/sdk/lib/console_capture.py +172 -0
  61. wandb/sdk/lib/redirect.py +102 -76
  62. wandb/sdk/lib/run_moment.py +4 -6
  63. wandb/sdk/lib/service_connection.py +37 -17
  64. wandb/sdk/lib/sock_client.py +2 -52
  65. wandb/sdk/lib/wb_logging.py +161 -0
  66. wandb/sdk/mailbox/__init__.py +3 -3
  67. wandb/sdk/mailbox/mailbox.py +31 -17
  68. wandb/sdk/mailbox/mailbox_handle.py +127 -0
  69. wandb/sdk/mailbox/{handles.py → response_handle.py} +34 -66
  70. wandb/sdk/mailbox/wait_with_progress.py +16 -15
  71. wandb/sdk/service/server_sock.py +4 -2
  72. wandb/sdk/service/streams.py +10 -5
  73. wandb/sdk/wandb_config.py +44 -43
  74. wandb/sdk/wandb_init.py +151 -92
  75. wandb/sdk/wandb_metadata.py +107 -91
  76. wandb/sdk/wandb_run.py +160 -54
  77. wandb/sdk/wandb_settings.py +410 -202
  78. wandb/sdk/wandb_setup.py +3 -1
  79. wandb/sdk/wandb_sync.py +1 -7
  80. {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/METADATA +3 -3
  81. {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/RECORD +87 -83
  82. wandb/apis/public/_generated/base.py +0 -128
  83. wandb/sdk/interface/message_future.py +0 -27
  84. wandb/sdk/interface/message_future_poll.py +0 -50
  85. /wandb/{apis/public → sdk/internal}/_generated/enums.py +0 -0
  86. /wandb/{apis/public → sdk/internal}/_generated/input_types.py +0 -0
  87. /wandb/{apis/public → sdk/internal}/_generated/operations.py +0 -0
  88. {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/WHEEL +0 -0
  89. {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/entry_points.txt +0 -0
  90. {wandb-0.19.7.dist-info → wandb-0.19.9.dist-info}/licenses/LICENSE +0 -0
File without changes
File without changes