Store ONNX Models in PostgreSQL with Django

I am working on a Django project where I need to store ONNX models in a PostgreSQL database. Currently, I am considering using a BinaryField to store the model files as blobs, but I get a memory error.

Is there a more efficient or Django-friendly approach to storing ONNX models in PostgreSQL?

Вернуться на верх