Causilo is a pretrained tabular foundation model from Nums AI Inc., supporting classification and regression through a scikit-learn interface.
classifier/config.json and classifier/model.safetensors: classification model.regressor/config.json and regressor/model.safetensors: regression model.Python 3.10–3.12 and PyTorch 2.13+ are required.
pip install causilo
The first fit automatically downloads and caches the checkpoint.
from causilo import CausiloClassifier, CausiloRegressor
classifier = CausiloClassifier()
classifier.fit(X_train, y_train)
probabilities = classifier.predict_proba(X_test)
regressor = CausiloRegressor()
regressor.fit(X_train, y_train)
predictions = regressor.predict(X_test)
See the code repository for usage and benchmarks.
Licensor: Nums AI Inc. Contact: contact@nums.world.
Causilo is a pretrained tabular foundation model from Nums AI Inc., supporting classification and regression through a scikit-learn interface.
classifier/config.json and classifier/model.safetensors: classification model.regressor/config.json and regressor/model.safetensors: regression model.Python 3.10–3.12 and PyTorch 2.13+ are required.
pip install causilo
The first fit automatically downloads and caches the checkpoint.
from causilo import CausiloClassifier, CausiloRegressor
classifier = CausiloClassifier()
classifier.fit(X_train, y_train)
probabilities = classifier.predict_proba(X_test)
regressor = CausiloRegressor()
regressor.fit(X_train, y_train)
predictions = regressor.predict(X_test)
See the code repository for usage and benchmarks.
Licensor: Nums AI Inc. Contact: contact@nums.world.