You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi (making this a github issue by Daniil's request)
I've been working on making an interactive version of this system so that it can be queried via a web API. I'm having some issues with the pipeline as the sentence ensemble currently only loads one model into memory at a time which means that querying my API takes about 20 minutes to swap between all the models.
Is it possible to load all the models into memory at once? I get issues with tensorflow variable scoping which makes it difficult to do: I was thinking of doing something very simple with the following changes:
Hi (making this a github issue by Daniil's request)
I've been working on making an interactive version of this system so that it can be queried via a web API. I'm having some issues with the pipeline as the sentence ensemble currently only loads one model into memory at a time which means that querying my API takes about 20 minutes to swap between all the models.
I've been working in this file: https://github.com/j6mes/fever-athene-system/blob/master/src/athene/system.py
Is it possible to load all the models into memory at once? I get issues with tensorflow variable scoping which makes it difficult to do: I was thinking of doing something very simple with the following changes:
Original
Changed
The text was updated successfully, but these errors were encountered: