OPEN SOURCE · PYTHON

ENTER
Ghost mode.

A drop-in performance layer for RF-DETR. Replace one import. Keep your code. Get optimized fused kernels and GPU-level performance improvements automatically.

ZERO CODE CHANGESDROP-IN COMPATIBLE
LIVE BENCHMARK
0.0×
FASTER OUT OF THE BOX
RF-DETR
842 ms
GHOST
168 ms

Illustrative benchmark. Actual speedups vary by GPU, model, batch size and workload.

01 / THE PROMISE

One import change.
Same API. Different engine.

from rfdetr import RFDETRBase
from rfdetr_ghost import RFDETRBase

That's it.

02 / COMPATIBILITY

Your code stays
the same.

No rewrite. No new API. No migration project.
Just an optimized implementation underneath.

BEFORE
from rfdetr import RFDETRBase

model = RFDETRBase()

model.train(...)
predictions = model.predict(...)
AFTER
from rfdetr_ghost import RFDETRBase

model = RFDETRBase()

model.train(...)
predictions = model.predict(...)
Same API. Same model. Same workflow. Different engine.
03 / UNDER THE HOOD

The optimization
happens underneath.

Ghost handles the low-level work so you can stay in Python. Expensive paths are swapped for implementations built for the GPU.

RF-DETR
PYTHON API
GHOST
OPTIMIZATION LAYER
FUSED KERNELS
CUTEDSL & TRITON
GPU
MORE THROUGHPUT
Custom fused kernelsReduced launch overheadBetter memory movementGPU-aware optimization
04 / PERFORMANCE

Less waiting.
More inference.

Measured on representative workloads. Your mileage may vary.

GPU / DEVICE
MODEL / WORKLOADBASELINEGHOSTSPEEDUP
01RF-DETR Base842 ms168 ms5.0×
02RF-DETR Large1420 ms390 ms3.6×
03Batch 82840 ms910 ms3.1×
05 / THE GHOST APPROACH

You shouldn't need to
rewrite your model to
use better kernels.

RF-DETR users interact with the same familiar Python API. Ghost handles the low-level optimization layer underneath.

See how it works
APPLICATIONYour existing
RF-DETR code
GHOSTDrop-in compatibility
+ optimized paths
GPUCUTEDSL & TRITON
fused kernels
06 / GET STARTED

Try Ghost in
30 seconds.

Install it next to your existing project. No migration guide required.

your_existing_rfdetr_script.py
$ pip install rfdetr-ghost

# before
from rfdetr import RFDETRBase

# after
from rfdetr_ghost import RFDETRBase

$ python your_existing_rfdetr_script.py
07 / WHY “GHOST”?

Invisible to your application.
Very visible on the benchmark.

Ghost operates beneath the API surface, replacing expensive paths with optimized implementations while keeping the developer experience familiar.

08 / OPEN SOURCE

Built in
the open.

Explore the source
CONTRIBUTION ACTIVITY LAST 12 MONTHS
READY WHEN YOU ARE

Your RF-DETR code
already works.

Make it faster.

Drop-in API · Custom kernels · Open source