BFM007 commited on
Commit
c4b4152
·
verified ·
1 Parent(s): c0b6603

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: somosnlp-hackathon-2022/wav2vec2-base-finetuned-sentiment-classification-MESD
3
+ license: apache-2.0
4
+ metrics:
5
+ - accuracy
6
+ tags:
7
+ - generated_from_trainer
8
+ - openvino
9
+ - openvino-export
10
+ model-index:
11
+ - name: wav2vec2-base-finetuned-sentiment-mesd
12
+ results: []
13
+ ---
14
+
15
+ This model was converted to OpenVINO from [`somosnlp-hackathon-2022/wav2vec2-base-finetuned-sentiment-classification-MESD`](https://huggingface.co/somosnlp-hackathon-2022/wav2vec2-base-finetuned-sentiment-classification-MESD) using [optimum-intel](https://github.com/huggingface/optimum-intel)
16
+ via the [export](https://huggingface.co/spaces/echarlaix/openvino-export) space.
17
+
18
+ First make sure you have optimum-intel installed:
19
+
20
+ ```bash
21
+ pip install optimum[openvino]
22
+ ```
23
+
24
+ To load your model you can do as follows:
25
+
26
+ ```python
27
+ from optimum.intel import OVModelForAudioClassification
28
+
29
+ model_id = "BFM007/wav2vec2-base-finetuned-sentiment-classification-MESD-openvino"
30
+ model = OVModelForAudioClassification.from_pretrained(model_id)
31
+ ```