ButterCream

Results 20 comments of ButterCream

you should be able to use the torchvision library to save every tensor in the images list

```python from torchvision.utils import save_image for idx, image in enumerate(images): save_image(image, f"sample_{idx}.png") ``` edit: you should also be able to use the image .save function aswell

> ![a7ab6992-e07d-444e-982d-a8ffbfd29a6d](https://user-images.githubusercontent.com/8617095/185853915-44e6bd4f-d017-4364-8575-fb74b0b0e17e.png) > > i got this result missing somethink'S? Model isnt trained, Either wait for the pretrained models or train it yourself on something like a small subset of...

It doesn’t look like it, but it should be relatively easy to implement

> After some really tedious debugging and tackling various hidden problems, I managed to compile the whole module. This is the end result: https://github.com/DeXtmL/bitsandbytes-win-prebuilt > > The binaries are compiled...

[This](https://gbatemp.net/threads/nx-update-checker.557898/) is able to check A GitHub repo for game updates, perhaps some implementation of what you want to do here is possible using the same method? edit: it seems...

```python import requests def download_versions(): url = "https://raw.githubusercontent.com/16BitWonder/nx-versions/master/versions.txt" r = requests.get(url, allow_redirects=True) print(r.content) txt = open('versions.txt', 'wb') output = txt.write(r.content) txt.close() download_versions() ``` This should download everything (I made it...

I'm also very curious, since it's a pipeline change I'm not sure as to whether it's supported or not

> Hi @cloneofsimo , > > Thanks for your guidance very much. > > When you get the chance, would it be possible for you to check the following dataset...

Would still like to see this resolved for reducing friction between platforms