cornellius-gp/gpytorch

A highly efficient implementation of Gaussian Processes in PyTorch

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 25 minutes ago
Added to GitGenius on September 17th, 2026
Created on June 9th, 2017
Open Issues & Pull Requests: 422 (+0)
GitHub issues: Enabled
Number of forks: 602
Total Stargazers: 3,913 (+0)
Total Subscribers: 53 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 2.2 days
Mean response time: 117.4 days
90th percentile: 317.4 days
Tracked items: 79

Most active contributors

Sign in to see contributor activity.

How this project is maintained

87% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Three people close 67% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 60
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 963 days
Stale 30+ days: 56
Stale 90+ days: 54

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • bug (49)
  • enhancement (13)
  • documentation (8)
  • help wanted (7)
  • good first issue (5)
  • question (5)
  • multitask (4)
  • extending gpytorch (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

GPyTorch is a Gaussian process library implemented in PyTorch that enables scalable, flexible, and modular GP models with GPU acceleration.

The library addresses the computational challenges of Gaussian process inference by using numerical linear algebra techniques like preconditioned conjugate gradients rather than traditional Cholesky decomposition approaches. This design choice yields significantly better GPU utilization. The core abstraction is the LinearOperator interface, which allows users to implement scalable GP methods by providing a matrix multiplication routine with the kernel matrix and its derivative, or by composing existing LinearOperators. This modular approach makes it straightforward to implement both established scalable techniques and recent algorithmic advances.

GPyTorch suits researchers and practitioners building GP models who need GPU acceleration and want to leverage modern deep learning frameworks. The library is particularly valuable for those working with large datasets or requiring state-of-the-art scalability methods, as it provides implementations of techniques like SKI/KISS-GP, stochastic Lanczos expansions, LOVE, SKIP, stochastic variational inference, and deep kernel learning. Its tight integration with PyTorch makes it a natural choice for projects combining Gaussian processes with neural networks or other deep learning components.

The project maintains an active test suite and comprehensive documentation with tutorials and examples. Development follows a structured contribution process with guidance for those submitting pull requests, including instructions for manual installation of development versions.