|
4 | 4 | Notebook Examples
|
5 | 5 | ==================
|
6 | 6 |
|
| 7 | +**Notebook Examples:** |
| 8 | + |
| 9 | + |
7 | 10 | .. admonition:: Notebook Examples
|
8 | 11 | :class: note
|
9 | 12 |
|
10 | 13 | .. list-table::
|
11 |
| - :widths: 50 50 50 |
| 14 | + :widths: 50 50 |
12 | 15 | :header-rows: 1
|
13 | 16 |
|
14 |
| - * - Html Notebook |
15 |
| - - Jupyter Notebook |
| 17 | + * - Jupyter Notebook |
16 | 18 | - Description
|
17 | 19 |
|
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. |
0 commit comments