serving icon indicating copy to clipboard operation
serving copied to clipboard

OneFlow Serving

Results 6 serving issues
Sort by recently updated
recently updated
newest added

@zzk0 @hjchen2 @mosout Hi, I'm confusing whether SetInputTensors and Execute functions serve for only one request or all the requests simultaneously. If they serve for all the requests, how is...

按照官方教程示例将模型以图形式保存后,部署至Triton服务中时出现异常。 程序: ```python import oneflow as flow import oneflow.nn as nn from flowvision.models.alexnet import alexnet class MyGraph(nn.Graph): def __init__(self, model): super().__init__() self.model = model def build(self, *input): return self.model(*input) if...