cobryan05

Results 17 comments of cobryan05

I have managed to mitigate (although not completely solve) this issue. I posted a more detailed explanation at the [StackOverflow link](https://stackoverflow.com/questions/64837376/how-to-efficiently-run-multiple-pytorch-processes-models-at-once-traceback) but basically try this: Download: https://gist.github.com/cobryan05/7d1fe28dd370e110a372c4d268dcb2e5 Install dependency: `python...

> Hello, Thanks for the solution, but doesnt seem to work now. I got hp Pavilion 15-EC2150AX laptop and the settings specified doesnt appear at my side. Any sort of...

modules\textual_inversion\image_embedding.py, insert_image_data_embed(), change ``` data_np_low.resize(next_size) data_np_low = data_np_low.reshape((h, -1, d)) data_np_high.resize(next_size) data_np_high = data_np_high.reshape((h, -1, d)) ``` to ``` np.resize(data_np_low,next_size) data_np_low = data_np_low.reshape((h, -1, d)) np.resize(data_np_high, next_size) data_np_high = data_np_high.reshape((h,...

I started running in to this (Win10) after changing pytorch versions while trying to troubleshoot a 'cuda not available' issue. `pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113` fixed it for me.

> Whenever you start the webui, your system-wide pip transformer installation gets downgraded to version 4.19.2 for no reason, breaking other apps. Using == in the requirements.txt ensures that you...

> while 15 other packages like einops, lark, kornia, realesrgan come with no version requirements. This seems quite inconsistent to me. Inconsistent? Welcome to open source 😆 I see: einops==0.4.1,...

IMHO, as long as you are specifying a specific version then I think a version bump would be an acceptable solution/improvement. If you've ran the new version locally and haven't...

``` Scanning for wifi networks, wait a second.. DEBUG:kasa.protocol:192.168.0.1 >> {"netif":{"get_scaninfo":{"refresh":1}}} DEBUG:kasa.protocol:Unable to query the device 192.168.0.1, retrying: DEBUG:kasa.protocol:192.168.0.1 >> {"netif":{"get_scaninfo":{"refresh":1}}} DEBUG:kasa.protocol:Unable to query the device 192.168.0.1, retrying: DEBUG:kasa.protocol:192.168.0.1 >>...

I got that when torch wasn't CUDA-enabled. Check if running > import torch > torch.cuda.is_available() returns TRUE in your python environment. If not, try installing pytorch from https://pytorch.org/get-started/locally/ .

Hmm, at some point during test print on my Galaxy S5 the camera stopped responding, so there are still some issues lurking.