highFIS is a comprehensive Python package for training and evaluating high-dimensional TSK fuzzy systems, built on PyTorch and compatible with the scikit-learn API.
Project description
highFIS
Python library for high-dimensional Takagi–Sugeno–Kang (TSK) fuzzy inference systems, built on PyTorch with a scikit-learn compatible API.
📦 Installation
Install from PyPI:
pip install highfis
🧠 Quick Start
from highfis import HTSKClassifierEstimator
clf = HTSKClassifierEstimator(
n_mfs=3,
rule_base="en",
epochs=200,
learning_rate=1e-3,
ur_weight=0.01,
random_state=42,
)
clf.fit(X_train, y_train)
print(clf.score(X_test, y_test))
Works with sklearn.pipeline.Pipeline, GridSearchCV, and cross_val_score.
🧩 Key Components
| Class | Module | Description |
|---|---|---|
BaseTSK |
highfis.base |
Abstract base for TSK models with unified training loop. |
GaussianMF |
highfis.memberships |
Differentiable Gaussian membership function. |
TriangularMF |
highfis.memberships |
Triangular membership function. |
TrapezoidalMF |
highfis.memberships |
Trapezoidal membership function. |
BellMF |
highfis.memberships |
Generalized bell membership function. |
SigmoidalMF |
highfis.memberships |
Sigmoidal membership function. |
SoftmaxLogDefuzzifier |
highfis.defuzzifiers |
Stable softmax(log(w)) normalization. |
SumBasedDefuzzifier |
highfis.defuzzifiers |
Classic w / sum(w) normalization. |
LogSumDefuzzifier |
highfis.defuzzifiers |
Temperature-scaled log-space normalization. |
MembershipLayer |
highfis.layers |
Evaluates all membership functions. |
RuleLayer |
highfis.layers |
Computes firing strengths with configurable t-norm and rule base. |
ClassificationConsequentLayer |
highfis.layers |
Linear TSK consequent aggregation for classification. |
RegressionConsequentLayer |
highfis.layers |
Linear TSK consequent aggregation for regression. |
HTSKClassifier |
highfis.models |
Full TSK classification pipeline as nn.Module. |
HTSKRegressor |
highfis.models |
Full TSK regression pipeline as nn.Module. |
HTSKClassifierEstimator |
highfis.estimators |
sklearn-compatible classification estimator. |
HTSKRegressorEstimator |
highfis.estimators |
sklearn-compatible regression estimator. |
InputConfig |
highfis.estimators |
Per-feature membership function configuration. |
Structural Typing Protocols
| Protocol | Description |
|---|---|
MembershipFn |
Any callable (Tensor) → Tensor for membership degrees. |
TNorm |
Any callable (Tensor) → Tensor for rule aggregation. |
Defuzzifier |
Any callable (Tensor) → Tensor for firing-strength normalization. |
ConsequentFn |
Any callable (Tensor, Tensor) → Tensor for consequent output. |
🧪 Testing & Quality
Running tests
Run the full test suite with coverage:
hatch test -c -a
This project is tested on Python 3.11 | 3.12 | 3.13 | 3.14 across Linux, Windows and macOS.
Linting & Formatting
hatch fmt
Typing
hatch run typing
Security
hatch run security
📚 Documentation
Comprehensive guides, API reference, and examples: dcruzf.github.io/highFIS.
🤝 Contributing
Issues and pull requests are welcome! Please open a discussion if you'd like to propose larger changes.
📄 License
Distributed under the GPLv3.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file highfis-0.3.0.tar.gz.
File metadata
- Download URL: highfis-0.3.0.tar.gz
- Upload date:
- Size: 37.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60212e712aec85f92a45f87d4307ffe69442c471053b84e2e44d5becfaac2fda
|
|
| MD5 |
07aae046267001091657ad200911a8cb
|
|
| BLAKE2b-256 |
110939c3121085c10c09def3ff8360ae64b2740f7e64f2506de373656118b8e0
|
File details
Details for the file highfis-0.3.0-py3-none-any.whl.
File metadata
- Download URL: highfis-0.3.0-py3-none-any.whl
- Upload date:
- Size: 43.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acbe76f4292534b298bf9d9fe46535e8aec259016c8ebb369701d891983aac22
|
|
| MD5 |
dc25a86062de1450271616e41d9d9b0c
|
|
| BLAKE2b-256 |
caabe316ef79e92a032f98b178a6ba5550f32e3db83b21b8981e3fb60040f07f
|