Skip to content

Instantly share code, notes, and snippets.

View ypchen520's full-sized avatar
๐Ÿ€
Focusing

Yu-Peng Chen ypchen520

๐Ÿ€
Focusing
View GitHub Profile
@ypchen520
ypchen520 / stablediffusionwalk.py
Created October 28, 2023 14:20 — forked from karpathy/stablediffusionwalk.py
hacky stablediffusion code for generating videos
"""
stable diffusion dreaming
creates hypnotic moving videos by smoothly walking randomly through the sample space
example way to run this script:
$ python stablediffusionwalk.py --prompt "blueberry spaghetti" --name blueberry
to stitch together the images, e.g.:
$ ffmpeg -r 10 -f image2 -s 512x512 -i blueberry/frame%06d.jpg -vcodec libx264 -crf 10 -pix_fmt yuv420p blueberry.mp4
@ypchen520
ypchen520 / LLM.md
Created March 31, 2023 03:01 — forked from rain-1/LLM.md
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.