Machine Learning Modeling & Analysis Tool
This page focuses on the upload, preview, visualization analysis, training, and prediction workflow for small to medium-sized datasets. It is suitable for educational experiments, method demonstrations, sample analysis, and rapid validation, and is not intended as a large-scale production AutoML platform.
File Upload
Supports .csv, .xlsx, .json formats. Data will be processed entirely in your local browser.
Data Overview
Exploratory Data Analysis (EDA)
Machine Learning
Model Configuration
Training Parameters
Network Architecture
Early Stopping Strategy
Training Monitor (Loss)
Model Evaluation & Prediction
Advanced Visualization Analysis
Feature Correlation Matrix
Displays the Pearson correlation coefficient between numeric features to help understand the relationships among them. The system will automatically detect numeric columns in the data.
Click the button above to generate the correlation matrix
Requires at least two numeric columns
Interpretation Guide
Practical Tips
- The diagonal shows the feature's relationship with itself (always 1)
- Highly correlated features (|r| > 0.8) may be redundant
- Strong correlation with the target variable often indicates good predictive power
- Check negative correlations, which may reveal interesting patterns
Predicted vs Actual Values
Compare the match between model predictions and actual values. Ideally, points should fall on the diagonal line.
Residual Analysis
Examine the model's error distribution. Ideally, residuals should be randomly distributed around the zero line.
Residual Statistics
- Residual mean is 0
- Residuals follow a normal distribution
- No obvious patterns or trends
Feature Importance Analysis
Feature importance calculated based on model weights, helping understand which features contribute most to predictions.
Importance Interpretation
The importance score indicates the relative contribution of a feature to the model's prediction:
- High importance: The feature has a large impact on predictions
- Low importance: Consider removing it from the model
- Negative importance: Negatively correlated with the target variable