Downloads · 30 days
14
33% of all-time downloads
RelativeDB/rt-j-onnx
rt-j-onnx is a tabular classification model from RelativeDB. Use it for the tabular classification task on the model card, and read the license before you ship it in a product. It is set up for relational-transformers. The card lists the license as apache-2.0.
This repository contains the classification checkpoint from RelativeDB/rt-j-fp16, exported to ONNX for framework-neutral target prediction over caller-provided relational cell embeddings.
Downloads · 30 days
14
33% of all-time downloads
All-time downloads
42
Public
Repo size
684 MB
Likes
0
Public
Click a slice to open those files.
.onnx342 MB · 100%
From the Hugging Face model README
This repository contains the classification checkpoint from
RelativeDB/rt-j-fp16, exported
to ONNX for framework-neutral target prediction over caller-provided relational
cell embeddings.
Load and cache it automatically with:
from relational_transformers import RelationalTransformer
model = RelationalTransformer(backend="onnx")
predictions = model.predict(batch)
The graph accepts the canonical RelationalBatch tensor fields. Batch size and
cell count are dynamic; the text and column-embedding width is fixed at 384.
Callers remain responsible for producing the model-ready cell embeddings and
relations described in the
relational-transformers input contract.
model.onnx is exported from the full published checkpoint. The release
process verifies PyTorch and ONNX Runtime output parity at multiple dynamic
context lengths before publishing the file.