@@ -168,8 +168,9 @@ def modelstore(
168
168
minbatch : int
169
169
Minimum number of samples required in a batch for model execution
170
170
minbatchtimeout : int
171
- The max number of miliseconds for which the engine will not trigger an execution if the number of samples
172
- is lower than minbatch (after minbatchtimeout is passed, the execution will start even if minbatch jas not reached)
171
+ The max number of miliseconds for which the engine will not trigger an execution
172
+ if the number of samples is lower than minbatch (after minbatchtimeout is passed,
173
+ the execution will start even if minbatch jas not reached)
173
174
tag : AnyStr
174
175
Any string that will be saved in RedisAI as tag for the model
175
176
inputs : Union[AnyStr, List[AnyStr]]
@@ -225,7 +226,8 @@ def modelset(
225
226
outputs : Union [AnyStr , List [AnyStr ]] = None ,
226
227
) -> str :
227
228
"""
228
- Similar to modelstore (this is the deprecated version that will not be supported in future versions).
229
+ Similar to modelstore (this is the deprecated version that will not be
230
+ supported in future versions).
229
231
230
232
Example
231
233
-------
@@ -317,11 +319,12 @@ def modelexecute(
317
319
Tensor(s) which is already saved in the RedisAI using a tensorset call. These
318
320
tensors will be used as the inputs for the modelexecute
319
321
outputs : Union[AnyStr, List[AnyStr]]
320
- keys on which the outputs to be saved. If those keys exist already, modelexecute
321
- will overwrite them with new values
322
+ keys on which the outputs to be saved. If those keys exist already,
323
+ modelexecute will overwrite them with new values
322
324
timeout : int
323
325
The max number on milisecinds that may pass before the request is prossced
324
- (meaning that the result will not be computed after that time and TIMEDOUT is returned in that case
326
+ (meaning that the result will not be computed after that time and TIMEDOUT
327
+ is returned in that case
325
328
326
329
Returns
327
330
-------
@@ -352,7 +355,8 @@ def modelrun(
352
355
outputs : Union [AnyStr , List [AnyStr ]],
353
356
) -> str :
354
357
"""
355
- Similar to modelexecute (this is the deprecated version that will not be supported in future versions).
358
+ Similar to modelexecute (this is the deprecated version that will not be
359
+ supported in future versions).
356
360
357
361
Example
358
362
-------
0 commit comments