Skip to content

Commit c2556bb

Browse files
authored
Merge branch 'branch-4.0' into fix-machine-learning-api-links
2 parents 9fca8dd + 7ce6da4 commit c2556bb

File tree

5 files changed

+164
-5
lines changed

5 files changed

+164
-5
lines changed
Loading
Loading

docs/user_guides/fs/provenance/provenance.md

+51-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,27 @@
22

33
## Introduction
44

5-
Hopsworks feature store allows users to track provenance (lineage) between storage connectors, feature groups, feature views, training datasets and models. Tracking lineage allows users to determine where/if a feature group is being used. You can track if feature groups are being used to create additional (derived) feature groups or feature views.
5+
Hopsworks allows users to track provenance (lineage) between:
66

7-
You can interact with the provenance graph using the UI and the APIs.
7+
- storage connectors
8+
- feature groups
9+
- feature views
10+
- training datasets
11+
- models
12+
13+
In the provenance pages we will call a provenance artifact or shortly artifact, any of the five entities above.
14+
15+
With the following provenance graph:
16+
17+
```
18+
storage connector -> feature group -> feature group -> feature view -> training dataset -> model
19+
```
20+
21+
we will call the parent, the artifact to the left, and the child, the artifact to the right. So a feature view has a number of feature groups as parents and can have a number of training datasets as children.
22+
23+
Tracking provenance allows users to determine where and if an artifact is being used. You can track, for example, if feature groups are being used to create additional (derived) feature groups or feature views, or if their data is eventually used to train models.
24+
25+
You can interact with the provenance graph using the UI or the APIs.
826

927
## Step 1: Storage connector lineage
1028

