# firekit **Repository Path**: mirrors_olihawkins/firekit ## Basic Information - **Project Name**: firekit - **Description**: A library of classes and functions for working with PyTorch. - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-08-22 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # firekit Firekit is a library of classes and functions for training and evaluating PyTorch models. The main focus of the library is a `Trainer` class that performs the standard training and evaluation loops, reports the training and evaluation loss and the evaluation performance on user-defined metrics, saves the model state when performance improves, and reloads the best model at the end of training. This project exists to support my work. It is in active development and the API is not stable. ## Installation Install with `pip` or `pipenv` in the normal way. ```zsh pip install firekit ``` Use the `---index-url` argument to install an older version of PyTorch for CUDA as a dependency. For example, use the following to get PyTorch with CUDA 11.8. ```zsh pip install firekit --index-url https://download.pytorch.org/whl/cu118 ```