Skip to main content

Lightweight interface to scikit-learn, xgboost, lightgbm, catboost, with 2 classes

Project description

tisthemachinelearner


Lightweight interface to scikit-learn with 2 classes, Classifier and Regressor. Home of FiniteDiffRegressor (see Backpropagating quasi-randomized neural networks https://thierrymoudiki.github.io/blog/2025/06/23/python/backprop-qrnn).

PyPI [PyPI - License] Downloads Documentation

Installing (for Python and R)

Python

  • 1st method: by using pip at the command line for the stable version
pip install tisthemachinelearner
  • 2nd method: from Github, for the development version
pip install git+https://github.com/Techtonique/tisthemachinelearner.git

or

git clone https://github.com/Techtonique/tisthemachinelearner.git
cd tisthemachinelearner
make install

Examples

import numpy as np
from sklearn.datasets import load_diabetes, load_breast_cancer
from sklearn.model_selection import train_test_split
from tisthemachinelearner import Classifier, Regressor

# Classification
X, y = load_breast_cancer(return_X_y=True)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

clf = Classifier("LogisticRegression", random_state=42)
clf.fit(X_train, y_train)
print(clf.predict(X_test))
print(clf.score(X_test, y_test))

clf = Classifier("RandomForestClassifier", n_estimators=100, random_state=42)
clf.fit(X_train, y_train)
print(clf.predict(X_test))
print(clf.score(X_test, y_test))

# Regression
X, y = load_diabetes(return_X_y=True)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)

reg = Regressor("LinearRegression")
reg.fit(X_train, y_train)
print(reg.predict(X_test))
print(np.sqrt(np.mean((reg.predict(X_test) - y_test) ** 2)))

reg = Regressor("RidgeCV", alphas=[0.01, 0.1, 1, 10])
reg.fit(X_train, y_train)
print(reg.predict(X_test))
print(np.sqrt(np.mean((reg.predict(X_test) - y_test) ** 2)))

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

This software contains code derived from scikit-learn, which is licensed under the BSD 3-Clause License. See NOTICE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tisthemachinelearner-0.8.6.tar.gz (96.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tisthemachinelearner-0.8.6-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file tisthemachinelearner-0.8.6.tar.gz.

File metadata

  • Download URL: tisthemachinelearner-0.8.6.tar.gz
  • Upload date:
  • Size: 96.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tisthemachinelearner-0.8.6.tar.gz
Algorithm Hash digest
SHA256 b9cd572d1f8bb5f0074544cb2bf49e386075257bfbf0248f7b6134375c10150e
MD5 bf2d5c9bfeee4847b777cf2eb1dd6163
BLAKE2b-256 434a9656ed0c17853c01a422d3bc8d24251cd242288266fc31b43928759e83bf

See more details on using hashes here.

File details

Details for the file tisthemachinelearner-0.8.6-py3-none-any.whl.

File metadata

File hashes

Hashes for tisthemachinelearner-0.8.6-py3-none-any.whl
Algorithm Hash digest
SHA256 232199a94a13191c5715f2c3b14d068bb407833b4bb2bc9b30b79ea6921d24d3
MD5 3ec77c23755d8146c8c24b3f09e74a9f
BLAKE2b-256 c4e07100ed00e91d0f1c33bd3ca91142ebf055c5f9dfbd07c5907d3880054e64

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page