Skip to main content

Iterative Correlation Learning implementation

Project description

icol

** Iterative Correlation Learning in Python **

icol allows one to fit extremly sparse linear models from very high dimensional datasets in a computationally efficient manner. We also include two feature expansion methods, allowing icol to be used as a Symbolic Regression tool.


Installation

Install via pip:

pip3 install icol

Example

import numpy as np

from icol.icol import PolynomialFeaturesICL, AdaptiveLASSO, ICL, rmse

# Example Data: 10 features, three of which are used to form a degree 3 polynomial with 4 terms. 
random_state = 0
n = 100
p = 10
rung = 3
s = 5
d = 4

np.random.seed(random_state)
X_train = np.random.normal(size=(n, p))

y = lambda X: X[:, 0] + 2*X[:, 1]**2 - X[:, 0]*X[:, 1] + 3*X[:, 2]**3

y_train = y(X_train)

# Initialise and fit the ICL model
FE = PolynomialFeaturesICL(rung=rung, include_bias=False)
so = AdaptiveLASSO(gamma=1, fit_intercept=False)

X_train_transformed = FE.fit_transform(X_train, y)
feature_names = FE.get_feature_names_out()

icl = ICL(s=s, so=so, d=d, fit_intercept=True, normalize=True, pool_reset=False)
icl.fit(X_train_transformed, y_train, feature_names=feature_names, verbose=False)

# Compute the train and test error and print the model to verify that we have reproduced the data generating function
print(icl)
print(icl.__repr__())

y_hat_train = icl.predict(X_train_transformed)

print("Train rmse: " + str(rmse(y_hat_train, y_train)))

X_test = np.random.normal(size=(100*n, p))
X_test_transformed = FE.transform(X_test)
y_test = y(X_test)
y_hat_test = icl.predict(X_test_transformed)
print("Test rmse: " + str(rmse(y_hat_test, y_test)))

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

icol-0.10.2.tar.gz (16.7 kB view details)

Uploaded Source

Built Distribution

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

icol-0.10.2-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file icol-0.10.2.tar.gz.

File metadata

  • Download URL: icol-0.10.2.tar.gz
  • Upload date:
  • Size: 16.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.10

File hashes

Hashes for icol-0.10.2.tar.gz
Algorithm Hash digest
SHA256 a6b5d28c56ec3043776fcb6db2169299a847b38d7edb567ae9af4dae56cc6212
MD5 4914e15d89c4494e0cce5ed09ef03e5e
BLAKE2b-256 48ed2b6089a6cf131ebe36f590e1d69f31f900aadda38264380bad0eb3a9c015

See more details on using hashes here.

File details

Details for the file icol-0.10.2-py3-none-any.whl.

File metadata

  • Download URL: icol-0.10.2-py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.10

File hashes

Hashes for icol-0.10.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3d9ca2a00eca87d29f38984d72ea9d6bbb248193fa6b7a8480e63aede029b4c7
MD5 a74343116462f12110e0e60207bf0f1c
BLAKE2b-256 4118da3cddd629b684eb8d8d7d8a03a3fa3f3c8b7da57e5d0a13215cf97c4567

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