DLumi
DLumi
> I think there is no point in using `--update` in collaboration with `--sync` If you omit `--update` then the outputs in .ipynb would be overwritten. Well, at least that...
Found a workaround. Just use Pyrogram's Client() functions to send a message. The code should be like this: ```python async with controller.collect(count=1) as response: await client.send_message(bot_id, text='Test text') ``` But...
On an unrelated note, it'd be cool to have a method that looks for the inline button and returns the button's index. Thus I won't have to change all the...
> @DLumi Not sure about the button by index suggestion, what's the use case? How is the index important? :) Well, just as I told you: you can search buttons...
Hi @Kromtar. Any luck in reworking the original codebase? I tried to mess around with your ONNX models, but it didn't get me far without proper pre/postprocessing steps. I tried...
You probably want something like this? It would get you a random word-like jibberish, but it could be anough for your purposes. https://github.com/Belval/TextRecognitionDataGenerator/issues/63
I feel like setting ```fit``` to **False** actually reduces the number of errors with the dates: I got about 6 per 250 images (compare it with every 3rd or 4th...
@rstz What do you mean by "Tensorflow does currently not support Windows"? You can install CPU version of the package just fine on Windows. Yeah, if you need GPU support...
Yes, managed to circumvent this with factories, but I still think that should be configurable out of the box, especially when the documentation regarding hooks and factories is not very...
Thank you for detailed answer! I can totally see your reasoning for avoiding this behavior as default. However, I still think it should be implemented in some form or other,...