tensorflow
loading multiple tensorflow 1.x models at once
Loading multiple tensorflow models at once in tf1.x causes problems because the operations in each model may have same name, and thus cause collision. While this can be avoided by manually giving unique names to tensors when developing a model, this is a cumbersome strategy. Another approach would be to Read more…