Eugenio Herrera-Berg

Results 13 comments of Eugenio Herrera-Berg

Hi @snow1929! Sorry for the delayed response. About 1): the models that you select are pre-trained stylegan models. Regarding 2): I'm not sure I understood what you meant. Are you...

Hey @snow1929! Ok, so the sections that deal with CLIP are the following: ```python # From the "Install libraries 🏗️" section !git clone https://github.com/openai/CLIP sys.path.append('./CLIP') import clip # From the...

[Here is a working Colab notebook](https://colab.research.google.com/github/ouhenio/minDALL-E_notebook/blob/main/minDALLE.ipynb), in case someone is looking for one.

I'm running the multiscale generation for every frame and then I join the resulting frames together. This is the command for every frame: ``` python ./neural_style.py -seed 100 \ -style_scale...

Hi @jamahun! It's easy to run the script for every image automatically, take a look into Python's [subprocesses](https://docs.python.org/3/library/subprocess.html). I don't have the code with me anymore (this issue is 2...

Ok I'm a dumb dumb, this was discussed and apparently solved [in another issue](https://github.com/salesforce/LAVIS/issues/298#issuecomment-1551792615).

In case anyone has trouble with this in the future, here are the steps I took to run InstructBLIP-7B: ## Download Llama This can be done quickly via `transformers` ```python...

@Don-Chad I'm using a 3090 with 24GB too, and at least the 7B model worked flawlessly. I haven't tried with bigger ones though.

hey @cinjon and @Johnson-yue, [here](https://github.com/ouhenio/null-text-inversion-colab) is a working version :)

Hey @Hades32! Thanks for pointing this out. I just realized that I developed this using Colab Pro. So my answer is no. I guess you could try with the `"fp16"`...