serving
Here are 78 public repositories matching this topic...
-
Updated
Jul 8, 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
Jul 3, 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.
I've noticed that there is an error in the code:
https://github.com/pytorch/serve/blob/a4d5090e114cdbeddf5077a817a8cd02d129159e/ts/model_loader.py#L92
There is an attempt to read the MANIFEST.json file, and there is use of the / charecter which used as a seperator in the Linux os, and in Windows there is use of the back-slash \, so this line creates always an invalid path so the loader d
-
Updated
Jan 7, 2022 - Python
-
Updated
May 26, 2022 - Python
-
Updated
Jan 3, 2021 - JavaScript
BUG:operator数组越界异常
midped_batch = []
for idx in range(len(feed_batch)):
predict_res, error_code, error_info = func_timeout.func_timeout(
self._timeout,
self.process,
args=([feed_batch[idx]], typical_logid))
#midped_batch[idx].append
-
Updated
Jul 8, 2022 - C++
-
Updated
Jul 5, 2022 - Python
-
Updated
Jul 6, 2022 - Python
-
Updated
Jan 24, 2022 - Mustache
-
Updated
Jul 8, 2022 - Python
-
Updated
Jul 8, 2022 - Java
-
Updated
Jul 6, 2022 - JavaScript
-
Updated
Apr 12, 2022 - Java
-
Updated
Nov 7, 2021 - C++
-
Updated
Jul 22, 2020
-
Updated
Jan 1, 2020
-
Updated
Mar 31, 2022 - Java
-
Updated
Jun 9, 2022 - C++
-
Updated
Jun 18, 2022 - Python
The format of current master branch UDF output, eva-reuse and my SSD object detector is different. Need a sync format.
-
Updated
Nov 2, 2017 - Scala
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."

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.


What happened + What you expected to happen
When initializing a Ray Trainer, we provide a
logdirargument, and the__init__method of the Trainer stores it as alogdirclass variable.Then, when creating a Trainable with
Trainer.to_tune_trainable(), it in-turn calls_create_tune_trainable(), which does not useself.logdir. So whentune_functionis defined inside `_create_tu