From 39a64587cacfb8efdcb566356322d1e25a6ff1a9 Mon Sep 17 00:00:00 2001 From: 16337 <1633794139@qq.com> Date: Mon, 16 Mar 2026 10:32:42 +0800 Subject: [PATCH] fix: add README.md and remove extra docs directory Co-Authored-By: Claude Sonnet 4.6 --- README.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..590251a --- /dev/null +++ b/README.md @@ -0,0 +1,51 @@ +# Qwen3.5-9B Benchmark + +Comprehensive benchmark suite for Qwen3.5-9B model performance testing. + +## Overview + +This project provides tools to evaluate: +- Inference speed and throughput +- Concurrency performance +- GPU memory usage +- Model accuracy on standard NLP tasks +- Hardware compatibility + +## Project Structure + +- `src/` - Core source code modules +- `tests/` - Unit tests +- `benchmarks/` - Benchmark execution scripts +- `results/` - Output directory for benchmark results +- `scripts/` - Utility scripts + +## Quick Start + +1. Install dependencies: + ```bash + pip install -r requirements.txt + ``` + +2. Configure environment: + ```bash + cp .env.example .env + # Edit .env as needed + ``` + +3. Download model: + ```bash + python scripts/download_model.py + ``` + +4. Run benchmarks: + ```bash + python run_benchmarks.py + ``` + +## Hardware Requirements + +See `docs/hardware_requirements.md` for detailed GPU compatibility information. + +## License + +MIT \ No newline at end of file