User Guide¶
How to Use the Application¶
Step 1: Upload Dataset¶
Click “Choose .pkl File”
Select your dataset file
Dataset must have columns: x1, x2, x3, x4, x5, y
Dataset Format¶
Your pickle file should be a dictionary:
{
"X": numpy array of features (n_samples, 5),
"y": numpy array of targets (n_samples,),
"metadata": {
"feature_names": ["x1", "x2", "x3", "x4", "x5"],
"target_name": "y"
}
}
Step 2: Train Model¶
Set number of hidden layers (1-5)
Set neurons per layer (1-64)
Set number of epochs (5-200)
Set learning rate (0.0001-0.001)
Click “Start Training”
View results and plots
Step 3: Make Predictions¶
Adjust sliders for x1, x2, x3, x4, x5
Click “Predict”
View predicted value
Reset¶
Click “Reset” to clear everything and start over.