Document QuickTalk repair parameters
Browse files
README.md
CHANGED
|
@@ -17,7 +17,7 @@ This repository contains the QuickTalk model files used by the OmniRT `quicktalk
|
|
| 17 |
|
| 18 |
```text
|
| 19 |
quicktalk.pth # QuickTalk PyTorch checkpoint
|
| 20 |
-
repair.npy # QuickTalk repair parameters
|
| 21 |
```
|
| 22 |
|
| 23 |
This repository intentionally does **not** include third-party dependency weights such as HuBERT or InsightFace `buffalo_l`. Download those dependencies from their original sources according to their own licenses and place them next to these files when running OmniRT.
|
|
@@ -33,9 +33,15 @@ $OMNIRT_MODEL_ROOT/quicktalk/
|
|
| 33 |
preprocessor_config.json
|
| 34 |
pytorch_model.bin
|
| 35 |
auxiliary/models/buffalo_l/
|
| 36 |
-
|
| 37 |
```
|
| 38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
## Usage With OmniRT
|
| 40 |
|
| 41 |
Set the model root and start the QuickTalk runtime through OmniRT:
|
|
|
|
| 17 |
|
| 18 |
```text
|
| 19 |
quicktalk.pth # QuickTalk PyTorch checkpoint
|
| 20 |
+
repair.npy # QuickTalk repair parameters used by the runtime post-processing stage
|
| 21 |
```
|
| 22 |
|
| 23 |
This repository intentionally does **not** include third-party dependency weights such as HuBERT or InsightFace `buffalo_l`. Download those dependencies from their original sources according to their own licenses and place them next to these files when running OmniRT.
|
|
|
|
| 33 |
preprocessor_config.json
|
| 34 |
pytorch_model.bin
|
| 35 |
auxiliary/models/buffalo_l/
|
| 36 |
+
<InsightFace model files>
|
| 37 |
```
|
| 38 |
|
| 39 |
+
## Repair Parameters
|
| 40 |
+
|
| 41 |
+
`repair.npy` is a required QuickTalk runtime parameter file. It is not a standalone neural network checkpoint. The runtime loads it after the main QuickTalk model to apply fixed repair parameters during post-processing, helping map the model output back to the template face more consistently.
|
| 42 |
+
|
| 43 |
+
Keep `repair.npy` in the same QuickTalk model directory as `quicktalk.pth`.
|
| 44 |
+
|
| 45 |
## Usage With OmniRT
|
| 46 |
|
| 47 |
Set the model root and start the QuickTalk runtime through OmniRT:
|