Skip to content

Commit e6ca7a3

Browse files
committed
added docks and updated version
1 parent 9b30839 commit e6ca7a3

File tree

4 files changed

+29
-28
lines changed

4 files changed

+29
-28
lines changed

ads/feature_store/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
sys.path.insert(0, os.path.abspath("../../"))
1111

12-
version = "1.0.3"
12+
version = "1.0.4"
1313
release = version
1414

1515

ads/feature_store/docs/source/notebook.rst

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,34 @@
44
Notebook Examples
55
==================
66

7+
**Notebook Examples:**
8+
9+
710
.. admonition:: Notebook Examples
811
:class: note
912

1013
.. list-table::
11-
:widths: 50 50 50
14+
:widths: 50 50
1215
:header-rows: 1
1316

14-
* - Html Notebook
15-
- Jupyter Notebook
17+
* - Jupyter Notebook
1618
- Description
1719

18-
* - `Feature store quickstart <https://objectstorage.us-ashburn-1.oraclecloud.com/p/hh2NOgFJbVSg4amcLM3G3hkTuHyBD-8aE_iCsuZKEvIav1Wlld-3zfCawG4ycQGN/n/ociodscdev/b/oci-feature-store/o/beta/notebook/feature_store_flights.html>`__
19-
- `Feature store quickstart <https://objectstorage.us-ashburn-1.oraclecloud.com/p/hh2NOgFJbVSg4amcLM3G3hkTuHyBD-8aE_iCsuZKEvIav1Wlld-3zfCawG4ycQGN/n/ociodscdev/b/oci-feature-store/o/beta/notebook/feature_store_flights.ipynb>`__
20-
- | 1. Ingestion of data.
21-
| 2. Querying and exploration of data.
22-
23-
* - `Big data operations with feature store <https://objectstorage.us-ashburn-1.oraclecloud.com/p/hh2NOgFJbVSg4amcLM3G3hkTuHyBD-8aE_iCsuZKEvIav1Wlld-3zfCawG4ycQGN/n/ociodscdev/b/oci-feature-store/o/beta/notebook/feature-store-big-data-ingestion-and-querying.html>`__
24-
- `Big data operations with feature store <https://objectstorage.us-ashburn-1.oraclecloud.com/p/hh2NOgFJbVSg4amcLM3G3hkTuHyBD-8aE_iCsuZKEvIav1Wlld-3zfCawG4ycQGN/n/ociodscdev/b/oci-feature-store/o/beta/notebook/feature-store-big-data-ingestion-and-querying.ipynb>`__
25-
- | 1. Ingestion of data using Spark Magic.
26-
| 2. Querying and exploration of data using Spark Magic.
27-
28-
* - `Schema enforcement and schema evolution <https://objectstorage.us-ashburn-1.oraclecloud.com/p/hh2NOgFJbVSg4amcLM3G3hkTuHyBD-8aE_iCsuZKEvIav1Wlld-3zfCawG4ycQGN/n/ociodscdev/b/oci-feature-store/o/beta/notebook/feature_store_flights_schema_evolution.html>`__
29-
- `Schema enforcement and schema evolution <https://objectstorage.us-ashburn-1.oraclecloud.com/p/hh2NOgFJbVSg4amcLM3G3hkTuHyBD-8aE_iCsuZKEvIav1Wlld-3zfCawG4ycQGN/n/ociodscdev/b/oci-feature-store/o/beta/notebook/feature_store_flights_schema_evolution.ipynb>`__
30-
- | 1. Schema evolution allows you to easily change a table's current schema to accommodate data that is changing over time.
31-
| 2. Schema enforcement, also known as schema validation, is a safeguard in Delta Lake that ensures data quality by rejecting writes to a table that don't match the table's schema.
32-
33-
* - `Embeddings in Feature Store <https://objectstorage.us-ashburn-1.oraclecloud.com/p/hh2NOgFJbVSg4amcLM3G3hkTuHyBD-8aE_iCsuZKEvIav1Wlld-3zfCawG4ycQGN/n/ociodscdev/b/oci-feature-store/o/beta/notebook/feature_store_embeddings.html>`__
34-
- `Embeddings in Feature Store <https://objectstorage.us-ashburn-1.oraclecloud.com/p/hh2NOgFJbVSg4amcLM3G3hkTuHyBD-8aE_iCsuZKEvIav1Wlld-3zfCawG4ycQGN/n/ociodscdev/b/oci-feature-store/o/beta/notebook/feature_store_embeddings.ipynb>`__
35-
- | 1. One of the primary functions of an embedding feature store is to store pre-trained word embeddings, such as Word2Vec, GloVe, FastText, or BERT embeddings. These embeddings are learned from massive text and contain information about word semantics. Embeddings can be valuable for various NLP tasks like text classification, named entity recognition, sentiment analysis, and so on.
36-
| 2. Embedding feature stores are optimized for fast and efficient retrieval of embeddings. This is important because embeddings can be high-dimensional and computationally expensive to calculate. By storing them in a dedicated store, you can avoid the need to recalculate embeddings for the same data repeatedly.
20+
* - `Feature store querying <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/notebook_examples/feature_store_querying.ipynb>`__
21+
- | * Ingestion of data.
22+
| * Querying and exploration of data.
23+
24+
* - `Feature store quickstart <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/notebook_examples/feature_store_quickstart.ipynb>`__
25+
- | * Ingestion of data.
26+
| * Querying and exploration of data.
27+
28+
* - `Big data operations with feature store <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/notebook_examples/feature_store_spark_magic.ipynb>`__
29+
- | * Ingestion of data using Spark Magic.
30+
| * Querying and exploration of data using Spark Magic.
31+
32+
* - `Schema enforcement and schema evolution <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/notebook_examples/feature_store_schema_evolution.ipynb>`__
33+
- | * ``Schema evolution`` allows you to easily change a table's current schema to accommodate data that is changing over time.
34+
| * ``Schema enforcement``, also known as schema validation, is a safeguard in Delta Lake that ensures data quality by rejecting writes to a table that don't match the table's schema.
35+
36+
* - `Embeddings in Feature Store <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/notebook_examples/feature_store_embeddings.ipynb>`__
37+
- | * ``Embedding feature stores`` are optimized for fast and efficient retrieval of embeddings. This is important because embeddings can be high-dimensional and computationally expensive to calculate. By storing them in a dedicated store, you can avoid the need to recalculate embeddings for the same data repeatedly.

