tildebyte

Results 111 comments of tildebyte

The link is now pointing to the *wrong* notebook. I deleted the **install** notebook as part of the work on the binary installer - I don't think that many people...

@knoopx; > installing xformers is as easy as `conda install xformers -c xformers/label/dev`, at least on linux (pre-compiled binaries!). Not everyone uses Conda

I have no clue 🤷 It is, at the very least, bizarre that something is trying to load a .so...

> what's the reason for the pinned GFPGAN Verison? IDK, You'd have to ask @lstein

FWIW, my Windows test install of https://github.com/invoke-ai/InvokeAI/pull/1819#issuecomment-1340503828 can not only be moved (to a different drive, even), but even works when renaming the encompassing folder - all of which makes...

You probably want to fork this repo (in the github sense), commit your changes (in a more atomic fashion, rather than one huge commit), and then drop a pointer to...

Also, you could track your own issues there ;) The setters from your example above all yield `'Classifier' object has no attribute 'set_foo'` when used on the bvlc_googlenet model. Is...

Seems legit. I'll add it to #9 when I can test it. I'll also match the output file type to input as you suggested, and think about what to do...

I see what you're saying, but the existing save code looks like... ``` python def savearray(a, filename, fmt='png'): a = np.uint8(np.clip(a, 0, 255)) with open(filename, 'wb') as f: PIL.Image.fromarray(a).save(f, fmt)...

Right, I just spotted that myself and restructured things a bit.