JoelKronander / TensorFlask

A simple webservice API for classifying MNIST digits from HTTP POST requests built using Flask and TensorFlow/Layer
Apache License 2.0
23 stars 6 forks source link

Does server need to load weight again after each request? #2

Open John1231983 opened 6 years ago

John1231983 commented 6 years ago

Thanks for your project. I would like to know about load trained weight. Does server need to load the trained weight of network for each request or it just loads 1 times before send the request? Because my project spends about 1 mins to load trained weight, so i expect it just load the trained weight when the program is initialization and stores in RAM or somewhere to ignore time consuming. Thanks