Skip to main content

AI-powered linter for scientific ML code. Detects methodology bugs such as data leakage, incorrect cross-validation, numerical instability, and reproducibility issues that produce plausible but wrong results. 66 detection patterns across 5 categories. Runs via local or institutional vLLM server, no cloud APIs.

Project description

scicode-lint

AI-powered linter for ML code written for scientific applications. Catches methodology bugs that traditional linters miss: the kind that quietly invalidate your results.

Runs locally on your GPU or institutional cluster. No cloud APIs, your code stays private, no unexpected GenAI bills.


TL;DR

Local LLM linter for scientific ML code. Catches data leakage, missing seeds, numerical bugs. Runs on your GPU (16GB+ VRAM), code stays private.

pip install scicode-lint                  # Use with remote vLLM server
# or
pip install scicode-lint[vllm-server]     # Run vLLM locally (16GB+ GPU)

scicode-lint lint train.py               # Check a file for issues

The Problem

Traditional linters catch syntax errors and style issues. They can't catch methodology bugs: the kind where code runs, tests pass, and results are still wrong. Data leakage. Missing random seeds. Silent numerical errors.

And it's getting harder with AI coding tools. These tools are trained on public repositories full of methodology mistakes: Kaggle notebooks with data leakage, tutorials that skip random seeds, Stack Overflow answers with broken cross-validation. The bugs transfer seamlessly into your codebase.

Built for scientists applying ML - biology, chemistry, physics, neuroscience, engineering, and beyond. You're an expert in your domain; catching ML methodology bugs isn't your day job. This tool fills that gap.


What It Does

Scans Python scripts and Jupyter notebooks for 66 patterns across five categories:

  • ai-training (19 patterns): data leakage, PyTorch training modes, gradient management, DataLoader configuration
  • ai-inference (12 patterns): missing eval mode, missing no_grad, device mismatches, CUDA timing, JIT tracing
  • scientific-numerical (10 patterns): float comparison, dtype overflow, catastrophic cancellation
  • scientific-performance (11 patterns): loops vs vectorization, memory inefficiency
  • scientific-reproducibility (14 patterns): missing seeds, CUDA non-determinism, unsorted iteration, pickle versioning

It tells you what's wrong and why it matters. No auto-fixes: you stay in control of your code.

Example Output

test_scaler.py — 1 issue found

🔴 CRITICAL [method fit_transform] ml-001: Issue detected
   Data leakage: scaler is fit on full data including test set.
   Model performance will be inflated. Use sklearn.pipeline.Pipeline
   so fitting happens inside each fold.

   Code: X_scaled = scaler.fit_transform(X)

Quick Start

Prerequisites

  • GPU with 16GB+ VRAM and native FP8 support (RTX 4060 Ti 16GB, RTX 4070+, RTX 4090, L4, etc.)
  • vLLM 0.17+ with RedHatAI/Qwen3-8B-FP8-dynamic (default model)

See INSTALLATION.md for detailed setup.

Installation

# With local vLLM server (runs on your GPU)
pip install scicode-lint[vllm-server]

# Or with remote vLLM server (e.g., university/institutional server)
pip install scicode-lint
scicode-lint lint my_code.py --vllm-url https://vllm.your-institution.edu

# For development
git clone https://github.com/ssamsonau/scicode-lint.git
cd scicode-lint
pip install -e ".[all]"

Start vLLM Server

Before running scicode-lint, start the vLLM server (skip if using remote server):

# Start vLLM server (auto-detects GPU, validates FP8 support)
scicode-lint vllm-server start

# Or run in background
nohup scicode-lint vllm-server start > /tmp/vllm.log 2>&1 &

The server auto-detects your GPU and configures optimal settings. First run downloads the model (~8GB).

Usage

# Check a file
scicode-lint lint train.py

# Check with specific pattern
scicode-lint lint my_pipeline.py --pattern ml-001

# Check Jupyter notebooks
scicode-lint lint analysis.ipynb

# Check by category
scicode-lint lint train.py --category ai-training

# Filter by severity
scicode-lint lint train.py --severity critical,high

Analyze a Repository

For entire repos, the analyze command clones, filters, and lints automatically:

# Analyze a GitHub/GitLab repo
scicode-lint analyze https://github.com/user/ml-project

# Analyze a local repo
scicode-lint analyze ./my_ml_project

