Skip to content

Commit

Permalink
Fix: push_to_hub to use correct model (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
farzadab authored Aug 27, 2024
1 parent 732b7ba commit 8b6a3aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ultravox/tools/push_to_hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main(args: UploadToHubArgs):

print("Model uploaded. Testing model...")
loaded_pipe = transformers.pipeline(
model="fixie-ai/ultravox-v0_2", trust_remote_code=True
model=args.hf_upload_model, trust_remote_code=True
)
ds = datasets.BoolQDataset(datasets.VoiceDatasetArgs())
sample = next(iter(ds))
Expand Down

0 comments on commit 8b6a3aa

Please sign in to comment.