Haidra-Org / horde-worker-reGen

The default client software to create images for the AI-Horde
https://aihorde.net/
GNU Affero General Public License v3.0
93 stars 42 forks source link
ai ai-horde distributed-computing generative-ai volunteer-computing

AI Horde Worker reGen

Welcome to the AI Horde, a free and open decentralized platform for collaborative AI! The AI Horde enables people from around the world to contribute their GPU power to generate images, text, and more. By running a worker on your local machine, you can earn kudos which give you priority when making your own requests to the horde.

A worker is a piece of software that handles jobs from the AI Horde, such as generating an image from a text prompt. When your worker successfully completes a job, you are rewarded with kudos. The more kudos you have, the faster your own requests will be processed.

Not only does running a worker earn you kudos, it also helps support the AI Horde ecosystem and puts your GPU to work during idle cycles. Whether you're an artist looking to generate custom assets, a developer needing to process images at scale, or just someone excited about democratizing AI, the Horde has something to offer.

Table of Contents

Installing

If you haven't already, go to AI Horde and register an account, then store your API key somewhere secure. Treat your API key like a password. You will need it later in these instructions. This will allow your worker to gather kudos for your account.

Windows

Using git (recommended)

Use these instructions if you have installed git for windows.

This option is recommended as it will make keeping your repository up to date much easier.

  1. Open powershell (also referred to as terminal) or cmd from the start menu.

  2. Using cd, navigate to a folder that you want the worker installed in.

    • Note that the folder you are in will create a folder named horde-worker-reGen. This folder should not exist before you run the following commands.

    • If you want it to be installed in C:\horde\, run the following:

      cd C:\horde

      If the horde folder doesn't exist:

      cd C:\
      mkdir horde
      cd C:\horde
    • If you are using cmd and wish to install on a different drive, include the /d option, as so:

      cd /d G:\horde
  3. Run the following commands within the folder chosen (the folder horde if using the example above)

    git clone https://github.com/Haidra-Org/horde-worker-reGen.git
    cd horde-worker-reGen
  4. Continue with the Basic Usage instructions

Without git

Use these instructions if you do not have git for windows and do not want to install it. These instructions make updating the worker a bit more difficult down the line.

  1. Download the zipped version
  2. Extract it to any folder of your choice
  3. Continue with the Basic Usage instructions

Linux

This assumes you have git installed

Open a bash terminal and run these commands (just copy-paste them all together)

git clone https://github.com/Haidra-Org/horde-worker-reGen.git
cd horde-worker-reGen

Continue with the Basic Usage instructions

AMD

AMD now has been shown to have better support but for linux machines only - it's best to have linux installed directly on your machine. WSL support is highly experimental. You can now follow this guide using horde-bridge-rocm.sh and update-runtime-rocm.sh where appropriate.

If you are willing to try with your AMD card, join the discord discussion in the official discord.

Basic Usage

Configure

  1. Make a copy of bridgeData_template.yaml to bridgeData.yaml
  2. Edit bridgeData.yaml and follow the instructions within to fill in your details.

Suggested settings

Important Notes

To ensure a smooth experience running a worker, please keep the following in mind:

Models are loaded as needed and just-in-time. You can offer as many models as you want provided you have an SSD, at least 32gb of ram, and at least 8gb of VRAM (see Important Notes). Workers with HDDs are not recommended at this time but those with HDDs should run exactly 1 model. A typical SD1.5 model is around 2gb each, while a typical SDXL model is around 7gb each. Offering all models is currently around 700gb total and we commit to keeping that number below 1TB with any future changes.

Note: We suggest you disable any 'sleep' or reduced power modes for your system while the worker is running.

Updating

The AI Horde workers are under constant improvement. You can follow progress in our discord and get notifications about updates there. If you are interested in receiving notifications for worker updates or betas, go to the #get-roles channel and get the appropriate role(s).

The below instructions refers to horde-bridge or update-runtime. Depending on your OS, append .cmd for windows, or .sh for linux

  1. Shut down your worker by pressing Ctrl+C once and waiting for the worker to stop.

  2. Update this repo using the appropriate method:

