From 0f8e64834c0070e3a352ad24da4a206235204f1f Mon Sep 17 00:00:00 2001 From: Hayk Martiros Date: Thu, 22 Dec 2022 20:40:59 -0800 Subject: [PATCH] Tweak about page --- README.md | 4 ++-- pages/about.tsx | 31 ++++++++++++++++++++++--------- 2 files changed, 24 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 593e2af..e994c79 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ Riffusion is an app for real-time music generation with stable diffusion. Read about it at https://www.riffusion.com/about and try it at https://www.riffusion.com/. -* Web app: https://github.com/hmartiro/riffusion-app -* Inference server: https://github.com/hmartiro/riffusion-inference +* Web app: https://github.com/riffusion/riffusion-app +* Inference server: https://github.com/riffusion/riffusion * Model checkpoint: https://huggingface.co/riffusion/riffusion-model-v1 * Google Colab notebook: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1FhH3HlN8Ps_Pr9OR6Qcfbfz7utDvICl0?usp=sharing) * Gradio Web Demo: [![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/fffiloni/spectrogram-to-music) diff --git a/pages/about.tsx b/pages/about.tsx index 6403e97..c4b33f4 100644 --- a/pages/about.tsx +++ b/pages/about.tsx @@ -102,6 +102,19 @@ export default function Home() { All the same web UIs and techniques like img2img, inpainting, negative prompts, and interpolation work out of the box.

+ +

+ Code:{" "} + + https://github.com/riffusion/riffusion + +
+ Discord:{" "} + + https://discord.gg/yu6SRwvX4v + +

+

Spectrograms

An audio{" "} @@ -175,7 +188,7 @@ export default function Home() { , which has excellent modules for efficient audio processing on the GPU. Check out our audio processing code{" "} - + here . @@ -289,7 +302,7 @@ export default function Home() {

To address this, we smoothly interpolate between prompts and seeds in the latent space of the model. In diffusion models, the{" "} - + latent space {" "} is a feature vector that embeds the entire possible space of what @@ -355,14 +368,14 @@ export default function Home() {

- The huggingface{" "} + The Hugging Face{" "} diffusers{" "} library implements a wide range of pipelines including image-to-image and prompt interpolation, but we needed an implementation for interpolation combined with image-to-image conditioning. We implemented this pipeline, along with support for masking to limit generation to only parts of an image. Code{" "} - + here . @@ -409,20 +422,20 @@ export default function Home() {