XerCis

Results 13 issues of XerCis

How to add cache in a async function? ```python import asyncio from pathlib import Path from beaker.cache import CacheManager from beaker.util import parse_cache_config_options cache_opts = { 'cache.type': 'file', 'cache.data_dir': Path(__file__).parent...

Such as MongoDB ```python from beaker.cache import CacheManager from beaker.util import parse_cache_config_options cache_opts = { 'cache.type': 'ext:mongodb', 'cache.url': 'mongodb://localhost:27017/cache', 'cache.expire': 600 } cache = CacheManager(**parse_cache_config_options(cache_opts)) @cache.cache('fib') def fib(n): if n...

```python import pandas as pd ``` It should import a module

Hi, Thank you for your work. Could you please help me with the problem? ``` Generator pre-training Traceback (most recent call last): File "", line 1, in File "C:\Users\XerCis\AppData\Local\Programs\Python\Python36\lib\multiprocessing\spawn.py", line...

where is tesseract OCR? Thank you for your work!

I have a table in MySQL like this ```sql CREATE TABLE `user` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL,...

- [ ] Which backend do you use (TensorFlow or Theano) and what its version? TensorFlow - [ ] What version of Python? 3.6.4 - [ ] What version of...

### Branch main branch (1.x version, such as `v1.0.0`, or `dev-1.x` branch) ### Prerequisite - [X] I have searched [Issues](https://github.com/open-mmlab/mmaction2/issues) and [Discussions](https://github.com/open-mmlab/mmaction2/discussions) but cannot get the expected help. - [X]...

## Problem statement System: Win10 Version: Python 3.6.5 CUDA: 11.0 ```shell nvcc -V ``` nvcc: NVIDIA (R) Cuda compiler driver Copyright (c) 2005-2020 NVIDIA Corporation Built on Thu_Jun_11_22:26:48_Pacific_Daylight_Time_2020 Cuda compilation...

Windows
pip
Feature request

```python from simplenum import Enum class Colour(Enum): red green blue ``` In PyCharm, it will show errors like this. ![image](https://user-images.githubusercontent.com/40198281/203197778-4638b75a-4446-4392-bc49-2c836fa0bd6a.png) How to fix it?