dnotitia-NIAH

(★ 12)

Enhanced multi-needle retrieval testing framework for evaluating LLM long-context understanding capabilities

File Explorer

  • .gitignore
  • Needle_vis_llm.py
  • PaulGrahamEssays_kimchi_ingredients_qwen_qwen3-30b-a3b-thinking-2507_heatmap.png
  • PaulGrahamEssays_kimchi_ingredients_qwen_qwen3-30b-a3b_heatmap.png
  • README.md
  • requirements.txt
  • run_llm_multi_needle_test.py
  • runme.sh

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

uv pip

View Details ▼

Provides pip-like commands for installing, uninstalling, and managing packages.

uv pip install {{package}}

Install a package:

uv pip install {{[-r|--requirements]}} {{requirements.txt}}

Install packages from a requirements file:

uv pip install {{package==1.2.3}}

Install a package with a specific version:

// repository documentation