Skip to content

Latest commit

 

History

History
106 lines (75 loc) · 2.43 KB

File metadata and controls

106 lines (75 loc) · 2.43 KB

Getting Started

UI/UX Note:
All CLI output in Dataset Forge uses the Catppuccin Mocha color scheme for a consistent, visually appealing experience. All prompts, menus, and progress bars are styled using the centralized color utilities.

Welcome to Dataset Forge!
This guide will help you install and launch Dataset Forge for the first time.


Prerequisites


Installation

  1. Clone the repository:

    git clone https://github.com/Courage-1984/Dataset-Forge.git
    cd Dataset-Forge
  2. Set up the environment:

    Option A: Automated Installation (Recommended)

    # Windows (easiest)
    install.bat
    # or
    tools\install.bat
    
    # Or manually
    py -3.12 -m venv venv312
    venv312\Scripts\activate
    python tools\install.py

    Option B: Manual Installation

    py -3.12 -m venv venv312
    venv312\Scripts\activate
    python -m pip install --upgrade pip setuptools wheel
    # Install the correct CUDA-enabled torch/torchvision/torchaudio first!
    pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
    pip install -r requirements.txt
    pip install -e .

    Option C: Using setup.py directly

    py -3.12 -m venv venv312
    venv312\Scripts\activate
    python setup.py install

    Note: For other CUDA versions, see PyTorch Get Started.


First Run

./run.bat
OR
venv312\Scripts\activate
py main.py
OR
dataset-forge

Special Installation Notes


Need Help?


See Also