manueles commited on
Commit
d33e505
1 Parent(s): d4495d5

Update README

Browse files

Add a basic description in README, in line with other models

Files changed (1) hide show
  1. README.md +14 -3
README.md CHANGED
@@ -1,3 +1,14 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
1
+ Graphcore and Hugging Face are working together to make training of Transformer models on IPUs fast and easy. Learn more about how to take advantage of the power of Graphcore IPUs to train Transformers models at [hf.co/hardware/graphcore](https://huggingface.co/hardware/graphcore).
2
+
3
+ # Wav2Vec2 Base model IPU config
4
+
5
+ This model contains just the `IPUConfig` files for running the Wav2Vec2 base model (e.g. [wav2vec2-base](https://huggingface.co/facebook/wav2vec2-base)) on Graphcore IPUs.
6
+
7
+ **This model contains no model weights, only an IPUConfig.**
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ from optimum.graphcore import IPUConfig
13
+ ipu_config = IPUConfig.from_pretrained("Graphcore/wav2vec2-base-ipu")
14
+ ```