Closed zhao-lun closed 3 years ago
Hi. thank you for this amazing wrapper for TF2.x.
struct A { std::vector<cpp_flow> models; void make_model(const std::string& path){ models.emplace_back(std::move(cppflow::model model(path)); } }; int main() { A; A.make_model("abc"); A.make_model("def"); return 0; }
Consider the above snippet, is it fine for multiple model design?
Multiple model serving is probably dependent on TensorFlow and even CUDA internals.
TensorFlow
CUDA
Hi. thank you for this amazing wrapper for TF2.x.
Consider the above snippet, is it fine for multiple model design?