-
Notifications
You must be signed in to change notification settings - Fork 3
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
Using ChatGPT to generate Kedro pipeline for a Kaggle Dataset #90
Comments
Output from ChatGPT 4: Step-by-Step Tutorial: Creating a Data Preprocessing Pipeline with KedroIn this tutorial, we will walk through the process of setting up a data preprocessing pipeline using Kedro, a development workflow framework that helps structure reproducible, scalable, and maintainable data science code. We will use a telecom company churn rate dataset from Kaggle. Prerequisites:
Step 1: Install KedroFirst, ensure you have Kedro installed. You can install Kedro using pip: pip install kedro==0.18.6 Step 2: Create a New Kedro ProjectCreate a new directory for your project and navigate into it: mkdir kedro_telecom
cd kedro_telecom Now, create a new Kedro project: kedro new --starter=pandas-iris Follow the prompts to set up the project. For this tutorial, you can name the project "Telecom Churn Analysis". Step 3: Set Up Your
|
Description
This task documents a blog post that we could explore around using ChatGPT to generate a Kedro pipeline for a Kaggle Dataset. Here is a prompt I've used to do this:
The text was updated successfully, but these errors were encountered: