katuni4ka commited on
Commit
c220f99
1 Parent(s): 583153c

Update README.md

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