You can double click the provided script files below from a file explorer or run it from a terminal like bash, cmd depending on your OS. The latter option will allow you to see errors in case of a crash, so it's recommended.

git method

Use this approach if you cloned the original repository using git clone

  1. Open a bash, cmd, or powershell terminal depending on your OS
  2. Navigate to the folder you have the AI Horde Worker repository installed if you're not already there.
  3. Run git pull

See Updating runtime

zip method

Use this approach if you downloaded the git repository as a zip file and extracted it somewhere.

  1. Delete the horde_worker_regen/ directory from your folder
  2. Download the repository from GitHub as a zip file
  3. Extract its contents into the same folder you have the AI Horde Worker repository installed, overwriting any existing files

See Updating runtime

Updating runtime

Warning: Certain antiviruses (including Avast) have been reported to interfere with the install. If you get the error curl: (35) schannel: next InitializeSecurityContext failed: CRYPT_E_NO_REVOCATION_CHECK when running this file, disable your antivirus, run the file again, and then re-enable your antivirus.

  1. Run the update-runtime script for your OS. This will update all dependencies if required.

    • Some updates may not require this and the update notification will tell you if this is the case.
    • When in doubt, you should run it anyway.
    • Advanced users: If you do not want to use mamba or you are comfortable with python/venvs, see README_advanced.md.
  2. Continue with Starting/stopping instructions below

Starting/stopping

Starting the worker

Note: The worker is a very system and GPU intensive program. You should not play video games or do other intensive tasks (such as image/video editing) whenever possible. If you would like to engage in those activities, either turn off the worker or configure it to use only small models at limited settings and closely watch your system monitor.

  1. If it's the first time you're installing, or when updates are required, see Updating for instructions.

  2. Run horde-bridge (.cmd for Windows, .sh for Linux).

    • AMD: Use the horde-bridge-rocm versions of the file.

Stopping the worker

Monitoring

While the worker is running, you can monitor its progress directly in the terminal. Look for logs indicating successful job completion, kudos earned, performance stats, and any errors.

For more detailed monitoring, check out the logs directory which contains daily log files.

Running with multiple GPUs

In the future you will not need to run multiple worker instances

To use multiple GPUs, each has to start their own instance. For Linux, you just need to limit the run to a specific card:

CUDA_VISIBLE_DEVICES=0 ./horde-bridge.sh -n "My awesome instance #1"
CUDA_VISIBLE_DEVICES=1 ./horde-bridge.sh -n "My awesome instance #2"

etc.

Be warned that you will need a very high (32-64gb+) amount of system RAM depending on your settings. queue_size and max_threads increase the amount of RAM required per worker substantially.

Custom Models

You can host your own image models on the horde which are not available in our model reference, but this process is a bit more complex.

To start with, you need to manually request the customizer role from the horde team. You can ask for it in the discord channel. This is a manually assigned role to prevent abuse of this feature.

Once you have the customizer role:

  1. Download the model files you want to host. Place them in any location on your system.

  2. Point your worker to their location and provide some information about them. In your bridgeData.yaml, add lines like the following:

    custom_models:
     - name: Movable figure model XL
       baseline: stable_diffusion_xl
       filepath: /home/db0/projects/CUSTOM_MODELS/PVCStyleModelMovable_beta25Realistic.safetensors
  3. Add the same "name" to your models_to_load.

If everything was set up correctly, you should now see a custom_models.json in your worker directory after the worker starts, and the model should be offered by your worker.

Note that:

Docker

You can find the docker images at https://hub.docker.com/r/tazlin/horde-worker-regen/tags.

See Dockerfiles/README.md for a detailed guide on the supported docker functionality.

See also README_advanced.md for further details on running the worker manually.

Support

For the latest info and troubleshooting help, check out the #local-workers channel in our Discord. The community is always happy to lend a hand!

Some common issues and their solutions:

If you encounter a bug or have a feature request, please open an issue on the repo. We appreciate your contributions!

Model Usage

Many models in this project use the CreativeML OpenRAIL License. Please read the full license here.