File size: 1,514 Bytes
83a780e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Hugging Face Upload Plan

Use the modern `hf` CLI, not deprecated `huggingface-cli`.

## Recommended Repos

Use two repos:

1. Model/reproducibility repo for this package:
   - checkpoints
   - code snapshot
   - derived cache archive
   - logs and metadata

2. Dataset repo for raw PanTS train/test package:
   - raw split archive
   - PanTS repo README/license
   - split/caption/canonical metadata

## Upload Model Package

```bash
cd /scratch/user/yuhwang/artifacts/twoframe/hf_upload/pants_wan22_b16_9k_step8000_20260523_100252
hf auth whoami
hf upload-large-folder Neuripsused/MA048181 . --type model --num-workers 8
```

For a private upload:

```bash
hf repos create Neuripsused/MA048181 --type model --private --exist-ok
hf upload-large-folder Neuripsused/MA048181 . --type model --num-workers 8
```

## Upload Raw Data Package

```bash
cd /scratch/user/yuhwang/artifacts/twoframe/hf_upload/pants_raw_train_test_20260523_102411
hf repos create Neuripsused/MA048181 --type dataset --private --exist-ok
hf upload-large-folder Neuripsused/MA048181 . --type dataset --num-workers 8
```

## Verify Before Upload

```bash
sha256sum -c SHA256SUMS.txt
find . -maxdepth 3 -type f | sort | sed -n '1,200p'
```

## Suggested Repo README Language

This artifact contains derived training cache and checkpoints. The raw PanTS source data is distributed separately because it is a much larger dataset-layer artifact. The last complete checkpoint is step 8000, with both EMA and non-EMA transformer weights available.