Inference at Scale
Running inference on terabyte-scale imagery.
Model Export
First, export the model to ONNX or TorchScript for speed.
from ununennium.export import to_torchscript
scripted_model = to_torchscript(model, example_input)
scripted_model.save("model.pt")
Parallel Inference
Use Writer to stitch tiles asynchronously.