Refactor autopilot workflows and documentation: Update .gitignore to include binary and media file types, enhance agent command references in documentation, and modify annotation class for improved accessibility. Adjust inference processing to handle batch sizes and streamline test specifications for clarity and consistency across the system.

This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-25 05:26:19 +02:00
parent a5fc4fe073
commit 4afa1a4eec
29 changed files with 447 additions and 362 deletions
+13
View File
@@ -0,0 +1,13 @@
from inference_engine cimport InferenceEngine
cdef class OnnxEngine(InferenceEngine):
cdef public object session
cdef object model_inputs
cdef str input_name
cdef object input_shape
cdef tuple get_input_shape(self)
cdef int get_batch_size(self)
cdef run(self, input_data)