This project presents a comparative study of intelligent data analysis methods for industrial process monitoring data related to low-temperature coke gas separation.
Several machine learning and neuro-fuzzy approaches were implemented and compared in MATLAB, including:
- fuzzy clustering (FCM and Subtractive Clustering),
- feedforward neural networks,
- ANFIS neuro-fuzzy systems,
- Neural Network Fitting App,
- hybrid clustered neural network models.
The goal of the project was to investigate nonlinear approximation of industrial process parameters and compare the effectiveness of different intelligent modeling approaches.
The dataset contains industrial process monitoring data from a low-temperature coke gas separation system.
- Temperature
- Valve opening percentage
- Coke gas flow
- Nitrogen flow
- Ethylene fraction concentration
Two independent datasets were created:
coke_gas_train.csvcoke_gas_test.csv
The datasets were generated using non-overlapping sampling strategies to ensure reproducible external testing across all experiments.
- statistical analysis,
- polynomial approximation,
- spline interpolation,
- exploratory data analysis.
- Fuzzy C-Means (FCM),
- Subtractive Clustering,
- membership matrix analysis,
- cluster center comparison.
- multilayer perceptrons,
- Levenberg–Marquardt training,
- train/test evaluation,
- architecture comparison.
- Sugeno FIS,
- Grid Partitioning,
- Subtractive Clustering initialization,
- neuro-fuzzy approximation.
- FCM-based data segmentation,
- separate neural network per cluster,
- local approximation of operating regimes.
- automatic train/validation/test split,
- regression analysis,
- validation performance analysis.
data/
results/
scripts/
README.md
results/
├── plots/
├── screenshots/
├── metrics/
└── models/
scripts/
├── preprocessing/
├── neural_networks/
├── hybrid_models/
└── anfis/
| Architecture | Goal | Epochs | Performance |
|---|---|---|---|
| 5-40 | 0.01 | 12 | 0.00207 |
| Method | Test Error |
|---|---|
| Subtractive Clustering | 2.2645 |
| Grid Partitioning | 4.6195 |
- classical feedforward neural networks achieved the lowest approximation error,
- ANFIS models provided interpretable fuzzy-rule-based approximation,
- clustered neural networks demonstrated regime-based local modeling,
- early overfitting was observed in some automatic fitting experiments.
- MATLAB
- Neural Network Toolbox
- Fuzzy Logic Toolbox
- ANFIS
- FCM Clustering
- Subtractive Clustering