Two-stage filter (runs automatically):

  1. ML import presence (instant) - skips files without sklearn/torch/tensorflow/etc.
  2. LLM classification - identifies complete workflows vs code fragments

Current Limitations

  • Single-file analysis only. Issues that span multiple files (like preprocessing done differently in train.py and test.py) are out of scope for now.
  • Requires a GPU with 16GB+ VRAM. Not practical for laptops or CPU-only setups. RTX 4060 Ti 16GB, RTX 4070+, RTX 4090, or L4 are the target hardware.

Project Status

Work in Progress (v0.2.2 alpha)

Test Type Precision Recall Description
Controlled tests 97.7% 97.0% Curated positive/negative test files per pattern (452 tests, 66 patterns)
Integration (LLM-generated) 58.0% 85.1% 50 Sonnet-generated scenarios with 148 planted bugs; 27 bonus TPs found
Labeled Kaggle notebooks 75% 55% Yang et al. ASE'22 dataset (pre label), human-labeled ground truth
Published papers (iteration) 62.0% - 32 repos analyzed (120 files); used for pattern refinement
Published papers (holdout) 54.1% - 17 repos analyzed (45 files); unseen during development

Example reports: real_world_demo/output_examples/


How It Works

Design philosophy: Middle ground between grep and SOTA cloud reasoning.

Traditional linters use grep-style pattern matching - fast but misses context. Cloud AI APIs offer deep reasoning but cost money, raise privacy concerns, and models get deprecated. scicode-lint uses a local LLM with thinking mode (RedHatAI/Qwen3-8B-FP8-dynamic, fits in 16GB VRAM via vLLM) that sits between these extremes:

  • Smarter than grep: Understands code structure, follows data flow, catches semantic issues
  • Reasoning capability: Uses thinking mode to analyze code behavior and intent, not just literal text
  • Local and private: Your code never leaves your machine, no API costs
  • Reproducible: Open-source models remain available; results stay consistent over time

How patterns run: Each pattern is a focused detection question in a TOML file. All 66 patterns run concurrently - vLLM's prefix caching means your code is processed once and shared across all checks. Processing N patterns takes approximately the time of 1 pattern.

Design goal: Patterns are grounded in official documentation (PyTorch docs, scikit-learn guides, NumPy API references). See ARCHITECTURE.md for technical details.


Documentation


Feedback Wanted

Early release. If you're a researcher applying ML to your domain:

  • Which patterns are missing from your field?
  • Which detections are too noisy to be useful?
  • What would make this fit your actual workflow?

Open an issue or start a discussion on GitHub.


Contributing

Each pattern lives in src/scicode_lint/patterns/{category}/{id}/ and needs:

  • pattern.toml: the detection question and warning message
  • Test files: examples of buggy code (positive), correct code (negative), and edge cases (context-dependent)

See CONTRIBUTING.md for the full guide.


Releasing

To create a new release (maintainers only):

  1. Update version in pyproject.toml
  2. Update CHANGELOG.md
  3. Commit and run: ./scripts/release.sh

The script checks prerequisites, builds the package, creates a git tag, and publishes a GitHub release.


Development Approach

GenAI-native development with Claude Code. Patterns are generated and iterated by AI agents within human-designed evaluation frameworks and quality gates.


License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scicode_lint-0.2.2.tar.gz (742.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scicode_lint-0.2.2-py3-none-any.whl (546.1 kB view details)

Uploaded Python 3

File details

Details for the file scicode_lint-0.2.2.tar.gz.

File metadata

  • Download URL: scicode_lint-0.2.2.tar.gz
  • Upload date:
  • Size: 742.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for scicode_lint-0.2.2.tar.gz
Algorithm Hash digest
SHA256 953ccd846590715ca7f0de7f638cae118dbecdd816b3cdb79bddbaccf4576ee2
MD5 a07aba27039b15b8cb44c483d4cfc3a1
BLAKE2b-256 ed842f0f9cb8a901e9f4d7be02869be6abc31a8f43974a678cd9835f9c2e878b

See more details on using hashes here.

File details

Details for the file scicode_lint-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: scicode_lint-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 546.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for scicode_lint-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0da48ad8dea0e5ca05aa9bf63f882166266d76eb84d550f6d45c67712b8d536d
MD5 084e4e2bca468d19d2ad87eaa6d338c3
BLAKE2b-256 fb6c711f03bdb4c74db0f2794778e900b21424106977da5feb1d1291428e40bb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page