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
Importing tensorflow takes a non-trivial amount of time; about 10s in my environment. This is inconvenient when running commands like rerank.print_config that would otherwise return (nearly) instantly.
To speed things up, we can use LazyLoader to avoid importing TF until it's actually used, such as when running a TF reranker.
The text was updated successfully, but these errors were encountered:
Importing tensorflow takes a non-trivial amount of time; about 10s in my environment. This is inconvenient when running commands like
rerank.print_config
that would otherwise return (nearly) instantly.To speed things up, we can use LazyLoader to avoid importing TF until it's actually used, such as when running a TF reranker.
The text was updated successfully, but these errors were encountered: