serving
Here are 74 public repositories matching this topic...
-
Updated
Jan 25, 2022 - C++
... to make it easier to read Vespa documentation on an e-reader / offline
Vespa documentation is generated using Jekyll from .md and .html files, look into options for generating the artifact as part of site generation (there might be plugins we can use here)
-
Updated
Jan 22, 2022
The documentation for creating complex inference graphs should include what components can be connected to what, and how the overall graph should behave.
For example, all inference graphs need to end with a single node, whether its a combiner combining multiple inputs, or a transformer, or a model--the graph can't split and then never rejoin, etc.
-
Updated
Jan 7, 2022 - Python
-
Updated
Nov 8, 2021 - Python
-
Updated
Jan 3, 2021 - JavaScript
多模型共用TaskExecutor的疑问
ReloadableInferEngine::proc_initialize中使用TaskExecutor的是个单例,那么多个模型会一次去设置、启动同一个TaskExecutor;
在调用schedule()之后,TaskExecutor如何确定去调用哪个模型呢?
Http方式部署thread参数不起作用
这里的or前后顺序写反了
-
Updated
Jan 18, 2022 - Python
-
Updated
Jan 24, 2022 - Mustache
-
Updated
Jun 4, 2021 - Python
-
Updated
Apr 26, 2021 - Java
-
Updated
Jan 24, 2022 - Python
-
Updated
Jul 22, 2020
-
Updated
Nov 7, 2021 - C++
-
Updated
Jan 1, 2020
-
Updated
Jan 25, 2022 - Java
-
Updated
Jan 13, 2022 - Java
-
Updated
Apr 21, 2021 - C++
-
Updated
Nov 2, 2017 - Scala
An update for EVA installation guide (especially for Win10/Win11 users).
-
Updated
Mar 4, 2021 - Python
-
Updated
Jul 5, 2021 - Python
-
Updated
Jan 5, 2022 - TypeScript
-
Updated
Jun 28, 2021 - Jupyter Notebook
Improve this page
Add a description, image, and links to the serving topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the serving topic, visit your repo's landing page and select "manage topics."
Problem: Currently
JsonLoggerCallback.handle_resultwill load in the entirety of the existing results, append the new result, and then rewrite the entire file. This may not scale when running long-running jobs or jobs with large results.https://github.com/ray-project/ray/blob/4e8f90aca20aa7bb87a4e84039889444824382ca/python/ray/train/callbacks/logging.py#L138-L142
Potential Fix: