aiola commited on
Commit
5e00e82
1 Parent(s): 8baa9e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -17,7 +17,11 @@ model = model.to(device)
17
  examples = [
18
  [
19
  "audio/672-122797-0026.wav",
20
- "monetary-value, biological-classification, desire, demographic-group, object-category, relationship-role, reflexive-pronoun, furniture-type"
 
 
 
 
21
  ],
22
  [
23
  "audio/672-122797-0024.wav",
@@ -30,10 +34,6 @@ examples = [
30
  [
31
  "audio/672-122797-0048.wav",
32
  "weapon, emotional-state, household-chore, atmosphere-quality"
33
- ],
34
- [
35
- "audio/7021-85628-0025.wav",
36
- "action-goal, person's-title, emotional-connection, personal-qualities, pronoun-target, assignmentaction, physical-action, family-role"
37
  ]
38
  ]
39
 
@@ -126,6 +126,7 @@ with gr.Blocks(title="WhisperNER v1") as demo:
126
  # Whisper-NER: ASR with zero-shot NER
127
 
128
  WhisperNER is a unified model for automatic speech recognition (ASR) and named entity recognition (NER), with zero-shot capabilities.
 
129
 
130
  ## Links
131
 
 
17
  examples = [
18
  [
19
  "audio/672-122797-0026.wav",
20
+ "biological-classification, desire, demographic-group, object-category, relationship-role, reflexive-pronoun, furniture-type"
21
+ ],
22
+ [
23
+ "audio/7021-85628-0025.wav",
24
+ "action-goal, person's-title, emotional-connection, personal-qualities, pronoun-target, assignmentaction, physical-action, family-role"
25
  ],
26
  [
27
  "audio/672-122797-0024.wav",
 
34
  [
35
  "audio/672-122797-0048.wav",
36
  "weapon, emotional-state, household-chore, atmosphere-quality"
 
 
 
 
37
  ]
38
  ]
39
 
 
126
  # Whisper-NER: ASR with zero-shot NER
127
 
128
  WhisperNER is a unified model for automatic speech recognition (ASR) and named entity recognition (NER), with zero-shot capabilities.
129
+ The WhisperNER model is designed as a strong base model for the downstream task of ASR with NER, and can be fine-tuned on specific datasets for improved performance.
130
 
131
  ## Links
132