wandb 0.21.0__py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 0.21.1__py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.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.
- wandb/__init__.py +16 -14
- wandb/__init__.pyi +427 -450
- wandb/agents/pyagent.py +41 -12
- wandb/analytics/sentry.py +7 -2
- wandb/apis/importers/mlflow.py +1 -1
- wandb/apis/public/__init__.py +1 -1
- wandb/apis/public/api.py +526 -360
- wandb/apis/public/artifacts.py +204 -8
- wandb/apis/public/automations.py +19 -3
- wandb/apis/public/files.py +172 -33
- wandb/apis/public/history.py +67 -15
- wandb/apis/public/integrations.py +25 -2
- wandb/apis/public/jobs.py +90 -2
- wandb/apis/public/projects.py +130 -79
- wandb/apis/public/query_generator.py +11 -1
- wandb/apis/public/registries/registries_search.py +7 -15
- wandb/apis/public/reports.py +83 -5
- wandb/apis/public/runs.py +299 -105
- wandb/apis/public/sweeps.py +222 -22
- wandb/apis/public/teams.py +41 -4
- wandb/apis/public/users.py +45 -4
- wandb/beta/workflows.py +66 -30
- wandb/bin/gpu_stats +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +80 -1
- wandb/env.py +8 -0
- wandb/errors/errors.py +4 -1
- wandb/integration/lightning/fabric/logger.py +3 -4
- wandb/integration/metaflow/__init__.py +6 -0
- wandb/integration/metaflow/data_pandas.py +74 -0
- wandb/integration/metaflow/errors.py +13 -0
- wandb/integration/metaflow/metaflow.py +205 -190
- wandb/integration/openai/fine_tuning.py +1 -2
- wandb/jupyter.py +5 -5
- wandb/plot/custom_chart.py +30 -7
- wandb/proto/v3/wandb_internal_pb2.py +280 -280
- wandb/proto/v3/wandb_telemetry_pb2.py +4 -4
- wandb/proto/v4/wandb_internal_pb2.py +280 -280
- wandb/proto/v4/wandb_telemetry_pb2.py +4 -4
- wandb/proto/v5/wandb_internal_pb2.py +280 -280
- wandb/proto/v5/wandb_telemetry_pb2.py +4 -4
- wandb/proto/v6/wandb_internal_pb2.py +280 -280
- wandb/proto/v6/wandb_telemetry_pb2.py +4 -4
- wandb/proto/wandb_deprecated.py +6 -0
- wandb/sdk/artifacts/_internal_artifact.py +19 -8
- wandb/sdk/artifacts/_validators.py +8 -0
- wandb/sdk/artifacts/artifact.py +106 -75
- wandb/sdk/data_types/audio.py +38 -10
- wandb/sdk/data_types/base_types/media.py +6 -56
- wandb/sdk/data_types/graph.py +48 -14
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +1 -3
- wandb/sdk/data_types/helper_types/image_mask.py +1 -3
- wandb/sdk/data_types/histogram.py +34 -21
- wandb/sdk/data_types/html.py +35 -12
- wandb/sdk/data_types/image.py +104 -68
- wandb/sdk/data_types/molecule.py +32 -19
- wandb/sdk/data_types/object_3d.py +36 -17
- wandb/sdk/data_types/plotly.py +18 -5
- wandb/sdk/data_types/saved_model.py +4 -6
- wandb/sdk/data_types/table.py +59 -30
- wandb/sdk/data_types/video.py +53 -26
- wandb/sdk/integration_utils/auto_logging.py +2 -2
- wandb/sdk/internal/internal_api.py +6 -0
- wandb/sdk/internal/job_builder.py +6 -0
- wandb/sdk/launch/agent/agent.py +8 -1
- wandb/sdk/launch/agent/run_queue_item_file_saver.py +2 -2
- wandb/sdk/launch/create_job.py +3 -1
- wandb/sdk/launch/inputs/internal.py +3 -4
- wandb/sdk/launch/inputs/schema.py +1 -0
- wandb/sdk/launch/runner/kubernetes_monitor.py +1 -0
- wandb/sdk/launch/runner/kubernetes_runner.py +328 -1
- wandb/sdk/launch/sweeps/scheduler.py +2 -3
- wandb/sdk/lib/asyncio_compat.py +3 -0
- wandb/sdk/lib/deprecate.py +1 -7
- wandb/sdk/lib/disabled.py +1 -1
- wandb/sdk/lib/hashutil.py +14 -1
- wandb/sdk/lib/module.py +7 -13
- wandb/sdk/lib/progress.py +0 -19
- wandb/sdk/lib/sock_client.py +0 -4
- wandb/sdk/wandb_init.py +66 -91
- wandb/sdk/wandb_login.py +18 -14
- wandb/sdk/wandb_metric.py +2 -0
- wandb/sdk/wandb_run.py +406 -414
- wandb/sdk/wandb_settings.py +130 -2
- wandb/sdk/wandb_setup.py +28 -28
- wandb/sdk/wandb_sweep.py +14 -13
- wandb/sdk/wandb_watch.py +4 -6
- wandb/sync/sync.py +10 -0
- wandb/util.py +57 -0
- wandb/wandb_run.py +1 -2
- {wandb-0.21.0.dist-info → wandb-0.21.1.dist-info}/METADATA +1 -1
- {wandb-0.21.0.dist-info → wandb-0.21.1.dist-info}/RECORD +786 -786
- wandb/vendor/pynvml/__init__.py +0 -0
- wandb/vendor/pynvml/pynvml.py +0 -4779
- {wandb-0.21.0.dist-info → wandb-0.21.1.dist-info}/WHEEL +0 -0
- {wandb-0.21.0.dist-info → wandb-0.21.1.dist-info}/entry_points.txt +0 -0
- {wandb-0.21.0.dist-info → wandb-0.21.1.dist-info}/licenses/LICENSE +0 -0
wandb/__init__.py
CHANGED
@@ -10,7 +10,7 @@ For reference documentation, see https://docs.wandb.com/ref/python.
|
|
10
10
|
"""
|
11
11
|
from __future__ import annotations
|
12
12
|
|
13
|
-
__version__ = "0.21.
|
13
|
+
__version__ = "0.21.1"
|
14
14
|
|
15
15
|
|
16
16
|
from wandb.errors import Error
|
@@ -79,6 +79,7 @@ from wandb.wandb_agent import agent
|
|
79
79
|
from wandb.plot import visualize, plot_table
|
80
80
|
from wandb.integration.sagemaker import sagemaker_auth
|
81
81
|
from wandb.sdk.internal import profiler
|
82
|
+
from wandb.sdk.wandb_run import Run
|
82
83
|
|
83
84
|
# Artifact import types
|
84
85
|
from wandb.sdk.artifacts.artifact_ttl import ArtifactTTL
|
@@ -112,38 +113,38 @@ def _assert_is_user_process():
|
|
112
113
|
# globals
|
113
114
|
Api = PublicApi
|
114
115
|
api = InternalApi()
|
115
|
-
run:
|
116
|
+
run: Run | None = None
|
116
117
|
config = _preinit.PreInitObject("wandb.config", wandb_sdk.wandb_config.Config)
|
117
118
|
summary = _preinit.PreInitObject("wandb.summary", wandb_sdk.wandb_summary.Summary)
|
118
|
-
log = _preinit.PreInitCallable("wandb.log",
|
119
|
-
watch = _preinit.PreInitCallable("wandb.watch",
|
120
|
-
unwatch = _preinit.PreInitCallable("wandb.unwatch",
|
121
|
-
save = _preinit.PreInitCallable("wandb.save",
|
119
|
+
log = _preinit.PreInitCallable("wandb.log", Run.log) # type: ignore
|
120
|
+
watch = _preinit.PreInitCallable("wandb.watch", Run.watch) # type: ignore
|
121
|
+
unwatch = _preinit.PreInitCallable("wandb.unwatch", Run.unwatch) # type: ignore
|
122
|
+
save = _preinit.PreInitCallable("wandb.save", Run.save) # type: ignore
|
122
123
|
restore = wandb_sdk.wandb_run.restore
|
123
124
|
use_artifact = _preinit.PreInitCallable(
|
124
|
-
"wandb.use_artifact",
|
125
|
+
"wandb.use_artifact", Run.use_artifact # type: ignore
|
125
126
|
)
|
126
127
|
log_artifact = _preinit.PreInitCallable(
|
127
|
-
"wandb.log_artifact",
|
128
|
+
"wandb.log_artifact", Run.log_artifact # type: ignore
|
128
129
|
)
|
129
130
|
log_model = _preinit.PreInitCallable(
|
130
|
-
"wandb.log_model",
|
131
|
+
"wandb.log_model", Run.log_model # type: ignore
|
131
132
|
)
|
132
133
|
use_model = _preinit.PreInitCallable(
|
133
|
-
"wandb.use_model",
|
134
|
+
"wandb.use_model", Run.use_model # type: ignore
|
134
135
|
)
|
135
136
|
link_model = _preinit.PreInitCallable(
|
136
|
-
"wandb.link_model",
|
137
|
+
"wandb.link_model", Run.link_model # type: ignore
|
137
138
|
)
|
138
139
|
define_metric = _preinit.PreInitCallable(
|
139
|
-
"wandb.define_metric",
|
140
|
+
"wandb.define_metric", Run.define_metric # type: ignore
|
140
141
|
)
|
141
142
|
|
142
143
|
mark_preempting = _preinit.PreInitCallable(
|
143
|
-
"wandb.mark_preempting",
|
144
|
+
"wandb.mark_preempting", Run.mark_preempting # type: ignore
|
144
145
|
)
|
145
146
|
|
146
|
-
alert = _preinit.PreInitCallable("wandb.alert",
|
147
|
+
alert = _preinit.PreInitCallable("wandb.alert", Run.alert) # type: ignore
|
147
148
|
|
148
149
|
# record of patched libraries
|
149
150
|
patched = {"tensorboard": [], "keras": [], "gym": []} # type: ignore
|
@@ -243,4 +244,5 @@ __all__ = (
|
|
243
244
|
"watch",
|
244
245
|
"unwatch",
|
245
246
|
"plot_table",
|
247
|
+
"Run",
|
246
248
|
)
|