ads/feature_store/docs/source/release_notes.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Release Notes
1818
- `fs_pyspark32_p38_cpu_v2`
1919
-
2020
* - SERVICE_VERSION
21-
- 0.1.256.master
21+
- 0.1.295.master
2222
-
2323
* - ADS_VERSION
24-
- oracle-ads==2.9.0rc0
25-
- `https://github.com/oracle/accelerated-data-science/releases/tag/v2.9.0rc0`
24+
- oracle-ads==2.9.0
25+
- `https://github.com/oracle/accelerated-data-science/releases/tag/v2.9.0`
2626
* - Terraform Stack
2727
- `link <https://objectstorage.us-ashburn-1.oraclecloud.com/p/vZogtXWwHqbkGLeqyKiqBmVxdbR4MK4nyOBqDsJNVE4sHGUY5KFi4T3mOFGA3FOy/n/idogsu2ylimg/b/oci-feature-store/o/beta/terraform/feature-store-terraform.zip>`__
2828
-
@@ -142,7 +142,7 @@ Release notes: July 5, 2023
142142
* [DOCS] Updated terraform default version as 1.1.x
143143

144144
1.0.0
145-
----
145+
-----
146146

147147
.. note::
148148

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build-backend = "flit_core.buildapi"
1919

2020
# Required
2121
name = "oracle_ads" # the install (PyPI) name; name for local build in [tool.flit.module] section below
22-
version = "2.9.0rc0"
22+
version = "2.9.0rc1"
2323

2424
# Optional
2525
description = "Oracle Accelerated Data Science SDK"

0 commit comments

Comments
 (0)