ppc64le/linux/: ml-metadata-1.17.0+ppc64le1 metadata and description

Homepage Simple index

A library for maintaining metadata for artifacts.

author Google LLC
author_email [email protected]
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Developers
  • Intended Audience :: Education
  • Intended Audience :: Science/Research
  • License :: OSI Approved :: Apache Software License
  • Operating System :: MacOS :: MacOS X
  • Operating System :: POSIX :: Linux
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3 :: Only
  • Topic :: Scientific/Engineering
  • Topic :: Scientific/Engineering :: Artificial Intelligence
  • Topic :: Scientific/Engineering :: Mathematics
  • Topic :: Software Development
  • Topic :: Software Development :: Libraries
  • Topic :: Software Development :: Libraries :: Python Modules
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/markdown
download_url https://github.com/google/ml-metadata/tags
dynamic
  • author
  • author-email
  • classifier
  • description
  • description-content-type
  • download-url
  • home-page
  • keywords
  • license
  • license-file
  • provides-extra
  • requires-dist
  • requires-python
  • summary
keywords machine learning metadata tfx
license Apache 2.0
license_file
  • LICENSE
provides_extras
  • lint
  • docs
requires_dist
  • absl-py<2.0.0,>=0.9
  • attrs<24,>=20.3
  • grpcio<2,>=1.8.6
  • protobuf<5,>=4.25.2
  • six<2,>=1.10
  • pre-commit; extra == "lint"
  • mkdocs; extra == "docs"
  • mkdocs-material; extra == "docs"
  • mkdocstrings[python]; extra == "docs"
  • griffe-inherited-docstrings; extra == "docs"
  • mkdocs-autorefs; extra == "docs"
  • black; extra == "docs"
  • mkdocs-jupyter; extra == "docs"
  • mkdocs-caption; extra == "docs"
requires_python >=3.9,<4
File Tox results History
ml_metadata-1.17.0+ppc64le1-cp311-cp311-manylinux_2_34_ppc64le.whl
Size
8 MB
Type
Python Wheel
Python
3.11
  • Replaced 1 time(s)
  • Uploaded to ppc64le/linux by ppc64le 2026-05-05 15:38:46

ML Metadata

Python PyPI

ML Metadata (MLMD) is a library for recording and retrieving metadata associated with ML developer and data scientist workflows.

NOTE: ML Metadata may be backwards incompatible before version 1.0.

Getting Started

For more background on MLMD and instructions on using it, see the getting started guide

Installing from PyPI

The recommended way to install ML Metadata is to use the PyPI package:

pip install ml-metadata

Then import the relevant packages:

from ml_metadata import metadata_store
from ml_metadata.proto import metadata_store_pb2

Nightly Packages

ML Metadata (MLMD) also hosts nightly packages at https://pypi-nightly.tensorflow.org on Google Cloud. To install the latest nightly package, please use the following command:

pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple ml-metadata

Installing with Docker

This is the recommended way to build ML Metadata under Linux, and is continuously tested at Google.

Please first install docker and docker-compose by following the directions: docker; docker-compose.

Then, run the following at the project root:

DOCKER_SERVICE=manylinux-python${PY_VERSION}
sudo docker compose build ${DOCKER_SERVICE}
sudo docker compose run ${DOCKER_SERVICE}

where PY_VERSION is one of {39, 310, 311}.

A wheel will be produced under dist/, and installed as follows:

pip install dist/*.whl

Installing from source

1. Prerequisites

To compile and use ML Metadata, you need to set up some prerequisites.

Install Bazel

If Bazel is not installed on your system, install it now by following these directions.

Install cmake

If cmake is not installed on your system, install it now by following these directions.

2. Clone ML Metadata repository

git clone https://github.com/google/ml-metadata
cd ml-metadata

Note that these instructions will install the latest master branch of ML Metadata. If you want to install a specific branch (such as a release branch), pass -b <branchname> to the git clone command.

3. Build the pip package

ML Metadata uses Bazel to build the pip package from source:

python setup.py bdist_wheel

You can find the generated .whl file in the dist subdirectory.

4. Install the pip package

pip install dist/*.whl

5.(Optional) Build the grpc server

ML Metadata uses Bazel to build the c++ binary from source:

bazel build -c opt --define grpc_no_ares=true  //ml_metadata/metadata_store:metadata_store_server

Supported platforms

MLMD is built and tested on the following 64-bit operating systems:

Export Classification Notice

The software hosted on this website consists of publicly available open‑source packages. To the extent U.S. export regulations apply, software that is publicly available as described in 15 C.F.R. §§ 734.7 (for non-encryption software) or 742.15(b) (for encryption software) is not subject to the Export Administration Regulations (EAR). Users are responsible for complying with all applicable export laws and regulations.