-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathwhisper_large_v3_turbo_encoder_fp32.json
More file actions
34 lines (34 loc) · 1.16 KB
/
Copy pathwhisper_large_v3_turbo_encoder_fp32.json
File metadata and controls
34 lines (34 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"input_model": {
"type": "PyTorchModel",
"model_path": "openai/whisper-large-v3-turbo",
"model_loader": "model_loader",
"model_script": "whisper_encoder_load.py",
"io_config": {
"input_names": [ "input_features" ],
"output_names": [ "k_cache_cross_0",
"v_cache_cross_0",
"k_cache_cross_1",
"v_cache_cross_1",
"k_cache_cross_2",
"v_cache_cross_2",
"k_cache_cross_3",
"v_cache_cross_3" ]
},
"dummy_inputs_func": "generate_dummy_inputs"
},
"systems": {
"local_system": {
"type": "LocalSystem",
"accelerators": [ { "device": "cpu", "execution_providers": [ "CPUExecutionProvider" ] } ]
}
},
"passes": {
"convert": { "type": "OnnxConversion", "target_opset": 20 }
},
"log_severity_level": 0,
"host": "local_system",
"target": "local_system",
"cache_dir": "cache",
"output_dir": "models/whisper_encoder_fp32"
}