Fix README with correct marksverdhai references
Browse files
README.md
CHANGED
|
@@ -56,12 +56,12 @@ import torch
|
|
| 56 |
|
| 57 |
# The model already has quantization config embedded
|
| 58 |
model = VibeVoiceForConditionalGenerationInference.from_pretrained(
|
| 59 |
-
"
|
| 60 |
device_map={"": 0},
|
| 61 |
torch_dtype=torch.bfloat16,
|
| 62 |
)
|
| 63 |
|
| 64 |
-
processor = VibeVoiceProcessor.from_pretrained("
|
| 65 |
|
| 66 |
# Generate speech
|
| 67 |
model.eval()
|
|
@@ -117,7 +117,7 @@ outputs = model.generate(
|
|
| 117 |
from models.vibevoice import VibeVoiceModel
|
| 118 |
|
| 119 |
model = VibeVoiceModel(
|
| 120 |
-
model_path="
|
| 121 |
device="cuda:0",
|
| 122 |
quantization="bnb-8bit",
|
| 123 |
)
|
|
@@ -179,6 +179,6 @@ Apache 2.0 (same as base model)
|
|
| 179 |
author={marksverdhei},
|
| 180 |
year={2025},
|
| 181 |
publisher={HuggingFace},
|
| 182 |
-
url={https://huggingface.co/
|
| 183 |
}
|
| 184 |
```
|
|
|
|
| 56 |
|
| 57 |
# The model already has quantization config embedded
|
| 58 |
model = VibeVoiceForConditionalGenerationInference.from_pretrained(
|
| 59 |
+
"marksverdhai/vibevoice-7b-bnb-8bit",
|
| 60 |
device_map={"": 0},
|
| 61 |
torch_dtype=torch.bfloat16,
|
| 62 |
)
|
| 63 |
|
| 64 |
+
processor = VibeVoiceProcessor.from_pretrained("marksverdhai/vibevoice-7b-bnb-8bit")
|
| 65 |
|
| 66 |
# Generate speech
|
| 67 |
model.eval()
|
|
|
|
| 117 |
from models.vibevoice import VibeVoiceModel
|
| 118 |
|
| 119 |
model = VibeVoiceModel(
|
| 120 |
+
model_path="marksverdhai/vibevoice-7b-bnb-8bit",
|
| 121 |
device="cuda:0",
|
| 122 |
quantization="bnb-8bit",
|
| 123 |
)
|
|
|
|
| 179 |
author={marksverdhei},
|
| 180 |
year={2025},
|
| 181 |
publisher={HuggingFace},
|
| 182 |
+
url={https://huggingface.co/marksverdhai/vibevoice-7b-bnb-8bit}
|
| 183 |
}
|
| 184 |
```
|