@@ -211,6 +229,29 @@ You can also traverse the provenance graph in the opposite direction. Starting f
211229
lineage.inaccessible
212230
```
213231

232+
Users can call the [get_models_provenance](https://docs.hopsworks.ai/hopsworks-api/{{{ hopsworks_version }}}/generated/api/feature_view_api/#get_models_provenance) method which will return a [Link](#provenance-links) object.
233+
234+
You can also retrive directly the accessible models, without the need to extract them from the provenance links object:
235+
=== "Python"
236+
237+
```python
238+
#List all accessible models
239+
models = fraud_fv.get_models()
240+
241+
#List accessible models trained from a specific training dataset version
242+
models = fraud_fv.get_models(training_dataset_version: 1)
243+
```
244+
245+
Also we added a utility method to retrieve from the user's accessible models, the last trained one. Last is determined based on timestamp when it was saved into the model registry.
246+
=== "Python"
247+
248+
```python
249+
#Retrieve newest model from all user's accessible models based on this feature view
250+
model = fraud_fv.get_newest_model()
251+
#Retrieve newest model from all user's accessible models based on this training dataset version
252+
model = fraud_fv.get_newest_model(training_dataset_version: 1)
253+
```
254+
214255
### Using the UI
215256

216257
In the feature view overview UI you can explore the provenance graph of the feature view:
@@ -221,3 +262,11 @@ In the feature view overview UI you can explore the provenance graph of the feat
221262
<figcaption>Feature view provenance graph</figcaption>
222263
</figure>
223264
</p>
265+
266+
## Provenance Links
267+
268+
All the `_provenance` methods return a `Link` dictionary object that contains `accessible`, `inaccesible`, `deleted` lists.
269+
270+
- `accessible` - contains any artifact from the result, that the user has access to.
271+
- `inaccessible` - contains any artifacts that might have been shared at some point in the past, but where this sharing was retracted. Since the relation between artifacts is still maintained in the provenance, the user will only have access to limited metadata and the artifacts will be included in this `inaccessible` list.
272+
- `deleted` - contains artifacts that are deleted with children stil present in the system. There is minimum amount of metadata for the deleted allowing for some limited human readable identification.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Provenance
2+
3+
## Introduction
4+
5+
Hopsworks allows users to track provenance (lineage) between:
6+
7+
- storage connectors
8+
- feature groups
9+
- feature views
10+
- training datasets
11+
- models
12+
13+
In the provenance pages we will call a provenance artifact or shortly artifact, any of the five entities above.
14+
15+
With the following provenance graph:
16+
17+
```
18+
storage connector -> feature group -> feature group -> feature view -> training dataset -> model
19+
```
20+
21+
we will call the parent, the artifact to the left, and the child, the artifact to the right. So a feature view has a number of feature groups as parents and can have a number of training datasets as children.
22+
23+
Tracking provenance allows users to determine where and if an artifact is being used. You can track, for example, if feature groups are being used to create additional (derived) feature groups or feature views, or if their data is eventually used to train models.
24+
25+
You can interact with the provenance graph using the UI or the APIs.
26+
27+
## Model provenance
28+
29+
The relationship between feature views and models is captured in the model [constructor](https://docs.hopsworks.ai/hopsworks-api/{{{ hopsworks_version }}}/generated/model_registry/model_api/#create_model). If you do not provide at least the feature view object to the constructor, the provenance will not capture this relation and you will not be able to navigate from model to the feature view it used or from the feature view to this model.
30+
31+
You can provide the feature view object and have the training dataset version be inferred.
32+
33+
=== "Python"
34+
35+
```python
36+
# this fv object will be provided to the model constructor
37+
fv = hsfs.get_feature_view(...)
38+
39+
# when calling trainig data related methods on the feature view, the training dataset version is cached in the feature view and is implicitly provided to the model constructor
40+
X_train, X_test, y_train, y_test = feature_view.train_test_split(...)
41+
42+
# provide the feature_view object in the model constructor
43+
hsml.model_registry.ModelRegistry.python.create_model(
44+
...
45+
feature_view = fv
46+
...)
47+
```
48+
49+
You can of course explicitly provide the training dataset version.
50+
=== "Python"
51+
52+
```python
53+
# this object will be provided to the model constructor
54+
fv = hsfs.get_feature_view(...)
55+
56+
# this training dataset version will be provided to the model constructor
57+
X_train, X_test, y_train, y_test = feature_view.get_train_test_split(training_dataset_version=1)
58+
59+
# provide the feature_view object in the model constructor
60+
hsml.model_registry.ModelRegistry.python.create_model(
61+
...
62+
feature_view = fv,
63+
training_dataset_version = 1,
64+
...)
65+
```
66+
67+
Once the relation is stored in the provenance graph, you can navigate the graph from model to feature view or training dataset and the other way around.
68+
69+
Users can call the [get_feature_view_provenance(https://docs.hopsworks.ai/hopsworks-api/{{{ hopsworks_version }}}/generated/model_registry/model_api/#get_feature_view_provenance) method or the [get_training_dataset_provenance(https://docs.hopsworks.ai/hopsworks-api/{{{ hopsworks_version }}}/generated/model_registry/model_api/#get_training_dataset_provenance) method which will each return a [Link](#provenance-links) object.
70+
71+
You can also retrieve directly the parent feature view object, without the need to extract them from the provenance links object, using the [get_feature_view(https://docs.hopsworks.ai/hopsworks-api/{{{ hopsworks_version }}}/generated/model_registry/model_api/#get_feature_view ) method
72+
73+
=== "Python"
74+
75+
```python
76+
feature_view = model.get_feature_view()
77+
```
78+
79+
This utility method also has the options to initialize the required components for batch or online retrieval of feature vectors.
80+
81+
=== "Python"
82+
83+
```python
84+
model.get_feature_view(init: bool = True, online: Optional[bool]: None)
85+
```
86+
87+
By default, the base init for feature vector retrieval is enabled. In case you have a workflow that requires more particular options, you can disable this base init by setting the `init` to `false`.
88+
The method detects if it is running within a deployment and will initialize the feature vector retrieval for the serving.
89+
If the `online` argument is provided and `true` it will initialize for online feature vector retrieval.
90+
If the `online` argument is provided and `false` it will initialize the feature vector retrieval for batch scoring.
91+
92+
### Using the UI
93+
94+
In the model overview UI you can explore the provenance graph of the model:
95+
96+
<p align="center">
97+
<figure>
98+
<img src="../../../../assets/images/guides/mlops/provenance/provenance_model.png" alt="Model provenance graph">
99+
<figcaption>Provenance graph of derived feature groups</figcaption>
100+
</figure>
101+
</p>
102+
103+
## Provenance Links
104+
105+
All the `_provenance` methods return a `Link` dictionary object that contains `accessible`, `inaccesible`, `deleted` lists.
106+
107+
- `accessible` - contains any artifact from the result, that the user has access to.
108+
- `inaccessible` - contains any artifacts that might have been shared at some point in the past, but where this sharing was retracted. Since the relation between artifacts is still maintained in the provenance, the user will only have access to limited metadata and the artifacts will be included in this `inaccessible` list.
109+
- `deleted` - contains artifacts that are deleted with children stil present in the system. There is minimum amount of metadata for the deleted allowing for some limited human readable identification.

mkdocs.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
site_name: "Hopsworks Documentation"
2-
site_description: "Official documentation for Hopsworks and its Feature Store - an open source data-intensive AI platform used for the 4.0elopment and operation of machine learning models at scale."
2+
site_description: "Official documentation for Hopsworks and its Feature Store - an open source data-intensive AI platform used for the development and operation of machine learning models at scale."
33
site_author: "Hopsworks"
44
site_url: "https://docs.hopsworks.ai/"
55

@@ -52,8 +52,8 @@ nav:
5252
- BI Tools: concepts/mlops/bi_tools.md
5353
- Data Transformations: concepts/mlops/data_transformations.md
5454
- Development:
55-
- Outside Hopsworks: concepts/4.0/outside.md # api-keys
56-
- Inside Hopsworks: concepts/4.0/inside.md
55+
- Outside Hopsworks: concepts/dev/outside.md # api-keys
56+
- Inside Hopsworks: concepts/dev/inside.md
5757
- Guides:
5858
- user_guides/index.md
5959
- Feature Store:
@@ -195,6 +195,7 @@ nav:
195195
- API Protocol: user_guides/mlops/serving/api-protocol.md
196196
- Troubleshooting: user_guides/mlops/serving/troubleshooting.md
197197
- Vector Database: user_guides/mlops/vector_database/index.md
198+
- Provenance: user_guides/mlops/provenance/provenance.md
198199
- Migration:
199200
- 3.X to 4.0: user_guides/migration/40_migration.md
200201
- Setup and Administration:

0 commit comments

Comments
 (0)