wandb 0.16.6__py3-none-any.whl → 0.17.0rc1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- package_readme.md +95 -0
- wandb/__init__.py +2 -2
- wandb/agents/pyagent.py +0 -1
- wandb/analytics/sentry.py +2 -1
- wandb/apis/importers/internals/protocols.py +30 -56
- wandb/apis/importers/mlflow.py +13 -26
- wandb/apis/importers/wandb.py +8 -14
- wandb/apis/public/api.py +1 -0
- wandb/apis/public/artifacts.py +1 -0
- wandb/apis/public/files.py +1 -0
- wandb/apis/public/history.py +1 -0
- wandb/apis/public/jobs.py +1 -0
- wandb/apis/public/projects.py +1 -0
- wandb/apis/public/reports.py +1 -0
- wandb/apis/public/runs.py +1 -0
- wandb/apis/public/sweeps.py +1 -0
- wandb/apis/public/teams.py +1 -0
- wandb/apis/public/users.py +1 -0
- wandb/apis/reports/v1/_blocks.py +2 -6
- wandb/apis/reports/v2/gql.py +1 -0
- wandb/apis/reports/v2/interface.py +3 -4
- wandb/apis/reports/v2/internal.py +5 -8
- wandb/cli/cli.py +2 -2
- wandb/data_types.py +3 -3
- wandb/env.py +35 -5
- wandb/errors/__init__.py +5 -0
- wandb/integration/catboost/catboost.py +1 -1
- wandb/integration/fastai/__init__.py +1 -0
- wandb/integration/keras/__init__.py +1 -0
- wandb/integration/keras/keras.py +6 -6
- wandb/integration/langchain/wandb_tracer.py +1 -0
- wandb/integration/lightning/fabric/logger.py +1 -3
- wandb/integration/metaflow/metaflow.py +41 -6
- wandb/integration/openai/fine_tuning.py +3 -3
- wandb/keras/__init__.py +1 -0
- wandb/proto/v3/wandb_internal_pb2.py +364 -332
- wandb/proto/v3/wandb_settings_pb2.py +1 -1
- wandb/proto/v4/wandb_internal_pb2.py +322 -316
- wandb/proto/v4/wandb_settings_pb2.py +1 -1
- wandb/proto/wandb_internal_codegen.py +0 -25
- wandb/sdk/artifacts/artifact.py +16 -4
- wandb/sdk/artifacts/artifact_download_logger.py +1 -0
- wandb/sdk/artifacts/artifact_file_cache.py +18 -4
- wandb/sdk/artifacts/artifact_instance_cache.py +1 -0
- wandb/sdk/artifacts/artifact_manifest.py +1 -0
- wandb/sdk/artifacts/artifact_manifest_entry.py +1 -0
- wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +1 -0
- wandb/sdk/artifacts/artifact_saver.py +5 -2
- wandb/sdk/artifacts/artifact_state.py +1 -0
- wandb/sdk/artifacts/artifact_ttl.py +1 -0
- wandb/sdk/artifacts/exceptions.py +1 -0
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/gcs_handler.py +13 -18
- wandb/sdk/artifacts/storage_handlers/http_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/local_file_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/multi_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/s3_handler.py +5 -3
- wandb/sdk/artifacts/storage_handlers/tracking_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +1 -0
- wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +1 -0
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +1 -0
- wandb/sdk/artifacts/storage_policy.py +1 -0
- wandb/sdk/data_types/base_types/media.py +3 -6
- wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +3 -1
- wandb/sdk/integration_utils/auto_logging.py +5 -6
- wandb/sdk/integration_utils/data_logging.py +5 -1
- wandb/sdk/interface/interface.py +54 -31
- wandb/sdk/interface/interface_shared.py +7 -13
- wandb/sdk/internal/datastore.py +1 -1
- wandb/sdk/internal/handler.py +18 -2
- wandb/sdk/internal/internal.py +0 -1
- wandb/sdk/internal/internal_util.py +0 -1
- wandb/sdk/internal/job_builder.py +4 -3
- wandb/sdk/internal/profiler.py +1 -0
- wandb/sdk/internal/run.py +1 -0
- wandb/sdk/internal/sender.py +1 -1
- wandb/sdk/internal/system/assets/gpu_amd.py +44 -44
- wandb/sdk/internal/system/assets/gpu_apple.py +56 -11
- wandb/sdk/internal/system/assets/interfaces.py +6 -8
- wandb/sdk/internal/system/assets/open_metrics.py +2 -2
- wandb/sdk/internal/system/assets/trainium.py +1 -3
- wandb/sdk/launch/_project_spec.py +5 -3
- wandb/sdk/launch/agent/agent.py +1 -0
- wandb/sdk/launch/agent/config.py +72 -11
- wandb/sdk/launch/builder/abstract.py +1 -0
- wandb/sdk/launch/builder/build.py +28 -1
- wandb/sdk/launch/builder/docker_builder.py +1 -0
- wandb/sdk/launch/builder/noop.py +1 -0
- wandb/sdk/launch/create_job.py +18 -0
- wandb/sdk/launch/environment/abstract.py +1 -0
- wandb/sdk/launch/environment/gcp_environment.py +1 -0
- wandb/sdk/launch/environment/local_environment.py +1 -0
- wandb/sdk/launch/loader.py +1 -0
- wandb/sdk/launch/registry/abstract.py +1 -0
- wandb/sdk/launch/registry/azure_container_registry.py +1 -0
- wandb/sdk/launch/registry/elastic_container_registry.py +1 -0
- wandb/sdk/launch/registry/google_artifact_registry.py +1 -0
- wandb/sdk/launch/registry/local_registry.py +1 -0
- wandb/sdk/launch/runner/abstract.py +1 -0
- wandb/sdk/launch/runner/kubernetes_monitor.py +1 -0
- wandb/sdk/launch/runner/kubernetes_runner.py +4 -3
- wandb/sdk/launch/runner/sagemaker_runner.py +11 -10
- wandb/sdk/launch/sweeps/scheduler.py +1 -0
- wandb/sdk/launch/sweeps/scheduler_sweep.py +1 -0
- wandb/sdk/launch/sweeps/utils.py +1 -1
- wandb/sdk/launch/utils.py +3 -3
- wandb/sdk/lib/fsm.py +8 -12
- wandb/sdk/lib/gitlib.py +4 -4
- wandb/sdk/lib/lazyloader.py +0 -1
- wandb/sdk/lib/proto_util.py +1 -1
- wandb/sdk/lib/retry.py +3 -2
- wandb/sdk/service/service.py +17 -15
- wandb/sdk/verify/verify.py +2 -1
- wandb/sdk/wandb_manager.py +2 -2
- wandb/sdk/wandb_require.py +5 -0
- wandb/sdk/wandb_run.py +14 -12
- wandb/sdk/wandb_settings.py +0 -1
- wandb/sklearn/__init__.py +1 -0
- wandb/sklearn/plot/__init__.py +1 -0
- wandb/sklearn/plot/classifier.py +1 -0
- wandb/sklearn/plot/clusterer.py +1 -0
- wandb/sklearn/plot/regressor.py +1 -0
- wandb/sklearn/plot/shared.py +1 -0
- wandb/sklearn/utils.py +1 -0
- wandb/testing/relay.py +4 -4
- wandb/trigger.py +1 -0
- wandb/util.py +40 -17
- wandb/wandb_controller.py +0 -1
- wandb/wandb_torch.py +1 -2
- {wandb-0.16.6.dist-info → wandb-0.17.0rc1.dist-info}/METADATA +68 -69
- {wandb-0.16.6.dist-info → wandb-0.17.0rc1.dist-info}/RECORD +134 -135
- {wandb-0.16.6.dist-info → wandb-0.17.0rc1.dist-info}/WHEEL +1 -2
- wandb/bin/apple_gpu_stats +0 -0
- wandb-0.16.6.dist-info/top_level.txt +0 -1
- {wandb-0.16.6.dist-info → wandb-0.17.0rc1.dist-info}/entry_points.txt +0 -0
- {wandb-0.16.6.dist-info → wandb-0.17.0rc1.dist-info/licenses}/LICENSE +0 -0
wandb/sdk/wandb_run.py
CHANGED
@@ -327,8 +327,7 @@ class RunStatusChecker:
|
|
327
327
|
class _run_decorator: # noqa: N801
|
328
328
|
_is_attaching: str = ""
|
329
329
|
|
330
|
-
class Dummy:
|
331
|
-
...
|
330
|
+
class Dummy: ...
|
332
331
|
|
333
332
|
@classmethod
|
334
333
|
def _attach(cls, func: Callable) -> Callable:
|
@@ -1866,16 +1865,19 @@ class Run:
|
|
1866
1865
|
# => Saves files in an "are/myfiles/" folder in the run.
|
1867
1866
|
|
1868
1867
|
wandb.save("/User/username/Documents/run123/*.txt")
|
1869
|
-
# => Saves files in a "run123/" folder in the run.
|
1868
|
+
# => Saves files in a "run123/" folder in the run. See note below.
|
1870
1869
|
|
1871
1870
|
wandb.save("/User/username/Documents/run123/*.txt", base_path="/User")
|
1872
1871
|
# => Saves files in a "username/Documents/run123/" folder in the run.
|
1873
1872
|
|
1874
1873
|
wandb.save("files/*/saveme.txt")
|
1875
1874
|
# => Saves each "saveme.txt" file in an appropriate subdirectory
|
1876
|
-
#
|
1875
|
+
# of "files/".
|
1877
1876
|
```
|
1878
1877
|
|
1878
|
+
Note: when given an absolute path or glob and no `base_path`, one
|
1879
|
+
directory level is preserved as in the example above.
|
1880
|
+
|
1879
1881
|
Arguments:
|
1880
1882
|
glob_str: A relative or absolute path or Unix glob.
|
1881
1883
|
base_path: A path to use to infer a directory structure; see examples.
|
@@ -3171,13 +3173,13 @@ class Run:
|
|
3171
3173
|
)
|
3172
3174
|
if entity and artifact._source_entity and entity != artifact._source_entity:
|
3173
3175
|
raise ValueError(
|
3174
|
-
f"Artifact {artifact.name} is owned by entity
|
3175
|
-
f"moved to '{
|
3176
|
+
f"Artifact {artifact.name} is owned by entity "
|
3177
|
+
f"'{artifact._source_entity}'; it can't be moved to '{entity}'"
|
3176
3178
|
)
|
3177
3179
|
if project and artifact._source_project and project != artifact._source_project:
|
3178
3180
|
raise ValueError(
|
3179
|
-
f"Artifact {artifact.name} exists in project
|
3180
|
-
f"moved to '{
|
3181
|
+
f"Artifact {artifact.name} exists in project "
|
3182
|
+
f"'{artifact._source_project}'; it can't be moved to '{project}'"
|
3181
3183
|
)
|
3182
3184
|
|
3183
3185
|
def _prepare_artifact(
|
@@ -3304,8 +3306,8 @@ class Run:
|
|
3304
3306
|
path: (str) path to downloaded model artifact file(s).
|
3305
3307
|
"""
|
3306
3308
|
artifact = self.use_artifact(artifact_or_name=name)
|
3307
|
-
assert
|
3308
|
-
artifact.type.lower()
|
3309
|
+
assert (
|
3310
|
+
"model" in str(artifact.type.lower())
|
3309
3311
|
), "You can only use this method for 'model' artifacts. For an artifact to be a 'model' artifact, its type property must contain the substring 'model'."
|
3310
3312
|
path = artifact.download()
|
3311
3313
|
|
@@ -3397,8 +3399,8 @@ class Run:
|
|
3397
3399
|
public_api = self._public_api()
|
3398
3400
|
try:
|
3399
3401
|
artifact = public_api.artifact(name=f"{name}:latest")
|
3400
|
-
assert
|
3401
|
-
artifact.type.lower()
|
3402
|
+
assert (
|
3403
|
+
"model" in str(artifact.type.lower())
|
3402
3404
|
), "You can only use this method for 'model' artifacts. For an artifact to be a 'model' artifact, its type property must contain the substring 'model'."
|
3403
3405
|
artifact = self._log_artifact(
|
3404
3406
|
artifact_or_path=path, name=name, type=artifact.type
|
wandb/sdk/wandb_settings.py
CHANGED
@@ -1675,7 +1675,6 @@ class Settings(SettingsData):
|
|
1675
1675
|
"WANDB_TRACELOG": "_tracelog",
|
1676
1676
|
"WANDB_DISABLE_SERVICE": "_disable_service",
|
1677
1677
|
"WANDB_SERVICE_TRANSPORT": "_service_transport",
|
1678
|
-
"WANDB_REQUIRE_CORE": "_require_core",
|
1679
1678
|
"WANDB_DIR": "root_dir",
|
1680
1679
|
"WANDB_NAME": "run_name",
|
1681
1680
|
"WANDB_NOTES": "run_notes",
|
wandb/sklearn/__init__.py
CHANGED
wandb/sklearn/plot/__init__.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
"""Create and logs charts introspecting models built with scikit-learn to W&B."""
|
2
|
+
|
2
3
|
from .classifier import calibration_curve as plot_calibration_curve
|
3
4
|
from .classifier import class_proportions as plot_class_proportions
|
4
5
|
from .classifier import classifier as plot_classifier
|
wandb/sklearn/plot/classifier.py
CHANGED
wandb/sklearn/plot/clusterer.py
CHANGED
wandb/sklearn/plot/regressor.py
CHANGED
wandb/sklearn/plot/shared.py
CHANGED
wandb/sklearn/utils.py
CHANGED
wandb/testing/relay.py
CHANGED
@@ -586,11 +586,11 @@ class InjectedResponse:
|
|
586
586
|
|
587
587
|
|
588
588
|
class RelayControlProtocol(Protocol):
|
589
|
-
def process(self, request: "flask.Request") -> None:
|
590
|
-
... # pragma: no cover
|
589
|
+
def process(self, request: "flask.Request") -> None: ... # pragma: no cover
|
591
590
|
|
592
|
-
def control(
|
593
|
-
|
591
|
+
def control(
|
592
|
+
self, request: "flask.Request"
|
593
|
+
) -> Mapping[str, str]: ... # pragma: no cover
|
594
594
|
|
595
595
|
|
596
596
|
class RelayServer:
|
wandb/trigger.py
CHANGED
wandb/util.py
CHANGED
@@ -11,6 +11,7 @@ import logging
|
|
11
11
|
import math
|
12
12
|
import numbers
|
13
13
|
import os
|
14
|
+
import pathlib
|
14
15
|
import platform
|
15
16
|
import queue
|
16
17
|
import random
|
@@ -55,7 +56,13 @@ import yaml
|
|
55
56
|
|
56
57
|
import wandb
|
57
58
|
import wandb.env
|
58
|
-
from wandb.errors import
|
59
|
+
from wandb.errors import (
|
60
|
+
AuthenticationError,
|
61
|
+
CommError,
|
62
|
+
UsageError,
|
63
|
+
WandbCoreNotAvailableError,
|
64
|
+
term,
|
65
|
+
)
|
59
66
|
from wandb.sdk.internal.thread_local_settings import _thread_local_api_settings
|
60
67
|
from wandb.sdk.lib import filesystem, runid
|
61
68
|
from wandb.sdk.lib.json_util import dump, dumps
|
@@ -1842,15 +1849,6 @@ def sample_with_exponential_decay_weights(
|
|
1842
1849
|
return sampled_xs, sampled_ys, sampled_keys
|
1843
1850
|
|
1844
1851
|
|
1845
|
-
def get_core_path() -> str:
|
1846
|
-
core_path: str = os.environ.get("_WANDB_CORE_PATH", "")
|
1847
|
-
wandb_core = get_module("wandb_core")
|
1848
|
-
if not core_path and wandb_core:
|
1849
|
-
_check_wandb_core_version_compatibility(wandb_core.__version__)
|
1850
|
-
core_path = wandb_core.get_core_path()
|
1851
|
-
return core_path
|
1852
|
-
|
1853
|
-
|
1854
1852
|
@dataclasses.dataclass(frozen=True)
|
1855
1853
|
class InstalledDistribution:
|
1856
1854
|
"""An installed distribution.
|
@@ -1888,15 +1886,40 @@ def parse_version(version: str) -> "packaging.version.Version":
|
|
1888
1886
|
try:
|
1889
1887
|
from packaging.version import parse as parse_version # type: ignore
|
1890
1888
|
except ImportError:
|
1891
|
-
from pkg_resources import parse_version
|
1889
|
+
from pkg_resources import parse_version # type: ignore[assignment]
|
1892
1890
|
|
1893
1891
|
return parse_version(version)
|
1894
1892
|
|
1895
1893
|
|
1896
|
-
def
|
1897
|
-
"""
|
1898
|
-
|
1899
|
-
|
1900
|
-
|
1901
|
-
|
1894
|
+
def get_core_path() -> str:
|
1895
|
+
"""Returns the path to the wandb-core binary.
|
1896
|
+
|
1897
|
+
The path can be set explicitly via the _WANDB_CORE_PATH environment
|
1898
|
+
variable. Otherwise, the path to the binary in the current package
|
1899
|
+
is returned.
|
1900
|
+
|
1901
|
+
Returns:
|
1902
|
+
str: The path to the wandb-core package.
|
1903
|
+
|
1904
|
+
Raises:
|
1905
|
+
WandbCoreNotAvailableError: If wandb-core was not built for the current system.
|
1906
|
+
"""
|
1907
|
+
# NOTE: Environment variable _WANDB_CORE_PATH is a temporary development feature
|
1908
|
+
# to assist in running the core service from a live development directory.
|
1909
|
+
path_from_env: str = os.environ.get("_WANDB_CORE_PATH", "")
|
1910
|
+
if path_from_env:
|
1911
|
+
wandb.termwarn(
|
1912
|
+
f"Using wandb-core from path `_WANDB_CORE_PATH={path_from_env}`. "
|
1913
|
+
"This is a development feature and may not work as expected."
|
1914
|
+
)
|
1915
|
+
return path_from_env
|
1916
|
+
|
1917
|
+
bin_path = pathlib.Path(__file__).parent / "bin" / "wandb-core"
|
1918
|
+
if not bin_path.exists():
|
1919
|
+
raise WandbCoreNotAvailableError(
|
1920
|
+
f"Looks like wandb-core is not compiled for your system ({platform.platform()}):"
|
1921
|
+
" Please contact support at support@wandb.com to request `wandb-core`"
|
1922
|
+
" support for your system."
|
1902
1923
|
)
|
1924
|
+
|
1925
|
+
return str(bin_path)
|
wandb/wandb_controller.py
CHANGED
wandb/wandb_torch.py
CHANGED
@@ -1,7 +1,10 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: wandb
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.17.0rc1
|
4
4
|
Summary: A CLI and library for interacting with the Weights & Biases API.
|
5
|
+
Project-URL: Source, https://github.com/wandb/wandb
|
6
|
+
Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
|
7
|
+
Project-URL: Documentation, https://docs.wandb.ai/
|
5
8
|
Author-email: Weights & Biases <support@wandb.com>
|
6
9
|
License: MIT License
|
7
10
|
|
@@ -24,104 +27,100 @@ License: MIT License
|
|
24
27
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
25
28
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
26
29
|
SOFTWARE.
|
27
|
-
|
28
|
-
Project-URL: Source, https://github.com/wandb/wandb
|
29
|
-
Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
|
30
|
-
Project-URL: Documentation, https://docs.wandb.ai/
|
30
|
+
License-File: LICENSE
|
31
31
|
Classifier: Development Status :: 5 - Production/Stable
|
32
32
|
Classifier: Intended Audience :: Developers
|
33
33
|
Classifier: Intended Audience :: Science/Research
|
34
34
|
Classifier: License :: OSI Approved :: MIT License
|
35
35
|
Classifier: Natural Language :: English
|
36
36
|
Classifier: Programming Language :: Python :: 3
|
37
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
37
38
|
Classifier: Programming Language :: Python :: 3.7
|
38
39
|
Classifier: Programming Language :: Python :: 3.8
|
39
40
|
Classifier: Programming Language :: Python :: 3.9
|
40
41
|
Classifier: Programming Language :: Python :: 3.10
|
41
42
|
Classifier: Programming Language :: Python :: 3.11
|
42
43
|
Classifier: Programming Language :: Python :: 3.12
|
43
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
44
44
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
45
45
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
46
46
|
Classifier: Topic :: System :: Logging
|
47
47
|
Classifier: Topic :: System :: Monitoring
|
48
48
|
Requires-Python: >=3.7
|
49
|
-
|
50
|
-
|
51
|
-
Requires-Dist:
|
52
|
-
Requires-Dist:
|
53
|
-
Requires-Dist:
|
54
|
-
Requires-Dist:
|
55
|
-
Requires-Dist:
|
56
|
-
Requires-Dist:
|
57
|
-
Requires-Dist:
|
49
|
+
Requires-Dist: appdirs>=1.4.3
|
50
|
+
Requires-Dist: click!=8.0.0,>=7.1
|
51
|
+
Requires-Dist: docker-pycreds>=0.4.0
|
52
|
+
Requires-Dist: gitpython!=3.1.29,>=1.0.0
|
53
|
+
Requires-Dist: protobuf!=4.21.0,<5,>=3.12.0; python_version < '3.9' and sys_platform == 'linux'
|
54
|
+
Requires-Dist: protobuf!=4.21.0,<5,>=3.15.0; python_version == '3.9' and sys_platform == 'linux'
|
55
|
+
Requires-Dist: protobuf!=4.21.0,<5,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
|
56
|
+
Requires-Dist: protobuf!=4.21.0,<5,>=3.19.0; sys_platform != 'linux'
|
57
|
+
Requires-Dist: psutil>=5.0.0
|
58
|
+
Requires-Dist: pyyaml
|
59
|
+
Requires-Dist: requests<3,>=2.0.0
|
60
|
+
Requires-Dist: sentry-sdk>=1.0.0
|
58
61
|
Requires-Dist: setproctitle
|
59
62
|
Requires-Dist: setuptools
|
60
|
-
Requires-Dist:
|
61
|
-
Requires-Dist: typing-extensions ; python_version < "3.10"
|
62
|
-
Requires-Dist: protobuf !=4.21.0,<5,>=3.12.0 ; python_version < "3.9" and sys_platform == "linux"
|
63
|
-
Requires-Dist: protobuf !=4.21.0,<5,>=3.15.0 ; python_version == "3.9" and sys_platform == "linux"
|
64
|
-
Requires-Dist: protobuf !=4.21.0,<5,>=3.19.0 ; python_version > "3.9" and sys_platform == "linux"
|
65
|
-
Requires-Dist: protobuf !=4.21.0,<5,>=3.19.0 ; sys_platform != "linux"
|
63
|
+
Requires-Dist: typing-extensions; python_version < '3.10'
|
66
64
|
Provides-Extra: async
|
67
|
-
Requires-Dist: httpx
|
65
|
+
Requires-Dist: httpx>=0.23.0; extra == 'async'
|
68
66
|
Provides-Extra: aws
|
69
|
-
Requires-Dist: boto3
|
67
|
+
Requires-Dist: boto3; extra == 'aws'
|
70
68
|
Provides-Extra: azure
|
71
|
-
Requires-Dist: azure-identity
|
72
|
-
Requires-Dist: azure-storage-blob
|
69
|
+
Requires-Dist: azure-identity; extra == 'azure'
|
70
|
+
Requires-Dist: azure-storage-blob; extra == 'azure'
|
73
71
|
Provides-Extra: gcp
|
74
|
-
Requires-Dist: google-cloud-storage
|
72
|
+
Requires-Dist: google-cloud-storage; extra == 'gcp'
|
75
73
|
Provides-Extra: importers
|
76
|
-
Requires-Dist:
|
77
|
-
Requires-Dist:
|
78
|
-
Requires-Dist:
|
79
|
-
Requires-Dist:
|
80
|
-
Requires-Dist: tenacity
|
74
|
+
Requires-Dist: filelock; extra == 'importers'
|
75
|
+
Requires-Dist: mlflow; extra == 'importers'
|
76
|
+
Requires-Dist: polars; extra == 'importers'
|
77
|
+
Requires-Dist: rich; extra == 'importers'
|
78
|
+
Requires-Dist: tenacity; extra == 'importers'
|
81
79
|
Provides-Extra: kubeflow
|
82
|
-
Requires-Dist:
|
83
|
-
Requires-Dist:
|
84
|
-
Requires-Dist:
|
85
|
-
Requires-Dist: sh
|
80
|
+
Requires-Dist: google-cloud-storage; extra == 'kubeflow'
|
81
|
+
Requires-Dist: kubernetes; extra == 'kubeflow'
|
82
|
+
Requires-Dist: minio; extra == 'kubeflow'
|
83
|
+
Requires-Dist: sh; extra == 'kubeflow'
|
86
84
|
Provides-Extra: launch
|
87
|
-
Requires-Dist: awscli
|
88
|
-
Requires-Dist: azure-
|
89
|
-
Requires-Dist: azure-
|
90
|
-
Requires-Dist: azure-storage-blob
|
91
|
-
Requires-Dist: boto3
|
92
|
-
Requires-Dist: botocore
|
93
|
-
Requires-Dist: chardet
|
94
|
-
Requires-Dist: google-auth
|
95
|
-
Requires-Dist: google-cloud-aiplatform
|
96
|
-
Requires-Dist: google-cloud-artifact-registry
|
97
|
-
Requires-Dist: google-cloud-compute
|
98
|
-
Requires-Dist: google-cloud-storage
|
99
|
-
Requires-Dist: iso8601
|
100
|
-
Requires-Dist: kubernetes
|
101
|
-
Requires-Dist: kubernetes-asyncio
|
102
|
-
Requires-Dist:
|
103
|
-
Requires-Dist:
|
104
|
-
Requires-Dist:
|
105
|
-
Requires-Dist: pydantic
|
106
|
-
Requires-Dist:
|
107
|
-
Requires-Dist: tomli
|
108
|
-
Requires-Dist:
|
85
|
+
Requires-Dist: awscli; extra == 'launch'
|
86
|
+
Requires-Dist: azure-containerregistry; extra == 'launch'
|
87
|
+
Requires-Dist: azure-identity; extra == 'launch'
|
88
|
+
Requires-Dist: azure-storage-blob; extra == 'launch'
|
89
|
+
Requires-Dist: boto3; extra == 'launch'
|
90
|
+
Requires-Dist: botocore; extra == 'launch'
|
91
|
+
Requires-Dist: chardet; extra == 'launch'
|
92
|
+
Requires-Dist: google-auth; extra == 'launch'
|
93
|
+
Requires-Dist: google-cloud-aiplatform; extra == 'launch'
|
94
|
+
Requires-Dist: google-cloud-artifact-registry; extra == 'launch'
|
95
|
+
Requires-Dist: google-cloud-compute; extra == 'launch'
|
96
|
+
Requires-Dist: google-cloud-storage; extra == 'launch'
|
97
|
+
Requires-Dist: iso8601; extra == 'launch'
|
98
|
+
Requires-Dist: kubernetes; extra == 'launch'
|
99
|
+
Requires-Dist: kubernetes-asyncio; extra == 'launch'
|
100
|
+
Requires-Dist: nbconvert; extra == 'launch'
|
101
|
+
Requires-Dist: nbformat; extra == 'launch'
|
102
|
+
Requires-Dist: optuna; extra == 'launch'
|
103
|
+
Requires-Dist: pydantic; extra == 'launch'
|
104
|
+
Requires-Dist: pyyaml>=6.0.0; extra == 'launch'
|
105
|
+
Requires-Dist: tomli; extra == 'launch'
|
106
|
+
Requires-Dist: typing-extensions; extra == 'launch'
|
109
107
|
Provides-Extra: media
|
110
|
-
Requires-Dist:
|
111
|
-
Requires-Dist: moviepy
|
112
|
-
Requires-Dist:
|
113
|
-
Requires-Dist:
|
114
|
-
Requires-Dist:
|
115
|
-
Requires-Dist:
|
116
|
-
Requires-Dist:
|
108
|
+
Requires-Dist: bokeh; extra == 'media'
|
109
|
+
Requires-Dist: moviepy; extra == 'media'
|
110
|
+
Requires-Dist: numpy; extra == 'media'
|
111
|
+
Requires-Dist: pillow; extra == 'media'
|
112
|
+
Requires-Dist: plotly>=5.18.0; extra == 'media'
|
113
|
+
Requires-Dist: rdkit-pypi; extra == 'media'
|
114
|
+
Requires-Dist: soundfile; extra == 'media'
|
117
115
|
Provides-Extra: models
|
118
|
-
Requires-Dist: cloudpickle
|
116
|
+
Requires-Dist: cloudpickle; extra == 'models'
|
119
117
|
Provides-Extra: perf
|
120
|
-
Requires-Dist: orjson
|
118
|
+
Requires-Dist: orjson; extra == 'perf'
|
121
119
|
Provides-Extra: reports
|
122
|
-
Requires-Dist: pydantic
|
120
|
+
Requires-Dist: pydantic>=2.0.0; extra == 'reports'
|
123
121
|
Provides-Extra: sweeps
|
124
|
-
Requires-Dist: sweeps
|
122
|
+
Requires-Dist: sweeps>=0.2.0; extra == 'sweeps'
|
123
|
+
Description-Content-Type: text/markdown
|
125
124
|
|
126
125
|
<div align="center">
|
127
126
|
<img src="https://i.imgur.com/RUtiVzH.png" width="600" /><br><br>
|