Easily train and inference on your personal computer, no need for large scale clusters!
You need to select the appropriate command according to the system and CUDA version.
pip install bitsandbytes
pip install safetensors
pip install torch
pip install tqdm
EasyGPT/
├── data/
│ └── dialogues.txt (Training format example)
│
├── model/
│ └── ... (Model training save location)
│
├── train.py (Model training complete code)
├── chat.py (Model dialogue complete code)
└── ...