This repository contains the trained River vector-field weights used for longitudinal porcine wound-image forecasting.
The released artifact contains only the 102 project-trained River tensors. It deliberately excludes the 277 embedded VQ-MUSE autoencoder tensors found in the complete training checkpoint.
Users must obtain the matching VQ-MUSE model separately from:
This repository is currently private while public-release authority and licensing are being confirmed.
| Field | Value |
|---|---|
| File | wound_river_delta_v1.pth |
| Format | wound_forecasting_river_delta_v1 |
| Training step | 40000 |
| River tensors | 102 |
| Excluded VQ-MUSE tensors | 277 |
| Base autoencoder | Emma02/vqvae_ckpts |
The released model uses sparsely conditioned flow matching with a VQ-MUSE image representation.
Final vector-field configuration:
The complete portable configuration is provided in
river_final.yaml.
First construct the modified River model with the matching VQ-MUSE autoencoder. Then overlay the released River-only tensors:
import torch
package = torch.load(
"wound_river_delta_v1.pth",
map_location="cpu",
weights_only=False,
)
result = model.load_state_dict(
package["model"],
strict=False,
)
assert not result.unexpected_keys
assert all(
key.startswith("ae.")
for key in result.missing_keys
)
model.eval()
The missing ae.* keys are expected because the external VQ-MUSE
weights are intentionally excluded from this artifact.
https://github.com/bridenmj/wound-forecasting
https://github.com/araachie/river
The project uses a modified River implementation. The upstream
River source is distributed under GPL-3.0; its license is retained
as LICENSE_RIVER.txt. Inclusion of this notice documents upstream
provenance and does not assign a separate project-artifact license.
https://huggingface.co/Emma02/vqvae_ckpts
VQ-MUSE is an external dependency and is not mirrored in this repository.
At evaluation, four observed frames were used to autoregressively generate four future frames with 100 flow-integration steps.
This artifact is provided for research reproduction and study of flow-matching approaches to longitudinal image prediction.
The original project-trained weights released in this repository are licensed under the Creative Commons Attribution–NonCommercial 4.0 International license (CC BY-NC 4.0).
Third-party implementations, base models, tokenizers, and other external dependencies are not relicensed by this repository and remain subject to their respective licenses and terms. Any upstream license or notice files included in this repository continue to apply to the corresponding upstream materials.
4 commits
This repository contains the trained River vector-field weights used for longitudinal porcine wound-image forecasting.
The released artifact contains only the 102 project-trained River tensors. It deliberately excludes the 277 embedded VQ-MUSE autoencoder tensors found in the complete training checkpoint.
Users must obtain the matching VQ-MUSE model separately from:
This repository is currently private while public-release authority and licensing are being confirmed.
| Field | Value |
|---|---|
| File | wound_river_delta_v1.pth |
| Format | wound_forecasting_river_delta_v1 |
| Training step | 40000 |
| River tensors | 102 |
| Excluded VQ-MUSE tensors | 277 |
| Base autoencoder | Emma02/vqvae_ckpts |
The released model uses sparsely conditioned flow matching with a VQ-MUSE image representation.
Final vector-field configuration:
The complete portable configuration is provided in
river_final.yaml.
First construct the modified River model with the matching VQ-MUSE autoencoder. Then overlay the released River-only tensors:
import torch
package = torch.load(
"wound_river_delta_v1.pth",
map_location="cpu",
weights_only=False,
)
result = model.load_state_dict(
package["model"],
strict=False,
)
assert not result.unexpected_keys
assert all(
key.startswith("ae.")
for key in result.missing_keys
)
model.eval()
The missing ae.* keys are expected because the external VQ-MUSE
weights are intentionally excluded from this artifact.
https://github.com/bridenmj/wound-forecasting
https://github.com/araachie/river
The project uses a modified River implementation. The upstream
River source is distributed under GPL-3.0; its license is retained
as LICENSE_RIVER.txt. Inclusion of this notice documents upstream
provenance and does not assign a separate project-artifact license.
https://huggingface.co/Emma02/vqvae_ckpts
VQ-MUSE is an external dependency and is not mirrored in this repository.
At evaluation, four observed frames were used to autoregressively generate four future frames with 100 flow-integration steps.
This artifact is provided for research reproduction and study of flow-matching approaches to longitudinal image prediction.
The original project-trained weights released in this repository are licensed under the Creative Commons Attribution–NonCommercial 4.0 International license (CC BY-NC 4.0).
Third-party implementations, base models, tokenizers, and other external dependencies are not relicensed by this repository and remain subject to their respective licenses and terms. Any upstream license or notice files included in this repository continue to apply to the corresponding upstream materials.
4 commits