katuni4ka commited on
Commit
e164ee7
·
verified ·
1 Parent(s): 7f55a79

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -43,7 +43,7 @@ pip install optimum[openvino]
43
  from transformers import AutoProcessor
44
  from optimum.intel.openvino import OVModelForSpeechSeq2Seq
45
 
46
- model_id = "OpenVINO/distil-large-v2-fp16-ov"
47
  tokenizer = AutoProcessor.from_pretrained(model_id)
48
  model = OVModelForSpeechSeq2Seq.from_pretrained(model_id)
49
 
@@ -74,8 +74,8 @@ pip install -U --pre --extra-index-url https://storage.openvinotoolkit.org/simpl
74
  ```
75
  import huggingface_hub as hf_hub
76
 
77
- model_id = "OpenVINO/distil-large-v2-fp16-ov"
78
- model_path = "distil-large-v2-fp16-ov"
79
 
80
  hf_hub.snapshot_download(model_id, local_dir=model_path)
81
 
 
43
  from transformers import AutoProcessor
44
  from optimum.intel.openvino import OVModelForSpeechSeq2Seq
45
 
46
+ model_id = "OpenVINO/whisper-base-int4-ov"
47
  tokenizer = AutoProcessor.from_pretrained(model_id)
48
  model = OVModelForSpeechSeq2Seq.from_pretrained(model_id)
49
 
 
74
  ```
75
  import huggingface_hub as hf_hub
76
 
77
+ model_id = "OpenVINO/whisper-base-int4-ov"
78
+ model_path = "whisper-base-int4-ov"
79
 
80
  hf_hub.snapshot_download(model_id, local_dir=model_path)
81