Building Your First Model
This step-by-step tutorial guides you through training, evaluating, saving, and reloading your first machine learning model with KiteML.
Step 1: Create a Dataset
import pandas as pd
df = pd.DataFrame({
"age": [25, 45, 35, 50, 23, 62, 48, 29],
"income": [50000, 90000, 62000, 110000, 48000, 125000, 98000, 54000],
"credit_score": [650, 720, 680, 800, 610, 750, 710, 640],
"purchased": [0, 1, 1, 1, 0, 1, 1, 0]
})