Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Model Registry doc to website #3698

Merged
merged 34 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
27f4f59
add Model Registry doc to website
tarilabs Mar 14, 2024
7c0f767
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 3, 2024
2f006e8
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 3, 2024
1d8d1e2
Update content/en/docs/components/model-registry/getting-started.md
tarilabs Apr 3, 2024
a22603f
fix to updated link
tarilabs Apr 3, 2024
6eb7ab1
update diagram to show inner/outer MLOps loops
tarilabs Apr 15, 2024
458d387
implement review feedback
tarilabs Apr 15, 2024
3bbf750
implement review req for architecture page
tarilabs Apr 15, 2024
2f567ae
implement review req for splitting getting-started
tarilabs Apr 15, 2024
3bc703b
Update content/en/docs/components/model-registry/reference/architectu…
tarilabs Apr 15, 2024
0cfe214
Update content/en/docs/components/model-registry/installation.md
tarilabs Apr 15, 2024
a1af1d9
fix wrong command in installation
tarilabs Apr 15, 2024
4768e55
update for better reproducible kserve add-on example
tarilabs Apr 17, 2024
be3ebf8
add short sentence for each phase in the ML lifecycle
tarilabs Apr 17, 2024
ba73b17
implement review feedback
tarilabs Apr 17, 2024
8ba5899
add "model registry use case" section
tarilabs Apr 17, 2024
45274b3
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 21, 2024
c8eb466
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 21, 2024
fca2120
implement review feedback on diagram
tarilabs Apr 21, 2024
017ca5a
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 21, 2024
c568cae
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 21, 2024
02214a4
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 21, 2024
e3c441f
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 21, 2024
b901113
Update content/en/docs/components/model-registry/overview.md
tarilabs Apr 21, 2024
0659ec5
implement review feedback
tarilabs Apr 21, 2024
1ab5aa4
implement review feedback
tarilabs Apr 21, 2024
3ee7e42
implement review feedback
tarilabs Apr 21, 2024
36e07d1
Update content/en/docs/components/model-registry/overview.md
tarilabs May 20, 2024
9e4c03c
implement review feedback
tarilabs May 20, 2024
d9c3cd6
fix broken link on review feedback
tarilabs May 21, 2024
84f3859
implement review feedback
tarilabs May 21, 2024
5511ebb
implement review feedback
tarilabs May 21, 2024
01490e1
implement review feedback
tarilabs May 21, 2024
f6cad0a
implement review feedback
tarilabs May 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/en/docs/components/model-registry/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ Remember to substitute the relevant release (e.g. `v0.1.2`), modify `ref=main` t
The following steps show how to install Model Registry using a default Kubeflow >=1.8 installation.

```shell
kubectl apply -k "https://github.com/kubeflow/model-registry/tree/main/manifests/kustomize/overlays/db?ref=main"
kubectl apply -k "https://github.com/kubeflow/model-registry/manifests/kustomize/overlays/db?ref=main"
tarilabs marked this conversation as resolved.
Show resolved Hide resolved
```

As the default installation provides an Istio mesh, apply the necessary manifests:

```shell
kubectl apply -k "https://github.com/kubeflow/model-registry/tree/main/manifests/kustomize/options/istio?ref=main"
kubectl apply -k "https://github.com/kubeflow/model-registry/manifests/kustomize/options/istio?ref=main"
tarilabs marked this conversation as resolved.
Show resolved Hide resolved
```

## Check Model Registry setup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The Model Registry is a passive repository for metadata and is not meant to be a
{{% /alert %}}


Kubeflow Model Registry make use of the Google community project [ML-Metadata](https://github.com/google/ml-metadata) as one of its core component. ML-Metadata provides a very extensible schema that is generic, similar to a key-value store, but also allows for the creation of logical schemas that can be queried as if they were physical schemas. Those can be manipulated using their bindings in the Python library. This model is extended to provide the metadata management service capabilities for Model Registry.
Kubeflow Model Registry makes use of the Google community project [ML-Metadata](https://github.com/google/ml-metadata) as one of its core component. ML-Metadata provides a very extensible schema that is generic, similar to a key-value store, but also allows for the creation of logical schemas that can be queried as if they were physical schemas. Those can be manipulated using their bindings in the Python library. This model is extended to provide the metadata management service capabilities for Model Registry.

The Model Registry uses the ml-metadata project’s C++ server as-is to handle the storing of the metadata, while domain-specific Model Registry features are added as extensions (microservices). As part of these extensions, Model Registry provides:
- Python/Go extensions to support the Model Registry interaction
Expand Down