Mehdi Samsami

Results 8 comments of Mehdi Samsami

Hi. I had the same issue with the Outline client every time I installed another VPN client (e.g., Cisco AnyConnect, OpenVPN) on my Windows. The moment I uninstalled them, the...

> Same issue! Every time it happens, I fix it by reinstalling the program.

I'm having the same issue working on YOLOv7 for a face detection task. Here is the reported performance on the validation set during training: ``` Epoch gpu_mem box obj cls...

> There are two different part, the first one is that val in training time uses [iou thresh 0.7](https://github.com/WongKinYiu/yolov7/blob/main/train.py#L495), the second one is that padding parameter is calculated by batch...

Same problem with zsh here. None of the solutions I found in discussions seems to fix the problem permanently; sometimes they work, sometimes they don't!

> Thanks for filing the issue, @msamsami. > I agree that it's desirable for dynamic providers to support async method implementations. > Although I'm marking this as a feature request...

> Ah, that's right. Let me flip this back to a bug. Apart from that, is there a workaround for this that might help before bug fixing?

I used the following workaround for now (using `asyncio.run`): ```python class AccessPolicyProvider(ResourceProvider, _AzureRESTAPI): async def create_async(self, args) -> CreateResult: tenant_id, subscription_id, access_token = await self.get_access_token() .... return CreateResult("keyvault-access-policy-" + binascii.b2a_hex(os.urandom(8)).decode("utf-8"),...