-
Notifications
You must be signed in to change notification settings - Fork 1k
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
docs: Credit-risk-end-to-end example #4630
Merged
franciscojavierarceo
merged 6 commits into
feast-dev:master
from
dandawg:feast-sklearn-example
Dec 20, 2024
Merged
docs: Credit-risk-end-to-end example #4630
franciscojavierarceo
merged 6 commits into
feast-dev:master
from
dandawg:feast-sklearn-example
Dec 20, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
examples/credit-risk-end-to-end/02_Deploying_the_Feature_Store.ipynb
Outdated
Show resolved
Hide resolved
examples/credit-risk-end-to-end/02_Deploying_the_Feature_Store.ipynb
Outdated
Show resolved
Hide resolved
examples/credit-risk-end-to-end/02_Deploying_the_Feature_Store.ipynb
Outdated
Show resolved
Hide resolved
examples/credit-risk-end-to-end/03_Credit_Risk_Model_Training.ipynb
Outdated
Show resolved
Hide resolved
examples/credit-risk-end-to-end/03_Credit_Risk_Model_Training.ipynb
Outdated
Show resolved
Hide resolved
examples/credit-risk-end-to-end/02_Deploying_the_Feature_Store.ipynb
Outdated
Show resolved
Hide resolved
dmartinol
reviewed
Oct 17, 2024
dmartinol
reviewed
Oct 17, 2024
examples/credit-risk-end-to-end/04_Credit_Risk_Model_Serving.ipynb
Outdated
Show resolved
Hide resolved
👏 👏 👏 |
2b08cdb
to
2dc651c
Compare
tokoko
reviewed
Oct 21, 2024
examples/credit-risk-end-to-end/02_Deploying_the_Feature_Store.ipynb
Outdated
Show resolved
Hide resolved
accorvin
reviewed
Oct 21, 2024
6c6310e
to
a88ae15
Compare
franciscojavierarceo
requested changes
Oct 23, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's adjust based on the feedback provided
a88ae15
to
0263169
Compare
@franciscojavierarceo I've adjusted this PR based on the feedback given. I believe it's ready to merge. |
franciscojavierarceo
approved these changes
Nov 26, 2024
abc4d80
to
ba9cc97
Compare
franciscojavierarceo
approved these changes
Dec 11, 2024
Signed-off-by: dandawg <12484302+dandawg@users.noreply.github.com>
Signed-off-by: dandawg <12484302+dandawg@users.noreply.github.com>
Signed-off-by: dandawg <12484302+dandawg@users.noreply.github.com>
Signed-off-by: dandawg <12484302+dandawg@users.noreply.github.com>
Signed-off-by: dandawg <12484302+dandawg@users.noreply.github.com>
Signed-off-by: dandawg <12484302+dandawg@users.noreply.github.com>
ba9cc97
to
434fc19
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What this PR does / why we need it:
This PR presents a clear step-by-step guide aimed at data science teams who need a basic hands-on introduction to Feast. I use the AI modeling workflow to demonstrate Feast in-context. In this example, the data doesn't randomly appear with
feast init
, and it's not randomly generated (except for timestamps and IDs). The example data comes from a popular OpenML dataset, and the reader progresses through data preparation, model training, and model serving. The example walks through the basic steps of the AI modeling process, and Feast solutions are brought in where they naturally provide value.As people of different roles (data scientists, data engineers, DevOps, AppDevs, etc.) need introductions to Feast and how it fits in the AI/ML flow, I've kept the example approachable, so that someone who doesn't know all of the technical disciplines can follow along and get an idea of the full picture.
Which issue(s) this PR fixes:
The quickstart documentation and other examples are great for describing Feast functionality, but they use randomly generated data with no real patterns, and they are not as clear on where things fit in the process of doing AI/ML.
Misc