Jakub Kolar

Results 10 comments of Jakub Kolar

Just add the `qt-material` folder to export with `--add-data "path/to/folder/qt_material/"`

Hi @YeisonCardona I'm sorry for not responding lately. Here's an example code of QLineEdit with a placeholder: ``` #!/usr/bin/python import sys from PyQt5.QtWidgets import (QApplication, QLabel, QLineEdit, QVBoxLayout, QWidget) import...

I added another LineEdit it behaves the same way as the first one. Here's an example using self.showMinimized(): ![image](https://user-images.githubusercontent.com/72486584/104108419-d412c680-52c4-11eb-8947-282f6ebd9732.png)

And, I just witnessed a very weird thing which I'm not very sure how to interpret. I'm using two monitors and when I click at something on the second one...

Since `material.css.template` is overriding some font-sizes, widget sizes etc. there are two possible solutions: 1. Find the problematic widget in `material.css.template` file (can be found in qt_material/material.css.template) and delete or...

Try downgrading to version 3.3.1

For me as well, it gets right like one out of hundred captchas right but at the end of the day it's still faster than normal download from uloz.to On...

The code is based on [guided diffusion by OpenAI](https://github.com/openai/guided-diffusion) where there is [an option](https://github.com/openai/guided-diffusion/blob/22e0df8183507e13a7813f8d38d51b072ca1e67c/guided_diffusion/gaussian_diffusion.py#L625) to use DDIM. The line you mentioned is probably just a fragment of the old code...

@StonyB During the process of reusing the OpenAI repo for inpainting many unnecessary functions were removed (DDIM etc). If you need this functionality you would have to manually add them...