Skip to content

Latest commit

 

History

History
71 lines (49 loc) · 2.29 KB

README.md

File metadata and controls

71 lines (49 loc) · 2.29 KB

Project Intro.

Project Structure

DeepFX_TechStacks drawio (2)

How To Use

  1. Pull all Repositorys down below

  2. Run

    • Run riffusion Server

      #Config Python Interpreter
      conda create --name riffusion python=3.9
      conda activate riffusion
      
      #Install Dependency
      python -m pip install -r requirements.txt
      
      #If use other audio format rather than wav
      sudo apt-get install ffmpeg          # linux
      brew install ffmpeg                  # mac
      conda install -c conda-forge ffmpeg  # conda
      
      #Install CUDA or MPS(Mac OS)
      import torch
      torch.cuda.is_available()
      
      import torch
      torch.backends.mps.is_available()
      
      #Run Server
      python -m riffusion.server --host 127.0.0.1 --port 3013
    • Run ModelServer

      python -m flask run
    • Run React front

      npm install
      npm start

    Tech Specs

    https://docs.google.com/document/d/1qotuIHmA7SG-tmzc72LIyeCAGMo8daNc/edit?usp=sharing&ouid=107720925454306190388&rtpof=true&sd=true

    Contributers