lastgeyan commited on
Commit
1e558c0
·
verified ·
1 Parent(s): 8291e33

README: drop project-specific references

Browse files
Files changed (1) hide show
  1. README.md +4 -5
README.md CHANGED
@@ -16,7 +16,7 @@ size_categories:
16
  Precomputed [UMT5-XXL](https://huggingface.co/google/umt5-xxl) text embeddings for the
17
  **1,039,891 unique task prompts** of the RoboTwin 2.0 3D dataset
18
  ([`flex-pi/robotwin_3d`](https://huggingface.co/datasets/flex-pi/robotwin_3d)), as consumed by
19
- Wan2.2-TI2V-5B / FastWAM. Precomputing these costs substantial GPU time; this cache skips it.
20
 
21
  ## Cache key
22
 
@@ -50,13 +50,12 @@ keys in row order):
50
  | `masks` | `[N, 128]` | `bool` |
51
 
52
  `masks` marks valid tokens (mean 40.9 of 128). Values past the mask are raw T5 outputs rather than
53
- zeros. FastWAM zeroes them on load (`context[~mask] = 0`); do the same if your model does not apply
54
- the mask.
55
 
56
  ## Converting back to the per-file `.pt` layout
57
 
58
- FastWAM reads a flat directory of `{key}.t5_len128.wan22ti2v5b.pt` files, each a `{"context", "mask"}`
59
- dict, rather than shards. This script reconstructs that layout:
60
 
61
  ```python
62
  # unpack_to_pt.py -- rebuild the flat .pt cache from the sharded release.
 
16
  Precomputed [UMT5-XXL](https://huggingface.co/google/umt5-xxl) text embeddings for the
17
  **1,039,891 unique task prompts** of the RoboTwin 2.0 3D dataset
18
  ([`flex-pi/robotwin_3d`](https://huggingface.co/datasets/flex-pi/robotwin_3d)), as consumed by
19
+ Wan2.2-TI2V-5B. Precomputing these costs substantial GPU time; this cache skips it.
20
 
21
  ## Cache key
22
 
 
50
  | `masks` | `[N, 128]` | `bool` |
51
 
52
  `masks` marks valid tokens (mean 40.9 of 128). Values past the mask are raw T5 outputs rather than
53
+ zeros. Zero them on load (`context[~mask] = 0`) if your model does not apply the mask.
 
54
 
55
  ## Converting back to the per-file `.pt` layout
56
 
57
+ The training pipeline reads a flat directory of `{key}.t5_len128.wan22ti2v5b.pt` files, each a
58
+ `{"context", "mask"}` dict, rather than shards. This script reconstructs that layout:
59
 
60
  ```python
61
  # unpack_to_pt.py -- rebuild the flat .pt cache from the sharded release.