Skip to content

255BITS/sae-evolver

Repository files navigation

SAE Evolver

sae-evolver-logo

This project uses Sparse Autoencoders (SAE) and Evolutionary Algorithms to evolve selections of SAE that align towards objectives. It leverages the Groq API and implements custom evolution strategies to optimize chatbot behavior based on specified criteria.

About

This is an open research project originally created in the AI Tinkerers group in Denver. The goal of this project is to use combinations of SAE to get desired behaviors from base models, which can be specified through data - see the examples/*.yaml

Examples

  • Create a chatbot from a base model without RLHF
  • Create a model that only outputs JSON without strict grammar rules
  • Anything else you can imagine - see the examples/*.yaml

Features

  • Evolutionary algorithm for LLM SAE optimization
  • Integration with Groq API
  • Customizable criteria for SAE candidate evaluation
  • Population-based approach with elite selection
  • Configurable evolution parameters

Prerequisites

  • Python 3.7+
  • Groq API key

Installation

  1. Clone this repository:

    git clone https://github.com/255BITS/sae-evolver.git
    cd sae-evolver
    
  2. Install the required dependencies:

    pip install -r requirements.txt
    
  3. Set up your Groq API key as an environment variable:

    export GROQ_API_KEY=your_api_key_here
    

Usage

Run the main script sae_search.py with desired parameters. Here's an example:

python sae_search.py --cycles 10 --elite 5 --population 20 --initial-population 10 --criteria examples/happy-chatbot.yaml --model llama3-70b-8192 --coeff-start 30 --coeff-end 120

Parameters

  • --cycles: Number of evolution cycles (default: 10)
  • --elite: Number of elite candidates to preserve (default: 5)
  • --population: Total population size (default: 15)
  • --initial-population: Initial population size (default: 2)
  • --criteria: YAML file containing evolution criteria (default: "examples/sports_coach.yaml")
  • --model: Groq model to use (default: "llama-3.1-70b-versatile")
  • --coeff-start: Start of coefficient range (default: 40)
  • --coeff-end: End of coefficient range (default: 200)
  • --seed: Random seed for reproducibility (optional)

Project Structure

  • sae_search.py: Main script for running the evolution process
  • sae_evolution.py: Contains evolution-related functions (Candidate, breed, mutation, crossover, etc.)
  • examples/: Directory containing sample criteria YAML files
  • results/: Directory where evolution results are stored

How It Works

  1. The script initializes a population of chatbot candidates with random SAE configurations.
  2. For each evolution cycle:
    • Candidates are compared based on the specified criteria using the Groq API.
    • The best-performing candidates are selected as elites.
    • New candidates are generated through breeding, mutation, and crossover.
  3. The process repeats for the specified number of cycles.
  4. The final population is saved, and the best candidate is rendered in HTML.

Extras

Create an Example:

python3 metaprompt.py 'Expand a given word with vivid imagery'

Run Command Line REPL:

python3 steer_gamma_repl.py candidate examples/buick.yml

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Are you a researcher? We could use some help with studying this technique. It's available for anyone to build on. If you want to be nice reference this github repo.

Citation

  255labs.xyz · sae-evolver, 2024 · GitHub repository: https://github.com/255BITS/sae-evolver

License

MIT

References

About

Use evolution with sparse autoencoders

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages