Commit
·
bd8ed50
1
Parent(s):
9efedb0
Update README.md
Browse files
README.md
CHANGED
@@ -17,4 +17,73 @@ ESC consists of:
|
|
17 |
|
18 |
- An [ESC leaderboard](https://huggingface.co/spaces/esc-bench/ESC) for ranking systems according to overall performance on the benchmark
|
19 |
|
20 |
-
ESC was proposed in _ESC: A Benchmark For Multi-Domain End-to-End Speech Recognition_ by ... For more information, see the official submission on [OpenReview.net](https://openreview.net/forum?id=9OL2fIfDLK).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
- An [ESC leaderboard](https://huggingface.co/spaces/esc-bench/ESC) for ranking systems according to overall performance on the benchmark
|
19 |
|
20 |
+
ESC was proposed in _ESC: A Benchmark For Multi-Domain End-to-End Speech Recognition_ by ... For more information, see the official submission on [OpenReview.net](https://openreview.net/forum?id=9OL2fIfDLK).
|
21 |
+
|
22 |
+
<div class="grid lg:grid-cols-3 gap-x-4 gap-y-7">
|
23 |
+
<p class="lg:col-span-3">
|
24 |
+
The End-to-end Speech Challenge (ESC) is a benchmark for assessing a single ASR system on a collection of eight different speech recognition datasets.<br />
|
25 |
+
The ESC datasets are sourced from different domains and cover a range of audio and text distributions (speaking styles, background noise, transcription requirements). The only constraint on systems is that they must use the same training and evaluation algorithms across datasets and may not use any dataset-specific pre- or post-processing, assuming the data distributions are a-priori unknown. The goal of ESC is to promote generalisable ASR systems that can be applied in a multi-domain setting.
|
26 |
+
</p>
|
27 |
+
<a href="https://spacy.io/" class="block overflow-hidden group">
|
28 |
+
<div
|
29 |
+
class="w-full h-40 object-cover mb-2 rounded-lg flex items-center justify-center bg-[#ECFAFF]"
|
30 |
+
>
|
31 |
+
<img alt="" src="/front/assets/promo/spacy_logo.png" class="w-40" />
|
32 |
+
</div>
|
33 |
+
<div class="underline">spaCy website</div>
|
34 |
+
</a>
|
35 |
+
<a
|
36 |
+
href="https://github.com/explosion/spacy-huggingface-hub"
|
37 |
+
class="block overflow-hidden"
|
38 |
+
>
|
39 |
+
<div class="flex items-center h-40 bg-[#ECFAFF] rounded-lg px-4 mb-2">
|
40 |
+
<pre
|
41 |
+
class="break-words leading-1 whitespace-pre-line text-xs text-gray-800">
|
42 |
+
python -m spacy huggingface-hub push [whl_path] [--org] [--msg] [--local-repo] [--verbose]
|
43 |
+
</pre>
|
44 |
+
</div>
|
45 |
+
<div class="underline">Upload packages on the hub</div>
|
46 |
+
</a>
|
47 |
+
<a
|
48 |
+
href="https://huggingface.co/models?filter=spacy"
|
49 |
+
class="block overflow-hidden group"
|
50 |
+
>
|
51 |
+
<div
|
52 |
+
class="w-full h-40 mb-2 bg-gray-900 group-hover:bg-gray-850 rounded-lg flex items-start justify-start overflow-hidden"
|
53 |
+
>
|
54 |
+
<img
|
55 |
+
alt=""
|
56 |
+
src="/front/assets/promo/spacy_widget.jpeg"
|
57 |
+
class="w-full h-40 object-cover overflow-hidden"
|
58 |
+
/>
|
59 |
+
</div>
|
60 |
+
<div class="underline">Find all spaCy models in the Hub</div>
|
61 |
+
</a>
|
62 |
+
<div class="lg:col-span-3">
|
63 |
+
<p class="mb-4">
|
64 |
+
To upload your spaCy pipelines to the Hub, you can use the <a
|
65 |
+
href="https://github.com/explosion/spacy-huggingface-hub"
|
66 |
+
>spacy-huggingface-hub</a
|
67 |
+
>
|
68 |
+
library.
|
69 |
+
</p>
|
70 |
+
<div
|
71 |
+
class="p-4 bg-gradient-to-b from-gray-50-to-white border border-gray-100 rounded-lg relative mb-4"
|
72 |
+
>
|
73 |
+
<pre
|
74 |
+
class="break-words leading-1 whitespace-pre-line text-xs md:text-sm text-gray-800">
|
75 |
+
pip install spacy-huggingface-hub
|
76 |
+
huggingface-cli login
|
77 |
+
python -m spacy package ./en_ner_fashion ./output --build wheel
|
78 |
+
cd ./output/en_ner_fashion-0.0.0/dist
|
79 |
+
python -m spacy huggingface-hub push en_ner_fashion-0.0.0-py3-none-any.whl
|
80 |
+
</pre>
|
81 |
+
</div>
|
82 |
+
<p>
|
83 |
+
More information: <a
|
84 |
+
href="https://spacy.io/usage/v3-1#huggingface-hub"
|
85 |
+
class="underline">spaCy 3.1 release post</a
|
86 |
+
>
|
87 |
+
</p>
|
88 |
+
</div>
|
89 |
+
</div>
|