Skip to content

v0.1.0

Choose a tag to compare

@yogabbagabb yogabbagabb released this 26 May 10:09
· 1 commit to main since this release

First public release of synthefy-tabular.

Install

pip install synthefy-tabular

Authentication

The default model checkpoint at Synthefy/synthefy-tabular on Hugging Face currently requires access. See the README for details on requesting access and providing an HF token.

If you have a local checkpoint, pass model_path= to skip the Hugging Face download.

Usage

from synthefy_tabular import SynthefyTabularRegressor
model = SynthefyTabularRegressor()
model.fit(X_train, y_train)
pred = model.predict(X_test)