jsingh commited on
Commit
cb2fe72
·
verified ·
1 Parent(s): 46adcef

Delete README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +0 -20
README.md DELETED
@@ -1,20 +0,0 @@
1
- # nanogen-evals-stats
2
-
3
- Reference (mu, Sigma) moments for ImageNet-256, computed per feature extractor.
4
- Used by [`fd_evaluator`](https://github.com/nanovisionx/nanogen-evals/tree/main/fd_evaluator).
5
-
6
- | file | extractor | mu shape | sigma shape |
7
- |---|---|---|---|
8
- | `jit_in256_stats.npz` | InceptionV3 FID-JiT | (2048,) | (2048, 2048) |
9
- | `guided_diffusion_stats.npz` | InceptionV3 FID-ADM (ref for FDR6 valFD=1.68) | (2048,) | (2048, 2048) |
10
- | `convnext_in256_t224_stats.npz` | convnextv2_base.fcmae_ft_in22k_in1k | (1024,) | (1024, 1024) |
11
- | `vit_large_patch14_dinov2_lvd142m_in256_t256_stats.npz` | DINOv2 ViT-L cls | (1024,) | (1024, 1024) |
12
- | `vit_large_patch16_224_mae_in256_t224_stats.npz` | MAE ViT-L cls | (1024,) | (1024, 1024) |
13
- | `vit_so400m_patch16_siglip_256_v2_webli_in256_t224_stats.npz` | SigLIP SO400M attn-pool | (1152,) | (1152, 1152) |
14
- | `vit_large_patch14_clip_224_openai_in256_t256_stats.npz` | CLIP ViT-L cls | (1024,) | (1024, 1024) |
15
-
16
- Each npz contains keys `mu` and `sigma`. Loaded via `fd_evaluator.stats.load_moments`.
17
-
18
- Provenance: stats computed by the FD-Loss authors (Zheng et al., NYU). Mirrored
19
- here so `fd_evaluator` can `hf_hub_download` them rather than requiring users to
20
- rsync from a local FD-Loss checkout.