Deploying Models
Nội dung này hiện chưa có sẵn bằng ngôn ngữ của bạn.
Models run on the Xisom runtime in ONNX format. You upload a model, pair it with an input datasource, and activate it to start inference.
Supported format
Section titled “Supported format”- ONNX — the runtime accepts ONNX models and executes them with the execution provider that matches your hardware (TensorRT, CUDA, or CPU). See Hardware Setup for the modes.
Upload, pair, activate
Section titled “Upload, pair, activate”-
Upload the model
Section titled “Upload the model”Go to Models and upload your
.onnxfile. The platform validates the file (extension, type, and schema) before it is available. -
Pair it with a datasource
Section titled “Pair it with a datasource”On an input datasource, pair this model. The compatibility check runs here — if the window size or feature count disagrees, the pairing is rejected. Adjust the datasource window size or regenerate the model to match.
-
Activate
Section titled “Activate”Enable the datasource, then Start streaming. The runtime loads the paired model into the inference service and begins producing predictions. See Your First Inference for the full loop.
Replacing the demo seed model
Section titled “Replacing the demo seed model”A fresh install ships a demo model with random weights — predictions are meaningless until you replace it. Upload your trained model as above, or drop it into the model-data directory and restart the inference service. The offline-bundle install page covers the file-drop path: Replace the demo model (step 5).
If something goes wrong
Section titled “If something goes wrong”- Upload rejected, pairing fails, or the runtime won’t load the model — see the Troubleshooting runbook.