v0.1.0
First public release of synthefy-tabular.
Install
pip install synthefy-tabularAuthentication
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)