Skip to content

Commit 1b38351

Browse files
authored
mlm upgrade to new version format (#378)
2 parents 8e087f8 + 9b30839 commit 1b38351

15 files changed

+483
-248
lines changed

ads/feature_store/dataset.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,10 @@ def get_statistics(self, job_id: str = None) -> "Statistics":
11021102
feature_statistics = (
11031103
output_details.get("featureStatistics") if output_details else None
11041104
)
1105-
return Statistics(feature_statistics)
1105+
stat_version = output_details.get("version") if output_details else None
1106+
version = stat_version if stat_version is not None else 1
1107+
1108+
return Statistics(feature_statistics, version)
11061109

11071110
def get_validation_output(self, job_id: str = None) -> "ValidationOutput":
11081111
"""Retrieve Statistics object for the job with job_id
Lines changed: 168 additions & 131 deletions
Original file line numberDiff line numberDiff line change
@@ -1,131 +1,168 @@
1-
.. _Release Notes:
2-
3-
=============
4-
Release Notes
5-
=============
6-
7-
1.0.3
8-
-----
9-
.. note::
10-
11-
.. list-table::
12-
:header-rows: 1
13-
14-
* - Package Name
15-
- Latest Version
16-
- Notes
17-
* - Conda pack
18-
- `fs_pyspark32_p38_cpu_v1`
19-
-
20-
* - SERVICE_VERSION
21-
- 0.1.256.master
22-
-
23-
* - ADS_VERSION
24-
- oracle-ads==2.9.0rc0
25-
- `https://github.com/oracle/accelerated-data-science/releases/tag/v2.9.0rc0`
26-
* - Terraform Stack
27-
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
28-
-
29-
30-
31-
Release notes: September 22, 2023
32-
33-
* [FEATURE] Addition of ``featurestore_dataset`` as optional parameter in GenericModel ``save`` function.
34-
* [FEATURE] Addition of ``transformation_kwargs`` in ``Transformation`` entity.
35-
* [FEATURE] Addition of partition keys in ``FeatureGroup`` and ``Dataset``.
36-
* [FEATURE] Addition of the as_of interface for time travel.
37-
* [FEATURE] Manual association of feature groups in the ``Dataset`` construct and support for complex queries.
38-
* [FEATURE] Simplify the ``ads init`` experience so you don't have to specify the feature store endpoint.
39-
* [FEATURE] Visualisation of feature statistics with ``to_viz`` in ``Statistics`` entity.
40-
* [FIX] Validation of model IDs when associated with ``Dataset``.
41-
* [UI] Statistics visualisation of feature group and dataset.
42-
* [UI] Transformation listing in the transformation tab.
43-
* [UI] Global search for feature store entities.
44-
* [UI] Addition of onboarding page for feature store.
45-
* [UI] Redirection of entities within the lineage tab of feature group and dataset.
46-
47-
1.0.2
48-
-----
49-
.. note::
50-
51-
.. list-table::
52-
:header-rows: 1
53-
54-
* - Package Name
55-
- Latest Version
56-
- Notes
57-
* - Conda pack
58-
- `fs_pyspark32_p38_cpu_v1`
59-
-
60-
* - SERVICE_VERSION
61-
- 0.1.225.master
62-
-
63-
* - Terraform Stack
64-
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
65-
- Par link expires Jan 5, 2026
66-
67-
Release notes: July 18, 2023
68-
69-
* [FEATURE] Support for deployment in the ``us-ashburn`` and ``uk-london`` regions.
70-
* [FEATURE] For a ``ValidationOutput`` instance, the addition of the ``to_summary()`` method for validation summary details.
71-
* [FEATURE] For a ``ValidationOutput`` instance, the addition of the ``to_pandas()`` method for validation detailed report.
72-
* [FIX] Fixed unit test integration to support the merging of ADS into the main branch.
73-
* [DOCS] For ``ValidationOutput`` instance, the addition of the ``to_summary()`` method for validation summary details.
74-
* [DOCS] For ``ValidationOutput`` instance, the addition of the ``to_pandas()`` method for validation detailed report.
75-
76-
1.0.1
77-
-----
78-
79-
.. note::
80-
81-
.. list-table::
82-
:header-rows: 1
83-
84-
* - Package Name
85-
- Latest Version
86-
- Notes
87-
* - Conda pack
88-
- `fs_pyspark32_p38_cpu_v1`
89-
-
90-
* - SERVICE_VERSION
91-
- 0.1.218.master
92-
-
93-
* - Terraform Stack
94-
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
95-
- Par link expires Jan 5, 2026
96-
97-
98-
Release notes: July 5, 2023
99-
100-
* [FEATURE] Supporting Offline Feature Type COMPLEX
101-
* [FEATURE] Added k8 default version as v1.25.4
102-
* [FEATURE] Improvements in logging during materialisation of feature group and dataset and showcasing validation results during materialisation
103-
* [FIX] Fixed creation of singleton spark session without metastore id
104-
* [DOCS] Data Type update for Offline Feature Type COMPLEX
105-
* [DOCS] Updated terraform default version as 1.1.x
106-
107-
1.0.0
108-
-----
109-
110-
.. note::
111-
112-
.. list-table::
113-
:header-rows: 1
114-
115-
* - Package Name
116-
- Latest Version
117-
- Notes
118-
* - Conda pack
119-
- `fs_pyspark32_p38_cpu_v1`
120-
-
121-
* - SERVICE_VERSION
122-
- 0.1.209.master
123-
-
124-
* - Terraform Stack
125-
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
126-
- Par link expires Jan 5, 2026
127-
128-
Release notes: June 15, 2023
129-
130-
* [FEATURE] Included ``FeatureStore``, ``FeatureGroup``, ``Dataset``, ``Entity`` and ``Transformation`` concepts for feature store.
131-
* [DOCS] Included documentation for ``FeatureStore``, ``FeatureGroup``, ``Dataset``, ``Entity`` and ``Transformation`` constructs
1+
.. _Release Notes:
2+
3+
=============
4+
Release Notes
5+
=============
6+
7+
1.0.4
8+
-----
9+
.. note::
10+
11+
.. list-table::
12+
:header-rows: 1
13+
14+
* - Package Name
15+
- Latest Version
16+
- Notes
17+
* - Conda pack
18+
- `fs_pyspark32_p38_cpu_v2`
19+
-
20+
* - SERVICE_VERSION
21+
- 0.1.256.master
22+
-
23+
* - ADS_VERSION
24+
- oracle-ads==2.9.0rc0
25+
- `https://github.com/oracle/accelerated-data-science/releases/tag/v2.9.0rc0`
26+
* - Terraform Stack
27+
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
28+
-
29+
30+
31+
Release notes: November 15, 2023
32+
33+
* [FEATURE] Streaming data-frame support in ``FeatureGroup`` and ``Dataset`` construct
34+
* [FEATURE] Support for custom spark transformations using ``Transformation`` construct
35+
* [MAINTENANCE] Decouple feature store client with oci client
36+
* [MAINTENANCE] Upgrade of ``mlm`` version to ``1.0.2``
37+
* [MAINTENANCE] Upgrade of ``great-expectations`` version to ``0.17.19``
38+
* [UI] Addition of dataset jobs UI tab
39+
* [UI] Addition of feature group jobs UI tab
40+
* [UI] Addition of feature store landing page
41+
* [DOCS] Addition of class documentation for feature store
42+
* [CONDA] Release of feature store v2 conda pack ``fspyspark32_p38_cpu_v2``
43+
44+
1.0.3
45+
-----
46+
.. note::
47+
48+
.. list-table::
49+
:header-rows: 1
50+
51+
* - Package Name
52+
- Latest Version
53+
- Notes
54+
* - Conda pack
55+
- `fs_pyspark32_p38_cpu_v1`
56+
-
57+
* - SERVICE_VERSION
58+
- 0.1.256.master
59+
-
60+
* - ADS_VERSION
61+
- oracle-ads==2.9.0rc0
62+
- `https://github.com/oracle/accelerated-data-science/releases/tag/v2.9.0rc0`
63+
* - Terraform Stack
64+
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
65+
-
66+
67+
68+
Release notes: September 22, 2023
69+
70+
* [FEATURE] Addition of ``featurestore_dataset`` as optional parameter in GenericModel ``save`` function.
71+
* [FEATURE] Addition of ``transformation_kwargs`` in ``Transformation`` entity.
72+
* [FEATURE] Addition of partition keys in ``FeatureGroup`` and ``Dataset``
73+
* [FEATURE] as_of interface for time travel
74+
* [FEATURE] Manual association of feature groups in ``Dataset`` construct and support for complex queries
75+
* [FEATURE] Simplify the ads init experience without users need to specify the feature store endpoint
76+
* [FEATURE] Visualisation of feature statistics with ``to_viz`` in ``Statistics`` entity
77+
* [FIX] Validation of model ids when associated with ``Dataset``
78+
* [UI] Stats visualisation of feature group and dataset.
79+
* [UI] Transformation listing in the transformation tab
80+
* [UI] Global search for feature store entities.
81+
* [UI] Addition of onboarding page for feature store.
82+
* [UI] Redirection of entities within the lineage tab of feature group and dataset.
83+
84+
1.0.2
85+
-----
86+
.. note::
87+
88+
.. list-table::
89+
:header-rows: 1
90+
91+
* - Package Name
92+
- Latest Version
93+
- Notes
94+
* - Conda pack
95+
- `fs_pyspark32_p38_cpu_v1`
96+
-
97+
* - SERVICE_VERSION
98+
- 0.1.225.master
99+
-
100+
* - Terraform Stack
101+
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
102+
- Par link expires Jan 5, 2026
103+
104+
Release notes: July 18, 2023
105+
106+
* [FEATURE] Supporting for deployment in ``us-ashburn`` and ``uk-london`` region.
107+
* [FEATURE] For ``ValidationOutput`` instance, addition of ``to_summary()`` method for validation summary details.
108+
* [FEATURE] For ``ValidationOutput`` instance, addition of ``to_pandas()`` method for validation detailed report.
109+
* [FIX] Fixed unit test integration to support the merging of ADS into the main branch.
110+
* [DOCS] For ``ValidationOutput`` instance, addition of ``to_summary()`` method for validation summary details.
111+
* [DOCS] For ``ValidationOutput`` instance, addition of ``to_pandas()`` method for validation detailed report.
112+
113+
1.0.1
114+
-----
115+
116+
.. note::
117+
118+
.. list-table::
119+
:header-rows: 1
120+
121+
* - Package Name
122+
- Latest Version
123+
- Notes
124+
* - Conda pack
125+
- `fs_pyspark32_p38_cpu_v1`
126+
-
127+
* - SERVICE_VERSION
128+
- 0.1.218.master
129+
-
130+
* - Terraform Stack
131+
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
132+
- Par link expires Jan 5, 2026
133+
134+
135+
Release notes: July 5, 2023
136+
137+
* [FEATURE] Supporting Offline Feature Type COMPLEX
138+
* [FEATURE] Added k8 default version as v1.25.4
139+
* [FEATURE] Improvements in logging during materialisation of feature group and dataset and showcasing validation results during materialisation
140+
* [FIX] Fixed creation of singleton spark session without metastore id
141+
* [DOCS] Data Type update for Offline Feature Type COMPLEX
142+
* [DOCS] Updated terraform default version as 1.1.x
143+
144+
1.0.0
145+
----
146+
147+
.. note::
148+
149+
.. list-table::
150+
:header-rows: 1
151+
152+
* - Package Name
153+
- Latest Version
154+
- Notes
155+
* - Conda pack
156+
- `fs_pyspark32_p38_cpu_v1`
157+
-
158+
* - SERVICE_VERSION
159+
- 0.1.209.master
160+
-
161+
* - Terraform Stack
162+
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
163+
- Par link expires Jan 5, 2026
164+
165+
Release notes: June 15, 2023
166+
167+
* [FEATURE] Included ``FeatureStore``, ``FeatureGroup``, ``Dataset``, ``Entity`` and ``Transformation`` concepts for feature store.
168+
* [DOCS] Included documentation for ``FeatureStore``, ``FeatureGroup``, ``Dataset``, ``Entity`` and ``Transformation`` constructs

0 commit comments

Comments
 (0)