File size: 2,333 Bytes
d033c0d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
license: other
tags:
  - research-artifacts
  - sampling
  - boltzmann
library_name: pytorch
---

# drift-sampler artifacts

Recorded training checkpoints for an ongoing research project on **one-step
samplers for unnormalized Boltzmann targets** `p(x) ∝ exp(-E(x))`.

**68 files, 3.2 GB.** This repository is a storage backend, not a released
model. On its own it does very little: the weights are only meaningful together
with the training/inference code, which is not public.

## What this is

Checkpoints from three eras of the project, laid out exactly as the code repo
expects them:

| prefix | count | what |
|---|---|---|
| `checkpoints/blessed/` | 34 | 2026-06, RTX 5090 workstation |
| `checkpoints/hpc_2026-07/` | 30 | 2026-07-29 → 08-01, NUS Hopper H200 benchmark suite |
| `checkpoints/aldp/` | 4 | 2026-07-31 alanine-dipeptide pipeline run-through |

They are kept because they are **not reproducible**: the trainer never set
`deterministic=True`, and these runs degrade late, so the best weights exist
only in an intermediate checkpoint that re-running does not recover.

## What this is NOT

- **No code.** No model definition, no drift kernel, no training loop.
- **No method configuration.** The checkpoints carry no `hyper_parameters`
  block — none of the kernel scales, drift coefficients, or objective weights
  that define the method are present. Only tensors, optimizer state, and
  PyTorch-Lightning bookkeeping.
- **No datasets.** These are target-density benchmarks; there is no training
  data. The energy function is the only access to the target.
- **No paper.** The method is unpublished.

Consequently a `state_dict` here tells you tensor shapes and little else.

## Usage

Fetched by the (private) code repository's own tooling, which verifies every
file against a sha256 index:

```bash
python scripts/artifacts.py pull
python scripts/artifacts.py verify
```

Direct download works too, but the paths are only meaningful inside that repo.

## Provenance and contact

Produced on the NUS Hopper cluster (PBS, H200) and an RTX 5090 workstation.
Per-file provenance — which run produced which weight, and which reported
number it corresponds to — lives in the code repository, not here.

This is research work in progress. If you want to use or cite any of it, please
get in touch first.