elbaro

Results 33 issues of elbaro

**Describe the feature** Please provide the RTMdet models in ONNX. **Motivation** The pre-trained RTMdet models are only provided in pth. I am aware of the conversion script, but it is...

1. Unlimited sized Cache ```py @Memoize(Cache("unlimited"), timedelta(seconds=10 * 60)) def get(): ... ``` 2. Zero sized Cache (ignore returned value) ```py @Memoize(Cache("empty"), timedelta(seconds=10 * 60)) def update_global_dict(): value = query(..)...

I have an asyncio web server that uses ContextVar to contain per-request information. When a redis pool creates a new connection, it captures all ContextVar unrelated to redis. After the...