jsingh commited on
Commit
f585201
·
verified ·
1 Parent(s): 2af3e0b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RAEv2-artifacts
2
+
3
+ Pre-computed generation NPZs from RAEv2 stage-2 models. Each `*.npz` is
4
+ 50000 x 256 x 256 x 3 `uint8` NHWC RGB samples under key `arr_0`.
5
+
6
+ | file | task | encoder | gFID |
7
+ |---|---|---|---:|
8
+ | `imagenet-dinov3l-k7.npz` | ImageNet 256, label-conditional | DINOv3-L k=7 (MLS last 7 layers) | 1.025 |
9
+
10
+ ## Usage
11
+
12
+ Compute the full metric suite (`gfid`, `fdr6`, `mind6`, ...) without
13
+ re-running distributed sampling:
14
+
15
+ ```bash
16
+ hf download nanovisionx/RAEv2-artifacts --repo-type dataset \
17
+ --include imagenet-dinov3l-k7.npz --local-dir artifacts/
18
+
19
+ EXPERIMENT_NAME=imagenet-dinov3l-k7 uv run python src/offline_eval.py \
20
+ --config configs/stage2/sampling/imagenet-dinov3l-k7.yaml \
21
+ --npz artifacts/imagenet-dinov3l-k7.npz
22
+ ```
23
+
24
+ See the [main repo](https://github.com/nanovisionx/RAEv2) for the model code
25
+ and yaml configs.