-
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
Open
dandawg
wants to merge
7
commits into
feast-dev:master
Choose a base branch
from
dandawg:feast-sklearn-example
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+4,138
−1
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
dandawg
changed the title
docs: credit-risk-end-to-end example
docs: Credit-risk-end-to-end example
Oct 16, 2024
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
👏 👏 👏 |
dandawg
force-pushed
the
feast-sklearn-example
branch
2 times, most recently
from
October 21, 2024 01:53
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
dandawg
force-pushed
the
feast-sklearn-example
branch
from
October 21, 2024 22:10
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
Signed-off-by: dandawg <[email protected]>
Signed-off-by: dandawg <[email protected]>
Signed-off-by: dandawg <[email protected]>
Signed-off-by: dandawg <[email protected]>
Signed-off-by: dandawg <[email protected]>
Signed-off-by: dandawg <[email protected]>
dandawg
force-pushed
the
feast-sklearn-example
branch
from
October 28, 2024 02:24
a88ae15
to
0263169
Compare
Signed-off-by: dandawg <[email protected]>
@franciscojavierarceo I've adjusted this PR based on the feedback given. I believe it's ready to merge. |
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