jimypbr commited on
Commit
6d3bfbe
1 Parent(s): bb3c89d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md CHANGED
@@ -1,3 +1,33 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # Graphcore/whisper-tiny-ipu
6
+
7
+ Optimum Graphcore is a new open-source library and toolkit that enables developers to access IPU-optimized models certified by Hugging Face. It is an extension of Transformers, providing a set of performance optimization tools enabling maximum efficiency to train and run models on Graphcore’s IPUs - a completely new kind of massively parallel processor to accelerate machine intelligence. Learn more about how to take train Transformer models faster with IPUs at [hf.co/hardware/graphcore](https://huggingface.co/hardware/graphcore).
8
+
9
+ Through HuggingFace Optimum, Graphcore released ready-to-use IPU-trained model checkpoints and IPU configuration files to make it easy to train models with maximum efficiency in the IPU. Optimum shortens the development lifecycle of your AI models by letting you plug-and-play any public dataset and allows a seamless integration to our State-of-the-art hardware giving you a quicker time-to-value for your AI project.
10
+
11
+
12
+ ## Model description
13
+
14
+ Whisper is a pre-trained model for automatic speech recognition (ASR) and speech translation. Trained on 680k hours
15
+ of labelled data, Whisper models demonstrate a strong ability to generalise to many datasets and domains **without** the need
16
+ for fine-tuning.
17
+
18
+ Whisper was proposed in the paper [Robust Speech Recognition via Large-Scale Weak Supervision](https://arxiv.org/abs/2212.04356)
19
+ by Alec Radford et al from OpenAI. The original code repository can be found [here](https://github.com/openai/whisper).
20
+
21
+
22
+ ## Intended uses & limitations
23
+
24
+ This model contains just the `IPUConfig` files for running the Whisper Tiny model (e.g. [openai/whisper-tiny](https://huggingface.co/openai/whisper-tiny)) on Graphcore IPUs.
25
+
26
+ **This model contains no model weights, only an IPUConfig.**
27
+
28
+ ## Usage
29
+
30
+ ```
31
+ from optimum.graphcore import IPUConfig
32
+ ipu_config = IPUConfig.from_pretrained("Graphcore/whisper-tiny-ipu")
33
+ ```