| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
NOVA is a knowledge distillation system that extracts domain-specific knowledge and trains compact models while maintaining high performance.
# Build the Docker image
docker build -t nova .
# Run NOVA with Docker
docker run -it --rm \
-v $(pwd)/.nova_cache:/app/.nova_cache \
-e OPENROUTER_API_KEY=your_key_here \
nova distill \
--domain "computer_science" \
--prompt "Explain distributed systems" \
--architecture transformer_tiny# Clone the repository
git clone <repository-url>
cd nova
# Install dependencies
pip install -r requirements.txt
# Set up environment variables
export OPENROUTER_API_KEY=your_key_here
# Run NOVA
python -m nova.distillation.cli distill \
--domain "computer_science" \
--prompt "Explain distributed systems" \
--architecture transformer_tinytransformer_tiny: 60M parameters, optimized for efficiency
transformer_small: 250M parameters, balanced performance
python -m nova.distillation.cli distill \
--domain "computer_science" \
--prompt "Explain distributed systems" \
--architecture transformer_tinypython -m nova.distillation.cli listpython -m nova.distillation.cli info transformer_tinypytest tests/# Install development dependencies
pip install -r requirements-dev.txt
# Run linters
flake8 nova/
black nova/
isort nova/This project is licensed under the MIT License - see the LICENSE file for details.
| Back | FazBrowse Home | New Git URL |